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

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerBuilder.java 83 /** This ID is used in plugin.xml and in each project's .project file.
85 public static final String ID = "com.android.ide.eclipse.adt.PreCompilerBuilder"; //$NON-NLS-1$
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLFunctionTraceViewer.java 80 public static final String ID = "com.android.ide.eclipse.gltrace.GLFunctionTrace"; //$NON-NLS-1$
289 * @param context context id whose calls should be displayed. Illegal values will result in
374 // column showing the GL context id
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jar 
  /external/bison/src/
parse-gram.c 121 ID = 301,
174 #define ID 301
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable.h 83 LOCAL_EXTERNAL_ID, // ID of an item in the external local storage that this
95 // Code in InitializeTables relies on ID being the first IdField value.
96 ID = ID_FIELDS_BEGIN,
186 // Entry e = transaction.GetById(id);
188 // Entry e(transaction, GET_BY_ID, id);
228 Id id_fields[ID_FIELDS_COUNT];
269 inline void put(IdField field, const Id& value) {
301 inline const Id& ref(IdField field) const {
333 inline Id& mutable_ref(IdField field) {
355 Entry(BaseTransaction* trans, GetById, const Id& id)
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 85 /// \brief The file ID for this predefines buffer in a PCH file.
136 virtual void ReadHeaderFileInfo(const HeaderFileInfo &HFI, unsigned ID) {}
160 virtual void ReadHeaderFileInfo(const HeaderFileInfo &HFI, unsigned ID);
265 /// ID = (I + 1) << FastQual::Width has already been loaded
273 /// global type ID to produce a local ID.
278 /// When the pointer at index I is non-NULL, the declaration with ID
328 // ID as a key. It will be realized when the context is actually loaded.
353 /// IdentifierInfo for the identifier with ID=I+1 that has already
362 /// global identifier ID to produce a local ID
    [all...]
  /external/clang/lib/AST/
Expr.cpp 148 // An id-expression is type-dependent if it contains:
166 // (TD) - a conversion-function-id that specifies a dependent type
237 // An id-expression is type-dependent if it contains:
511 if (const ObjCInterfaceDecl *ID = MD->getClassInterface())
512 Out << *ID;
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 29 /// getBuiltinLibFunction - Given a builtin id for a function like
77 /// Utility to insert an atomic instruction based on Instrinsic::ID
110 /// Utility to insert an atomic instruction based Instrinsic::ID and
202 Intrinsic::ID inst = (BuiltinID == Builtin::BI__builtin_va_end) ?
    [all...]
CGCall.cpp 355 llvm::FoldingSetNodeID ID;
356 CGFunctionInfo::Profile(ID, info, required, resultType, argTypes);
359 CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, insertPos);
    [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 81 // This can be null for calls to e.g. id<Foo>.
364 ObjCInterfaceDecl *ID = candidate.getCorrectionDeclAs<ObjCInterfaceDecl>();
365 return ID && !declaresSameEntity(ID, CurrentIDecl);
690 ObjCInterfaceDecl *ID) {
691 if (!ID)
695 for (ObjCInterfaceDecl::method_iterator i = ID->meth_begin(),
696 e = ID->meth_end(); i != e; ++i) {
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp     [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 7 * $Id: ReportGenerator.java,v 1.2.2.1 2004/07/16 23:32:04 vlad_r Exp $
745 final int ID;
748 ID = out [0];
751 ID = m_namespace.size ();
752 m_namespace.put (key, ID);
755 return Integer.toHexString (ID);
758 private final ObjectIntMap /* key:String->ID */ m_namespace;
    [all...]
  /external/libpcap/
grammar.c 113 ID = 304,
217 #define ID 304
788 "LINK", "GEQ", "LEQ", "NEQ", "ID", "EID", "HID", "HID6", "AID", "LSH",
796 "':'", "$accept", "prog", "null", "expr", "and", "or", "id", "nid",
    [all...]
  /external/libxml2/
valid.c 2738 xmlIDPtr id; local
2775 xmlIDPtr id; local
6434 xmlAttrPtr id; local
    [all...]
  /external/libxslt/libxslt/
xslt.c     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 60 char AsmPrinter::ID = 0;
100 : MachineFunctionPass(ID),
126 /// getFunctionNumber - Return a unique ID for the current function.
    [all...]
DwarfDebug.cpp 178 FoldingSetNodeID ID;
179 Abbrev.Profile(ID);
518 /// GetOrCreateSourceID - Look up the source id with the given directory and
519 /// source file names. If none currently exists, create a new id and insert it
556 unsigned ID = GetOrCreateSourceID(FN, CompilationDir);
559 CompileUnit *NewCU = new CompileUnit(ID, DIUnit.getLanguage(), Die, Asm, this);
    [all...]
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp 179 static char ID; // Class identification, replacement for typeinfo
180 RegisterCoalescer() : MachineFunctionPass(ID) {
196 char &llvm::RegisterCoalescerID = RegisterCoalescer::ID;
208 char RegisterCoalescer::ID = 0;
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/llvm/lib/TableGen/
Record.cpp 467 ProfileBitsInit(FoldingSetNodeID &ID, ArrayRef<Init *> Range) {
468 ID.AddInteger(Range.size());
474 ID.AddPointer(*i);
481 FoldingSetNodeID ID;
482 ProfileBitsInit(ID, Range);
485 if (BitsInit *I = ThePool.FindNodeOrInsertPos(ID, IP))
494 void BitsInit::Profile(FoldingSetNodeID &ID) const {
495 ProfileBitsInit(ID, Bits);
584 static void ProfileListInit(FoldingSetNodeID &ID,
587 ID.AddInteger(Range.size())
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 277 static char ID;
278 ARMConstantIslands() : MachineFunctionPass(ID) {}
336 char ARMConstantIslands::ID = 0;
855 /// ID
    [all...]
ARMLoadStoreOptimizer.cpp 62 static char ID;
63 ARMLoadStoreOpt() : MachineFunctionPass(ID) {}
134 char ARMLoadStoreOpt::ID = 0;
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 67 static char ID; // Pass identification, replacement for typeid
68 GlobalOpt() : ModulePass(ID) {
91 char GlobalOpt::ID = 0;
    [all...]

Completed in 1474 milliseconds

<<11121314151617181920>>