/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,
|
/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/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/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...] |
Type.h | 68 NumTypeIDs, // Must remain as last defined ID 77 TypeID ID : 8; // The current base type of this type. 83 : Context(C), ID(tid), SubclassData(0), 116 /// getTypeID - Return the type id for the type. This will return one 119 TypeID getTypeID() const { return ID; } 122 bool isVoidTy() const { return ID == VoidTyID; } 125 bool isFloatTy() const { return ID == FloatTyID; } 128 bool isDoubleTy() const { return ID == DoubleTyID; } 131 bool isX86_FP80Ty() const { return ID == X86_FP80TyID; } 134 bool isFP128Ty() const { return ID == FP128TyID; [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$ 47 folder.addPlaceholder(LogCatView.ID + ":*"); //$NON-NLS-1$ 48 folder.addView(LogCatView.ID); 52 folder.addPlaceholder(DeviceView.ID + ":*"); //$NON-NLS-1$ 53 folder.addView(DeviceView.ID); 57 folder.addPlaceholder(EmulatorControlView.ID + ":*"); //$NON-NLS-1$ 58 folder.addView(EmulatorControlView.ID); 62 folder.addPlaceholder(ThreadView.ID + ":*"); //$NON-NLS-1$ 63 folder.addView(ThreadView.ID); 64 folder.addView(HeapView.ID); [all...] |
/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:__anon651 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...] |
/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$ 41 folder.addView(DeviceSelectorView.ID); 42 folder.addView(PropertyView.ID); 45 folder.addView(TreeViewView.ID); 48 folder.addView(TreeOverviewView.ID); 52 folder.addView(LayoutView.ID); 54 layout.addShowViewShortcut(DeviceSelectorView.ID); 55 layout.addShowViewShortcut(PropertyView.ID); 56 layout.addShowViewShortcut(TreeOverviewView.ID); 57 layout.addShowViewShortcut(LayoutView.ID); [all...] |
/external/llvm/lib/Analysis/ |
DomPrinter.cpp | 86 static char ID; 87 DomViewer() : DOTGraphTraitsViewer<DominatorTree, false>("dom", ID){ 94 static char ID; 95 DomOnlyViewer() : DOTGraphTraitsViewer<DominatorTree, true>("domonly", ID){ 102 static char ID; 104 DOTGraphTraitsViewer<PostDominatorTree, false>("postdom", ID){ 111 static char ID; 113 DOTGraphTraitsViewer<PostDominatorTree, true>("postdomonly", ID){ 119 char DomViewer::ID = 0; 123 char DomOnlyViewer::ID = 0 [all...] |
NoAliasAnalysis.cpp | 28 static char ID; // Class identification, replacement for typeinfo 29 NoAA() : ImmutablePass(ID) { 74 virtual void *getAdjustedAnalysisPointer(const void *ID) { 75 if (ID == &AliasAnalysis::ID) 83 char NoAA::ID = 0;
|
CFGPrinter.cpp | 27 static char ID; // Pass identifcation, replacement for typeid 28 CFGViewer() : FunctionPass(ID) { 45 char CFGViewer::ID = 0; 50 static char ID; // Pass identifcation, replacement for typeid 51 CFGOnlyViewer() : FunctionPass(ID) { 68 char CFGOnlyViewer::ID = 0; 74 static char ID; // Pass identification, replacement for typeid 75 CFGPrinter() : FunctionPass(ID) { 102 char CFGPrinter::ID = 0; 108 static char ID; // Pass identification, replacement for typei [all...] |
/external/llvm/tools/bugpoint-passes/ |
TestPasses.cpp | 29 static char ID; // Pass ID, replacement for typeid 30 CrashOnCalls() : BasicBlockPass(ID) {} 46 char CrashOnCalls::ID = 0; 56 static char ID; // Pass ID, replacement for typeid 57 DeleteCalls() : BasicBlockPass(ID) {} 72 char DeleteCalls::ID = 0;
|