HomeSort by relevance Sort by last modified time
    Searched defs:ID (Results 326 - 350 of 595) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 22 public static final int ID=10;
251 // $ANTLR start "ID"
254 int _type = ID;
310 // $ANTLR end "ID"
510 // SimpleC.g:1:8: ( T__21 | T__22 | T__23 | T__24 | T__25 | T__26 | FOR | INT_TYPE | CHAR | VOID | ID | INT | EQ | EQEQ | LT | PLUS | WS )
585 // SimpleC.g:1:69: ID
725 return "1:1: Tokens : ( T__21 | T__22 | T__23 | T__24 | T__25 | T__26 | FOR | INT_TYPE | CHAR | VOID | ID | INT | EQ | EQEQ | LT | PLUS | WS );";
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 22 public static final int ID=10;
251 // $ANTLR start "ID"
254 int _type = ID;
310 // $ANTLR end "ID"
510 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:1:8: ( T__21 | T__22 | T__23 | T__24 | T__25 | T__26 | FOR | INT_TYPE | CHAR | VOID | ID | INT | EQ | EQEQ | LT | PLUS | WS )
585 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:1:69: ID
725 return "1:1: Tokens : ( T__21 | T__22 | T__23 | T__24 | T__25 | T__26 | FOR | INT_TYPE | CHAR | VOID | ID | INT | EQ | EQEQ | LT | PLUS | WS );";
  /external/bison/src/
parse-gram.h 86 ID = 301,
139 #define ID 301
  /external/clang/include/clang/Basic/
SourceLocation.h 38 /// ID - Opaque identifier, 0 is "invalid". >0 is this module, <-1 is
40 int ID;
42 FileID() : ID(0) {}
44 bool isInvalid() const { return ID == 0; }
46 bool operator==(const FileID &RHS) const { return ID == RHS.ID; }
47 bool operator<(const FileID &RHS) const { return ID < RHS.ID; }
48 bool operator<=(const FileID &RHS) const { return ID <= RHS.ID; }
    [all...]
  /external/clang/lib/AST/
DeclTemplate.cpp 152 llvm::FoldingSetNodeID ID;
153 EntryType::Profile(ID,Args,NumArgs, getASTContext());
154 EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos);
220 unsigned ID) {
221 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FunctionTemplateDecl));
285 unsigned ID) {
286 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ClassTemplateDecl));
440 unsigned D, unsigned P, IdentifierInfo *Id,
443 new (C) TemplateTypeParmDecl(DC, KeyLoc, NameLoc, Id, Typename);
450 TemplateTypeParmDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
    [all...]
  /external/icu4c/test/cintltst/
