HomeSort by relevance Sort by last modified time
    Searched refs:ID (Results 1 - 25 of 3221) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/Driver/
Types.h 18 enum ID {
20 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) TY_##ID,
26 /// getTypeName - Return the name of the type for \arg Id.
27 const char *getTypeName(ID Id);
29 /// getPreprocessedType - Get the ID of the type for this input when
32 ID getPreprocessedType(ID Id);
    [all...]
OptSpecifier.h 19 unsigned ID;
25 OptSpecifier() : ID(0) {}
26 /*implicit*/ OptSpecifier(unsigned _ID) : ID(_ID) {}
29 bool isValid() const { return ID != 0; }
31 unsigned getID() const { return ID; }
33 bool operator==(OptSpecifier Opt) const { return ID == Opt.getID(); }
Phases.h 16 /// ID - Ordered values for successive stages in the
18 enum ID {
26 const char *getPhaseName(ID Id);
CC1AsOptions.h 18 enum ID {
19 OPT_INVALID = 0, // This is not an option ID.
20 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
21 HELPTEXT, METAVAR) OPT_##ID,
CC1Options.h 18 enum ID {
19 OPT_INVALID = 0, // This is not an option ID.
20 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
21 HELPTEXT, METAVAR) OPT_##ID,
Options.h 18 enum ID {
19 OPT_INVALID = 0, // This is not an option ID.
20 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
21 HELPTEXT, METAVAR) OPT_##ID,
  /external/chromium/chrome/browser/automation/
chrome_frame_automation_provider.cc 35 case AutomationMsg_CreateExternalTab::ID:
36 case AutomationMsg_ConnectExternalTab::ID:
38 case AutomationMsg_BrowserMove::ID:
39 case AutomationMsg_ProcessUnhandledAccelerator::ID:
40 case AutomationMsg_TabReposition::ID:
41 case AutomationMsg_ForwardContextMenuCommandToChrome::ID:
43 case AutomationMsg_NavigateInExternalTab::ID:
44 case AutomationMsg_NavigateExternalTabAtIndex::ID:
45 case AutomationMsg_Find::ID:
46 case AutomationMsg_SetInitialFocus::ID
    [all...]
  /external/llvm/lib/Support/
APSInt.cpp 20 void APSInt::Profile(FoldingSetNodeID& ID) const {
21 ID.AddInteger((unsigned) (IsUnsigned ? 1 : 0));
22 APInt::Profile(ID);
  /external/clang/include/clang/Basic/
Builtins.h 40 enum ID {
42 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
71 /// appropriate builtin ID # and mark any non-portable builtin identifiers as
81 const char *GetName(unsigned ID) const {
82 return GetRecord(ID).Name;
86 const char *GetTypeString(unsigned ID) const {
87 return GetRecord(ID).Type;
92 bool isConst(unsigned ID) const {
93 return strchr(GetRecord(ID).Attributes, 'c') != 0
    [all...]
TargetBuiltins.h 22 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
32 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
42 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
53 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
103 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
    [all...]
  /external/clang/lib/Serialization/
ASTCommon.cpp 26 unsigned ID = 0;
28 case BuiltinType::Void: ID = PREDEF_TYPE_VOID_ID; break;
29 case BuiltinType::Bool: ID = PREDEF_TYPE_BOOL_ID; break;
30 case BuiltinType::Char_U: ID = PREDEF_TYPE_CHAR_U_ID; break;
31 case BuiltinType::UChar: ID = PREDEF_TYPE_UCHAR_ID; break;
32 case BuiltinType::UShort: ID = PREDEF_TYPE_USHORT_ID; break;
33 case BuiltinType::UInt: ID = PREDEF_TYPE_UINT_ID; break;
34 case BuiltinType::ULong: ID = PREDEF_TYPE_ULONG_ID; break;
35 case BuiltinType::ULongLong: ID = PREDEF_TYPE_ULONGLONG_ID; break;
36 case BuiltinType::UInt128: ID = PREDEF_TYPE_UINT128_ID; break
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammar.g3 54 | ID '=' expr NEWLINE -> ^('=' ID expr)
59 func: ID '(' formalPar ')' '=' expr -> ^(FUNC ID formalPar expr)
66 : ID
81 | ID
83 | ID '(' expr ')' -> ^(CALL ID expr)
88 ID : ('a'..'z'|'A'..'Z')+
ProfileGrammar.g3 54 | ID '=' expr NEWLINE -> ^('=' ID expr)
59 func: ID '(' formalPar ')' '=' expr -> ^(FUNC ID formalPar expr)
66 : ID
81 | ID
83 | ID '(' expr ')' -> ^(CALL ID expr)
88 ID : ('a'..'z'|'A'..'Z')+
  /external/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;
  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt_find_cipher_id.c 15 Find cipher by ID, Tom St Denis
19 Find a cipher by ID number
20 @param ID The ID (not same as index) of the cipher to find
23 int find_cipher_id(unsigned char ID)
28 if (cipher_descriptor[x].ID == ID) {
crypt_find_hash_id.c 15 Find hash by ID, Tom St Denis
19 Find a hash by ID number
20 @param ID The ID (not same as index) of the hash to find
23 int find_hash_id(unsigned char ID)
28 if (hash_descriptor[x].ID == ID) {
crypt_find_hash_oid.c 18 int find_hash_oid(const unsigned long *ID, unsigned long IDlen)
21 LTC_ARGCHK(ID != NULL);
24 if (hash_descriptor[x].name != NULL && hash_descriptor[x].OIDlen == IDlen && !XMEMCMP(hash_descriptor[x].OID, ID, sizeof(unsigned long) * IDlen)) {
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriterPass.cpp 22 static char ID; // Pass identification, replacement for typeid
24 : ModulePass(ID), OS(o) {}
35 char WriteBitcodePass::ID = 0;
  /external/llvm/lib/Target/PTX/
PTXRegAlloc.cpp 26 static char ID;
27 PTXRegAlloc() : MachineFunctionPass(ID) {}
44 char PTXRegAlloc::ID = 0;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
tree-rewrite.rb 14 a : ID INT;
15 ID : 'a'..'z'+ ;
29 a : ID INT -> INT ID;
38 a : ID INT -> ^(ID INT);
39 ID : 'a'..'z'+ ;
52 a : ^(ID INT) -> ^(INT ID);
61 a : ID INT -> ^(ID INT) | INT
    [all...]
rewrites.rb 63 a : ID INT -> ;
64 ID : 'a'..'z'+ ;
76 a : ID -> ID;
77 ID : 'a'..'z'+ ;
90 a : ID -> ID["x"];
91 ID : 'a'..'z'+ ;
104 a : ID -> ^(ID["x"] INT)
    [all...]
  /external/llvm/include/llvm/
Intrinsics.h 36 enum ID {
46 /// Intrinsic::getName(ID) - Return the LLVM name for an intrinsic, such as
48 std::string getName(ID id, ArrayRef<Type*> Tys = ArrayRef<Type*>());
50 /// Intrinsic::getType(ID) - Return the function type for an intrinsic.
52 FunctionType *getType(LLVMContext &Context, ID id,
55 /// Intrinsic::isOverloaded(ID) - Returns true if the intrinsic can be
57 bool isOverloaded(ID id);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
Perspective.java 34 public static String ID = "com.android.ide.eclipse.ddms.Perspective"; //$NON-NLS-1$
48 folder.addPlaceholder(LogCatView.ID + ":*"); //$NON-NLS-1$
49 folder.addView(LogCatView.ID);
53 folder.addPlaceholder(DeviceView.ID + ":*"); //$NON-NLS-1$
54 folder.addView(DeviceView.ID);
58 folder.addPlaceholder(ThreadView.ID + ":*"); //$NON-NLS-1$
59 folder.addView(ThreadView.ID);
60 folder.addView(HeapView.ID);
61 folder.addView(AllocTrackerView.ID);
62 folder.addView(NetworkStatisticsView.ID);
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
T.g 23 : m='method' ID '(' ')' body
41 foreach my $id ($body::decls) {
42 $tokens->insert_after($lcurly, "\nint $id;");
47 stat: ID '=' expr ';' { $body::decls->add($ID.text); } // track left-hand-sides
56 atom: ID
60 ID : ('a'..'z'|'A'..'Z')+ ;
  /bootable/bootloader/legacy/include/boot/
usb_descriptors.h 57 0xD1, 0x18, // vendor id
58 0x0D, 0xD0, // product id
140 unsigned short id; member in struct:__anon703
143 #define ID(type,num) ((type << 8) | num)
146 { device_desc, sizeof(device_desc), ID(TYPE_DEVICE, 0) },
147 { config_desc, sizeof(config_desc), ID(TYPE_CONFIGURATION, 0) },
148 { manufacturer_string, sizeof(manufacturer_string), ID(TYPE_STRING, 1) },
149 { product_string, sizeof(product_string), ID(TYPE_STRING, 2) },
150 { default_string, sizeof(default_string), ID(TYPE_STRING, 4) },
151 { language_table, sizeof(language_table), ID(TYPE_STRING, 0) }
    [all...]

Completed in 512 milliseconds

1 2 3 4 5 6 7 8 91011>>