HomeSort by relevance Sort by last modified time
    Searched refs:ID (Results 76 - 100 of 2147) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/lib/Driver/
Action.cpp 45 InputAction::InputAction(const Arg &_Input, types::ID _Type)
57 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type)
61 JobAction::JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type)
67 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType)
73 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType)
79 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType)
85 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType)
91 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType)
97 AssembleJobAction::AssembleJobAction(Action *Input, types::ID OutputType)
103 LinkJobAction::LinkJobAction(ActionList &Inputs, types::ID Type
    [all...]
Types.cpp 23 ID PreprocessedType;
27 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) \
34 static const TypeInfo &getInfo(unsigned id) {
35 assert(id > 0 && id - 1 < numTypes && "Invalid Type ID.");
36 return TypeInfos[id - 1];
39 const char *types::getTypeName(ID Id) {
40 return getInfo(Id).Name
    [all...]
  /frameworks/compile/slang/
strip_unknown_attributes.h 29 static char ID;
  /external/clang/include/clang/Driver/
SanitizerArgs.h 26 #define SANITIZER(NAME, ID) SO_##ID,
27 #define SANITIZER_GROUP(NAME, ID, ALIAS) SO_##ID##Group,
34 #define SANITIZER(NAME, ID) ID = 1 << SO_##ID,
35 #define SANITIZER_GROUP(NAME, ID, ALIAS) \
36 ID = ALIAS, ID##Group = 1 << SO_##ID##Group
    [all...]
Action.h 66 types::ID Type;
73 Action(ActionClass _Kind, types::ID _Type)
75 Action(ActionClass _Kind, Action *Input, types::ID _Type)
77 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type)
88 types::ID getType() const { return Type; }
106 InputAction(const llvm::opt::Arg &_Input, types::ID _Type);
134 JobAction(ActionClass Kind, Action *Input, types::ID Type);
135 JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type);
147 PreprocessJobAction(Action *Input, types::ID OutputType);
157 PrecompileJobAction(Action *Input, types::ID OutputType)
    [all...]
  /external/chromium_org/components/keyed_service/content/
refcounted_browser_context_keyed_service.h 32 // thread ID, your service will be deleted on that thread. We can't use
55 // use this constructor with the ID of the thread.
57 const content::BrowserThread::ID thread_id);
72 content::BrowserThread::ID thread_id_;
  /external/chromium_org/content/public/test/
