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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/Driver/
Types.h 19 enum ID {
21 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) TY_##ID,
27 /// getTypeName - Return the name of the type for \p Id.
28 const char *getTypeName(ID Id);
30 /// getPreprocessedType - Get the ID of the type for this input when
33 ID getPreprocessedType(ID Id);
    [all...]
OptSpecifier.h 21 unsigned ID;
27 OptSpecifier() : ID(0) {}
28 /*implicit*/ OptSpecifier(unsigned _ID) : ID(_ID) {}
31 bool isValid() const { return ID != 0; }
33 unsigned getID() const { return ID; }
35 bool operator==(OptSpecifier Opt) const { return ID == Opt.getID(); }
Phases.h 16 /// ID - Ordered values for successive stages in the
18 enum ID {
30 const char *getPhaseName(ID Id);
CC1AsOptions.h 18 enum ID {
19 OPT_INVALID = 0, // This is not an option ID.
21 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
22 HELPTEXT, METAVAR) OPT_##ID,
Options.h 18 enum ID {
19 OPT_INVALID = 0, // This is not an option ID.
21 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
22 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/llvm/include/llvm/Option/
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(); }
  /external/clang/include/clang/Basic/
Builtins.h 41 enum ID {
43 #define BUILTIN(ID, TYPE, ATTRS) BI##ID,
72 /// appropriate builtin ID # and mark any non-portable builtin identifiers as
82 const char *GetName(unsigned ID) const {
83 return GetRecord(ID).Name;
87 const char *GetTypeString(unsigned ID) const {
88 return GetRecord(ID).Type;
93 bool isConst(unsigned ID) const {
94 return strchr(GetRecord(ID).Attributes, 'c') != 0
    [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/Transforms/IPO/
BarrierNoopPass.cpp 33 static char ID; // Pass identification.
35 BarrierNoop() : ModulePass(ID) {
45 char BarrierNoop::ID = 0;
  /external/llvm/tools/opt/
GraphPrinters.cpp 29 static char ID; // Pass identification, replacement for typeid
30 DomInfoPrinter() : FunctionPass(ID) {}
45 char DomInfoPrinter::ID = 0;
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriterPass.cpp 22 static char ID; // Pass identification, replacement for typeid
24 : ModulePass(ID), OS(o) {}
35 char WriteBitcodePass::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/clang/lib/Serialization/
ASTCommon.cpp 27 unsigned ID = 0;
29 case BuiltinType::Void: ID = PREDEF_TYPE_VOID_ID; break;
30 case BuiltinType::Bool: ID = PREDEF_TYPE_BOOL_ID; break;
31 case BuiltinType::Char_U: ID = PREDEF_TYPE_CHAR_U_ID; break;
32 case BuiltinType::UChar: ID = PREDEF_TYPE_UCHAR_ID; break;
33 case BuiltinType::UShort: ID = PREDEF_TYPE_USHORT_ID; break;
34 case BuiltinType::UInt: ID = PREDEF_TYPE_UINT_ID; break;
35 case BuiltinType::ULong: ID = PREDEF_TYPE_ULONG_ID; break;
36 case BuiltinType::ULongLong: ID = PREDEF_TYPE_ULONGLONG_ID; break;
37 case BuiltinType::UInt128: ID = PREDEF_TYPE_UINT128_ID; break
    [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')+ ;
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
TreeViewPerspective.java 32 public static final String ID = "com.android.ide.eclipse.hierarchyviewer.TreeViewPerspective"; //$NON-NLS-1$
42 folder.addView(DeviceSelectorView.ID);
43 folder.addView(PropertyView.ID);
46 folder.addView(TreeViewView.ID);
49 folder.addView(TreeOverviewView.ID);
53 folder.addView(LayoutView.ID);
55 layout.addShowViewShortcut(DeviceSelectorView.ID);
56 layout.addShowViewShortcut(PropertyView.ID);
57 layout.addShowViewShortcut(TreeOverviewView.ID);
58 layout.addShowViewShortcut(LayoutView.ID);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLRv3Tree.g 42 : ^( grammarType ID DOC_COMMENT? optionsSpec? tokensSpec? attrScope* action* rule+ )
63 : ^('scope' ID ACTION)
67 : ^('@' ID ID ACTION)
68 | ^('@' ID ACTION)
77 | ^('=' ID optionValue)
81 : ID
88 : ^( RULE ID modifier? (^(ARG ARG_ACTION))? (^(RET ARG_ACTION))?
101 : ^('@' ID ACTION)
105 : ^('throws' ID+
    [all...]

Completed in 333 milliseconds

1 2 3 4 5 6 7 8 91011>>