HomeSort by: relevance | last modified time | path
    Searched refs:ID (Results 1 - 25 of 1835) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
DWPError.cpp 3 char DWPError::ID;
  /src/external/apache2/llvm/dist/clang/include/clang/Driver/
Types.h 23 enum ID {
25 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, ...) TY_##ID,
31 /// getTypeName - Return the name of the type for \p Id.
32 const char *getTypeName(ID Id);
34 /// getPreprocessedType - Get the ID of the type for this input when
37 ID getPreprocessedType(ID Id);
    [all...]
  /src/crypto/external/bsd/libsaslc/dist/test/parser_tests/test1/
saslc.conf 3 ID 6669
  /src/crypto/external/bsd/libsaslc/dist/test/parser_tests/test2/
saslc.conf 0 ID 6669
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
ByteCodeGenError.cpp 14 char ByteCodeGenError::ID;
  /src/external/gpl3/gcc/dist/contrib/reghunt/bin/
gcc-svn-recordfail 6 ID=$1
7 REV=`${REG_IDS} -f index -t rev ${ID}`
gcc-svn-checkfail 7 ID=$1
8 REV=`${REG_IDS} -f index -t rev ${ID}`
gcc-test-bogus-warning 22 ID=$1
24 LOGID=`printf "%04d" ${ID}`
26 MSGID="bug ${BUGID}, id ${ID}"
gcc-test-missing-warning 22 ID=$1
24 LOGID=`printf "%04d" ${ID}`
26 MSGID="bug ${BUGID}, id ${ID}"
gcc-test-wrong-code 22 ID=$1
24 LOGID=`printf "%04d" ${ID}`
26 MSGID="bug ${BUGID}, id ${ID}"
  /src/external/gpl3/gcc.old/dist/contrib/reghunt/bin/
gcc-svn-recordfail 6 ID=$1
7 REV=`${REG_IDS} -f index -t rev ${ID}`
gcc-svn-checkfail 7 ID=$1
8 REV=`${REG_IDS} -f index -t rev ${ID}`
gcc-test-bogus-warning 22 ID=$1
24 LOGID=`printf "%04d" ${ID}`
26 MSGID="bug ${BUGID}, id ${ID}"
gcc-test-missing-warning 22 ID=$1
24 LOGID=`printf "%04d" ${ID}`
26 MSGID="bug ${BUGID}, id ${ID}"
gcc-test-wrong-code 22 ID=$1
24 LOGID=`printf "%04d" ${ID}`
26 MSGID="bug ${BUGID}, id ${ID}"
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Builtins.h 47 enum ID {
49 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
78 /// appropriate builtin ID # and mark any non-portable builtin identifiers as
84 const char *getName(unsigned ID) const {
85 return getRecord(ID).Name;
89 const char *getTypeString(unsigned ID) const {
90 return getRecord(ID).Type;
94 bool isTSBuiltin(unsigned ID) const {
95 return ID >= Builtin::FirstTSBuiltin
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Option/
OptSpecifier.h 19 unsigned ID = 0;
24 /*implicit*/ OptSpecifier(unsigned ID) : ID(ID) {}
27 bool isValid() const { return ID != 0; }
29 unsigned getID() const { return ID; }
31 bool operator==(OptSpecifier Opt) const { return ID == Opt.getID(); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MsgPack.h 28 #define HANDLE_MP_FIRST_BYTE(ID, NAME) constexpr uint8_t NAME = ID;
40 #define HANDLE_MP_FIX_BITS(ID, NAME) constexpr uint8_t NAME = ID;
53 #define HANDLE_MP_FIX_BITS_MASK(ID, NAME) constexpr uint8_t NAME = ID;
62 #define HANDLE_MP_FIX_MAX(ID, NAME) constexpr uint8_t NAME = ID;
72 #define HANDLE_MP_FIX_LEN(ID, NAME) constexpr uint8_t NAME = ID;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
ExtensibleRTTI.cpp 13 char llvm::RTTIRoot::ID = 0;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUMachineModuleInfo.h 28 /// Agent synchronization scope ID (cross address space).
29 SyncScope::ID AgentSSID;
30 /// Workgroup synchronization scope ID (cross address space).
31 SyncScope::ID WorkgroupSSID;
32 /// Wavefront synchronization scope ID (cross address space).
33 SyncScope::ID WavefrontSSID;
34 /// System synchronization scope ID (single address space).
35 SyncScope::ID SystemOneAddressSpaceSSID;
36 /// Agent synchronization scope ID (single address space).
37 SyncScope::ID AgentOneAddressSpaceSSID
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Hello/
Hello.cpp 27 static char ID; // Pass identification, replacement for typeid
28 Hello() : FunctionPass(ID) {}
39 char Hello::ID = 0;
45 static char ID; // Pass identification, replacement for typeid
46 Hello2() : FunctionPass(ID) {}
62 char Hello2::ID = 0;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
BarrierNoopPass.cpp 33 static char ID; // Pass identification.
35 BarrierNoop() : ModulePass(ID) {
45 char BarrierNoop::ID = 0;
  /src/external/apache2/llvm/dist/llvm/tools/opt/
GraphPrinters.cpp 28 static char ID; // Pass identification, replacement for typeid
29 DomInfoPrinter() : FunctionPass(ID) {}
43 char DomInfoPrinter::ID = 0;
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Sanitizers.cpp 22 #define SANITIZER(NAME, ID) constexpr SanitizerMask SanitizerKind::ID;
23 #define SANITIZER_GROUP(NAME, ID, ALIAS) \
24 constexpr SanitizerMask SanitizerKind::ID; \
25 constexpr SanitizerMask SanitizerKind::ID##Group;
30 #define SANITIZER(NAME, ID) .Case(NAME, SanitizerKind::ID)
31 #define SANITIZER_GROUP(NAME, ID, ALIAS) \
32 .Case(NAME, AllowGroups ? SanitizerKind::ID##Group : SanitizerMask())
40 #define SANITIZER(NAME, ID) \
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTCommon.cpp 27 unsigned ID = 0;
30 ID = PREDEF_TYPE_VOID_ID;
33 ID = PREDEF_TYPE_BOOL_ID;
36 ID = PREDEF_TYPE_CHAR_U_ID;
39 ID = PREDEF_TYPE_UCHAR_ID;
42 ID = PREDEF_TYPE_USHORT_ID;
45 ID = PREDEF_TYPE_UINT_ID;
48 ID = PREDEF_TYPE_ULONG_ID;
51 ID = PREDEF_TYPE_ULONGLONG_ID;
54 ID = PREDEF_TYPE_UINT128_ID
    [all...]

Completed in 34 milliseconds

1 2 3 4 5 6 7 8 91011>>