utransts.c 148 log_verbose("System ID count: %d\n", n);
181 const UChar *id, *id2; local
200 id=uenum_unext(uenum, &idLength, &errorCode);
202 log_err("uenum_unext(transliterator ID %d) failed - %s\n", count, u_errorName(errorCode));
205 if(id==NULL) {
214 utrans=utrans_openU(id, idLength, UTRANS_FORWARD, NULL, 0, NULL, &errorCode);
216 log_err("utrans_openU(%s) failed - %s\n", aescstrdup(id, idLength), u_errorName(errorCode));
221 if(idLength!=id2Length || 0!=u_memcmp(id, id2, idLength)) {
222 log_err("utrans_getUnicodeID(%s) does not match the original ID\n", aescstrdup(id, idLength))
609 const char *id; local
    [all...]
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 332 static char ID;
ScalarEvolution.h 100 explicit SCEV(const FoldingSetNodeIDRef ID, unsigned SCEVTy) :
101 FastID(ID), SCEVType(SCEVTy), SubclassData(0) {}
139 static void Profile(const SCEV &X, FoldingSetNodeID& ID) {
140 ID = X.FastID;
142 static bool Equals(const SCEV &X, const FoldingSetNodeID &ID,
144 return ID == X.FastID;
541 static char ID; // Pass identification, replacement for typeid
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 21 // string and assigned a sequential numeric ID (base 1.)
23 // ID. A file ID is sequential number (base 1.)
24 // -- Source line correspondence - A vector of file ID, line#, column# triples.
170 static char ID; // Pass identification, replacement for typeid
277 /// addLandingPad - Add a new panding pad. Returns the label ID for the
316 /// getTypeIDFor - Return the type id for the specified typeinfo. This is
320 /// getFilterIDFor - Return the id of the filter encoded by TyIds. This is
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 36 const uint16_t ID;
41 /// getID() - Return the register class ID number.
43 unsigned getID() const { return ID; }
354 assert(i < getNumRegClasses() && "Register Class ID out of range");
  /external/llvm/lib/Analysis/
Lint.cpp 112 static char ID; // Pass identification, replacement for typeid
113 Lint() : FunctionPass(ID), MessagesStr(Messages) {
152 char Lint::ID = 0;
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 125 static char ID;
149 : MachineFunctionPass(ID), RC(rc), NumRegs(RC->getNumRegs()) {}
191 char ExeDepsFix::ID = 0;
LiveVariables.cpp 44 char LiveVariables::ID = 0;
45 char &llvm::LiveVariablesID = LiveVariables::ID;
MachineCSE.cpp 47 static char ID; // Pass identification
48 MachineCSE() : MachineFunctionPass(ID), LookAheadLimit(5), CurrVN(0) {
109 char MachineCSE::ID = 0;
110 char &llvm::MachineCSEID = MachineCSE::ID;
MachineModuleInfo.cpp 31 char MachineModuleInfo::ID = 0;
257 : ImmutablePass(ID), Context(MAI, MRI, MOFI),
269 : ImmutablePass(ID),
509 /// getTypeIDFor - Return the type id for the specified typeinfo. This is
519 /// getFilterIDFor - Return the filter id for the specified typeinfos. This is
PostRASchedulerList.cpp 67 // If DebugDiv > 0 then only schedule MBB with (ID % DebugDiv) == DebugMod
86 static char ID;
87 PostRAScheduler() : MachineFunctionPass(ID) {}
102 char PostRAScheduler::ID = 0;
192 char &llvm::PostRASchedulerID = PostRAScheduler::ID;
293 // If DebugDiv > 0 then only schedule MBB with (ID % DebugDiv) == DebugMod
PrologEpilogInserter.cpp 47 char PEI::ID = 0;
48 char &llvm::PrologEpilogCodeInserterID = PEI::ID;
RenderMachineFunction.h 203 static char ID;
205 RenderMachineFunction() : MachineFunctionPass(ID) {
SjLjEHPrepare.cpp 60 static char ID; // Pass identification, replacement for typeid
62 : FunctionPass(ID), TLI(tli) { }
82 char SjLjEHPrepare::ID = 0;
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 61 static char ID; // Pass identification, replacement for typeid
63 HexagonHardwareLoops() : MachineFunctionPass(ID) {}
107 char HexagonHardwareLoops::ID = 0;
165 static char ID; // Pass identification, replacement for typeid.
167 HexagonFixupHwLoops() : MachineFunctionPass(ID) {}
196 char HexagonFixupHwLoops::ID = 0;
  /external/llvm/lib/Target/
TargetData.cpp 38 char TargetData::ID = 0;
301 TargetData::TargetData() : ImmutablePass(ID) {
307 : ImmutablePass(ID) {
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 67 static char ID; // Pass identification, replacement for typeid
69 : CallGraphSCCPass(ID), maxElements(maxElements) {
87 char ArgPromotion::ID = 0;
    [all...]
DeadArgumentElimination.cpp 125 // DAH uses this to specify a different ID.
126 explicit DAE(char &ID) : ModulePass(ID) {}
129 static char ID; // Pass identification, replacement for typeid
130 DAE() : ModulePass(ID) {
157 char DAE::ID = 0;
165 static char ID;
166 DAH() : DAE(ID) {}
172 char DAH::ID = 0;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 49 static char ID; // Pass identification, replacement for typeid
50 DSE() : FunctionPass(ID), AA(0), MD(0), DT(0) {
88 char DSE::ID = 0;
EarlyCSE.cpp 255 static char ID;
256 explicit EarlyCSE() : FunctionPass(ID) {
339 char EarlyCSE::ID = 0;

Completed in 672 milliseconds

<<11121314151617181920>>