test_browser_thread.h 26 explicit TestBrowserThread(BrowserThread::ID identifier);
27 TestBrowserThread(BrowserThread::ID identifier,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILIntrinsicInfo.h 22 enum ID {
40 Function *getDeclaration(Module *M, unsigned int ID,
  /external/llvm/include/llvm/CodeGen/
EdgeBundles.h 38 static char ID;
39 EdgeBundles() : MachineFunctionPass(ID) {}
  /external/llvm/include/llvm/Transforms/Utils/
UnifyFunctionExitNodes.h 29 static char ID; // Pass identification, replacement for typeid
30 UnifyFunctionExitNodes() : FunctionPass(ID),
  /external/llvm/lib/Analysis/
JumpInstrTableInfo.cpp 25 char JumpInstrTableInfo::ID = 0;
31 JumpInstrTableInfo::JumpInstrTableInfo() : ImmutablePass(ID), Tables() {
NoAliasAnalysis.cpp 29 static char ID; // Class identification, replacement for typeinfo
30 NoAA() : ImmutablePass(ID) {
81 void *getAdjustedAnalysisPointer(const void *ID) override {
82 if (ID == &AliasAnalysis::ID)
90 char NoAA::ID = 0;
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILIntrinsicInfo.h 22 enum ID {
40 Function *getDeclaration(Module *M, unsigned int ID,
  /external/llvm/tools/opt/
AnalysisWrappers.cpp 33 static char ID; // Pass ID, replacement for typeid
34 ExternalFunctionsPassedConstants() : ModulePass(ID) {}
70 char ExternalFunctionsPassedConstants::ID = 0;
77 static char ID; // Pass ID, replacement for typeid
78 CallGraphPrinter() : ModulePass(ID) {}
91 char CallGraphPrinter::ID = 0;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
hetero-nodes.rb 22 a : ID<V> ;
23 ID : 'a'..'z'+ ;
41 a : ID<TokenWithQualifiedType.Parser.V> ;
42 ID : 'a'..'z'+ ;
60 a : x=ID<V> ;
61 ID : 'a'..'z'+ ;
79 a : x+=ID<V> ;
80 ID : 'a'..'z'+ ;
99 a : ID<V>^ ;
100 ID : 'a'..'z'+
    [all...]
  /external/clang/include/clang/Basic/
SourceLocation.h 42 int ID;
44 FileID() : ID(0) {}
46 bool isInvalid() const { return ID == 0; }
48 bool operator==(const FileID &RHS) const { return ID == RHS.ID; }
49 bool operator<(const FileID &RHS) const { return ID < RHS.ID; }
50 bool operator<=(const FileID &RHS) const { return ID <= RHS.ID; }
56 unsigned getHashValue() const { return static_cast<unsigned>(ID); }
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.g3 59 | ^('=' ID expr) { globalMemory[$ID.text] = $expr.value; }
69 | ID { $value = getValue($ID.text); }
75 : ^(CALL ID expr) { BigInteger p = $expr.value;
76 CommonTree funcRoot = findFunction($ID.text, p);
78 Console.Error.WriteLine("No match found for " + $ID.text + "(" + p + ")");
ProfileTreeGrammar.g3 59 | ^('=' ID expr) { globalMemory[$ID.text] = $expr.value; }
69 | ID { $value = getValue($ID.text); }
75 : ^(CALL ID expr) { BigInteger p = $expr.value;
76 CommonTree funcRoot = findFunction($ID.text, p);
78 Console.Error.WriteLine("No match found for " + $ID.text + "(" + p + ")");
  /external/chromium_org/content/renderer/pepper/
content_renderer_pepper_host_factory.cc 86 case PpapiHostMsg_Compositor_Create::ID: {
90 case PpapiHostMsg_FileRef_CreateForFileAPI::ID: {
101 case PpapiHostMsg_FileSystem_Create::ID: {
111 case PpapiHostMsg_Graphics2D_Create::ID: {
129 case PpapiHostMsg_URLLoader_Create::ID:
132 case PpapiHostMsg_VideoDecoder_Create::ID:
135 case PpapiHostMsg_WebSocket_Create::ID:
139 case PpapiHostMsg_MediaStreamVideoTrack_Create::ID:
145 case PpapiHostMsg_VideoDestination_Create::ID:
149 case PpapiHostMsg_VideoSource_Create::ID
    [all...]
  /external/llvm/include/llvm/
PassAnalysisSupport.h 49 // addRequired - Add the specified ID to the required set of the usage info
52 AnalysisUsage &addRequiredID(const void *ID);
53 AnalysisUsage &addRequiredID(char &ID);
56 return addRequiredID(PassClass::ID);
59 AnalysisUsage &addRequiredTransitiveID(char &ID);
62 return addRequiredTransitiveID(PassClass::ID);
65 // addPreserved - Add the specified ID to the set of analyses preserved by
68 AnalysisUsage &addPreservedID(const void *ID) {
69 Preserved.push_back(ID);
72 AnalysisUsage &addPreservedID(char &ID) {
    [all...]
  /external/chromium_org/chrome/renderer/pepper/
chrome_renderer_pepper_host_factory.cc 44 case PpapiHostMsg_Flash_Create::ID: {
48 case PpapiHostMsg_FlashFullscreen_Create::ID: {
52 case PpapiHostMsg_FlashMenu_Create::ID: {
72 case PpapiHostMsg_FlashFontFile_Create::ID: {
82 case PpapiHostMsg_FlashDRM_Create::ID:
91 case PpapiHostMsg_PDF_Create::ID: {
103 case PpapiHostMsg_UMA_Create::ID: {
  /external/llvm/lib/Target/R600/
AMDGPUTargetTransformInfo.cpp 49 AMDGPUTTI() : ImmutablePass(ID), TM(nullptr), ST(nullptr), TLI(nullptr) {
54 : ImmutablePass(ID), TM(TM), ST(TM->getSubtargetImpl()),
66 static char ID;
69 void *getAdjustedAnalysisPointer(const void *ID) override {
70 if (ID == &TargetTransformInfo::ID)
87 char AMDGPUTTI::ID = 0;
  /external/llvm/lib/IR/
AttributeImpl.h 67 void Profile(FoldingSetNodeID &ID) const {
69 Profile(ID, getKindAsEnum(), 0);
71 Profile(ID, getKindAsEnum(), getValueAsInt());
73 Profile(ID, getKindAsString(), getValueAsString());
75 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind,
77 ID.AddInteger(Kind);
78 if (Val) ID.AddInteger(Val);
80 static void Profile(FoldingSetNodeID &ID, StringRef Kind, StringRef Values) {
81 ID.AddString(Kind);
82 if (!Values.empty()) ID.AddString(Values)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 42 llvm::FoldingSetNodeID ID;
43 RegionTy::ProfileRegion(ID, a1, superRegion);
45 RegionTy* R = cast_or_null<RegionTy>(Regions.FindNodeOrInsertPos(ID,
60 llvm::FoldingSetNodeID ID;
61 RegionTy::ProfileRegion(ID, a1, superRegion);
63 RegionTy* R = cast_or_null<RegionTy>(Regions.FindNodeOrInsertPos(ID,
81 llvm::FoldingSetNodeID ID;
82 RegionTy::ProfileRegion(ID, a1, a2, superRegion);
84 RegionTy* R = cast_or_null<RegionTy>(Regions.FindNodeOrInsertPos(ID,
100 llvm::FoldingSetNodeID ID;
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
main-scripts.rb 21 ID: ('a'..'z' | '\u00c0'..'\u00ff')+;
45 ID: 'a'..'z'+;
69 ID: 'a'..'z'+;
82 r returns [res]: (ID)+ EOF { $res = $text; };
84 ID: 'a'..'z'+;
105 r: ID OP^ ID EOF!;
107 ID: 'a'..'z'+;
129 r: ID OP^ ID EOF!
    [all...]

Completed in 612 milliseconds

1 2 34 5 6 7 8 91011>>