HomeSort by: relevance | last modified time | path
    Searched defs:Class (Results 1 - 25 of 82) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyClassDefinitionDumper.cpp 29 void ClassDefinitionDumper::start(const PDBSymbolTypeUDT &Class) {
33 ClassLayout Layout(Class);
51 const PDBSymbolTypeUDT &Class = Layout.getClass();
60 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " ";
61 WithColor(Printer, PDB_ColorItem::Type).get() << Class.getName();
103 << "% of class size)";
111 << PctStr << "% of class size)";
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeTypeUDT.h 1 //===- NativeTypeUDT.h - info about class/struct type ------------*- C++-*-===//
21 class NativeTypeUDT : public NativeRawSymbol {
24 codeview::ClassRecord Class);
63 Optional<codeview::ClassRecord> Class;
TpiHashing.h 23 : FullRecordHash(Full), ForwardDeclHash(Forward), Class(std::move(CR)) {
45 return Class;
56 codeview::ClassRecord Class;
64 /// Given a CVType referring to a class, structure, union, or enum, compute
  /src/external/gpl3/gcc/dist/libobjc/objc/
objc.h 60 /* The basic Objective-C types (SEL, Class, id) are defined as pointer
69 whether a class implements a selector or not, and if you have a
70 selector and know that the class implements it, you can use it to
71 call the method for an object in the class. */
74 /* A Class is a class (in the object-oriented sense). In Objective-C
75 there is the complication that each Class is an object itself, and
76 so belongs to a class too. This class that a class belongs to i
    [all...]
  /src/external/gpl3/gcc.old/dist/libobjc/objc/
objc.h 60 /* The basic Objective-C types (SEL, Class, id) are defined as pointer
69 whether a class implements a selector or not, and if you have a
70 selector and know that the class implements it, you can use it to
71 call the method for an object in the class. */
74 /* A Class is a class (in the object-oriented sense). In Objective-C
75 there is the complication that each Class is an object itself, and
76 so belongs to a class too. This class that a class belongs to i
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ObjCARCInstKind.cpp 29 const ARCInstKind Class) {
30 switch (Class) {
82 llvm_unreachable("Unknown instruction class!");
226 ARCInstKind Class = GetFunctionClass(F);
227 if (Class != ARCInstKind::CallOrUser)
228 return Class;
310 /// Test if the given class is a kind of user.
311 bool llvm::objcarc::IsUser(ARCInstKind Class) {
312 switch (Class) {
344 /// Test if the given class is objc_retain or equivalent
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
cpsizeof.cc 18 struct Class
24 Class () : a (1), b ('2'), c (3) { }
29 Class *kp;
40 typedef Class c4[4];
63 T (Class);
rvalue-ref-sizeof.cc 22 struct Class
28 Class () : a (1), b ('2'), c (3) { }
33 Class *kp;
44 typedef Class c4[4];
67 T (Class);
namespace.cc 6 class inA {
33 class Class {
66 char BBB::Class::xyzq (char c)
96 class CClass {
99 class NestedClass {
199 BBB::Class cl;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
cpsizeof.cc 18 struct Class
24 Class () : a (1), b ('2'), c (3) { }
29 Class *kp;
40 typedef Class c4[4];
63 T (Class);
rvalue-ref-sizeof.cc 22 struct Class
28 Class () : a (1), b ('2'), c (3) { }
33 Class *kp;
44 typedef Class c4[4];
67 T (Class);
namespace.cc 6 class inA {
33 class Class {
66 char BBB::Class::xyzq (char c)
96 class CClass {
99 class NestedClass {
199 BBB::Class cl;
  /src/external/apache2/llvm/dist/clang/lib/Driver/
InputInfo.h 22 class InputInfo {
29 enum Class {
40 Class Kind;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
RecordName.cpp 23 class TypeNameComputer : public TypeVisitorCallbacks {
106 Error TypeNameComputer::visitKnownRecord(CVType &CVR, ClassRecord &Class) {
107 Name = Class.getName();
146 StringRef Class = Types.getTypeName(MF.getClassType());
148 Name = formatv("{0} {1}::{2}", Ret, Class, Params).sstr<256>();
168 StringRef Class = Types.getTypeName(MI.getContainingType());
169 Name = formatv("{0} {1}::*", Pointee, Class);
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
DetailedRecordsBackend.cpp 38 class DetailedRecordsEmitter {
55 }; // emitter class
90 auto *const Class = ClassPair.second.get();
91 OS << formatv("\n{0} |{1}|\n", Class->getNameInitAsString(),
92 SrcMgr.getFormattedLocationNoOffset(Class->getLoc().front()));
93 printTemplateArgs(Class, OS);
94 printSuperclasses(Class, OS);
95 printFields(Class, OS);
137 // Print the template arguments of a class.
157 // Print the superclasses of a class or record. Indirect superclasse
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
DependencyAnalysis.cpp 37 ARCInstKind Class) {
38 switch (Class) {
69 ARCInstKind Class) {
70 // First perform a quick check if Class can not touch ref counts.
71 if (!CanDecrementRefCount(Class))
75 return CanAlterRefCount(Inst, Ptr, PA, Class);
81 ProvenanceAnalysis &PA, ARCInstKind Class) {
84 if (Class == ARCInstKind::Call)
132 ARCInstKind Class = GetARCInstKind(Inst);
133 switch (Class) {
    [all...]
ObjCARCContract.cpp 65 class ObjCARCContract {
92 ARCInstKind Class);
104 class ObjCARCContractLegacyPass : public FunctionPass {
161 ARCInstKind Class) {
166 DependenceKind DK = Class == ARCInstKind::AutoreleaseRV
186 Function *Decl = EP.get(Class == ARCInstKind::AutoreleaseRV
225 // Otherwise, we check if Inst is a "good" store. Grab the instruction class
227 ARCInstKind Class = GetBasicARCInstKind(Inst);
233 if (IsRetain(Class))
243 if (!CanUse(Inst, Load, PA, Class)) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
QualTypeNames.cpp 277 // class template but is *not* type dependent. In clang, it
278 // gets attached to the class template declaration rather than
279 // any specific class template instantiation. This result in
385 // Fully qualify the pointee and class types.
387 QualType Class = getFullyQualifiedType(QualType(MPT->getClass(), 0), Ctx,
389 QT = Ctx.getMemberPointerType(QT, Class.getTypePtr());
  /src/external/apache2/llvm/dist/clang/lib/Basic/
DiagnosticIDs.cpp 35 #define DIAG(ENUM, CLASS, DEFAULT_SEVERITY, DESC, GROUP, SFINAE, NOWERROR, \
56 #define DIAG(ENUM, CLASS, DEFAULT_SEVERITY, DESC, GROUP, SFINAE, NOWERROR, \
81 #define DIAG(ENUM, CLASS, DEFAULT_SEVERITY, DESC, GROUP, SFINAE, NOWERROR, \
113 uint8_t Class : 3;
136 return Class == CLASS_REMARK ? diag::Flavor::Remark
172 #define DIAG(ENUM, CLASS, DEFAULT_SEVERITY, DESC, GROUP, SFINAE, NOWERROR, \
177 CLASS, \
345 /// getBuiltinDiagClass - Return the class field of the diagnostic.
349 return Info->Class;
359 class CustomDiagInfo
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCXX.cpp 33 /// base-class destructor.
38 // Producing an alias to a base class ctor/dtor can degrade debug quality
44 // an alias, unless this class owns no members.
54 const CXXRecordDecl *Class = D->getParent();
58 if (Class->mayInsertExtraPadding())
62 if (Class->getNumVBases()) {
71 for (const auto *I : Class->fields())
75 // Try to find a unique base class with a non-trivial destructor.
77 for (const auto &I : Class->bases()) {
87 // If we've already found a base class with a non-trivia
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
efifs.h 57 UINT32 Class;
91 UINT32 Class;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CXXInheritance.h 34 class ASTContext;
35 class NamedDecl;
37 /// Represents an element in a path from a derived class to a
38 /// base class.
41 /// derived class to one of its direct base classes, along with a
43 /// original derived class we are referencing.
46 /// class to a base class, which will be followed by this base
50 /// The record decl of the class that the base is a base of.
51 const CXXRecordDecl *Class;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
DebugObjectManagerPlugin.cpp 36 class DebugObjectSection {
44 class ELFDebugObjectSection : public DebugObjectSection {
114 enum class Requirement {
124 class DebugObject {
182 class ELFDebugObject : public DebugObject {
297 unsigned char Class, Endian;
298 std::tie(Class, Endian) = getElfArchType(Buffer.getBuffer());
300 if (Class == ELF::ELFCLASS32) {
307 if (Class == ELF::ELFCLASS64) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceFileWriter.h 23 class MemoryBuffer;
43 class ResourceFileWriter : public Visitor {
93 IntOrString Class;
97 Class(StringRef()) {}
  /src/crypto/external/bsd/heimdal/dist/lib/asn1/
asn1parse.y 179 %type <constant> Class tagenv
667 Tag : '[' Class NUMBER ']'
675 Class : /* */

Completed in 53 milliseconds

1 2 3 4