/frameworks/compile/slang/BitWriter_2_9_func/ |
BitcodeWriterPass.cpp | 27 static char ID; // Pass identification, replacement for typeid 29 : ModulePass(ID), OS(o) {} 45 char WriteBitcodePass::ID = 0;
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
EditorCurves.java | 29 public static final int ID = R.id.imageCurves; 33 super(ID);
|
EditorRedEye.java | 31 public static int ID = R.id.editorRedEye; 36 super(ID); 39 protected EditorRedEye(int id) { 40 super(id);
|
EditorVignette.java | 28 public static final int ID = R.id.vignetteEditor; 33 super(ID, R.layout.filtershow_vignette_editor, R.id.imageVignette);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
SysInfoView.java | 8 public static final String ID = "com.android.ide.eclipse.ddms.views.SysInfoView"; //$NON-NLS-1$
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/ |
FrameSummaryView.java | 27 public static final String ID = "com.android.ide.eclipse.gltrace.views.FrameBuffer"; //$NON-NLS-1$
|
StateView.java | 31 public static final String ID = "com.android.ide.eclipse.gltrace.views.State"; //$NON-NLS-1$
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/ |
DetailsView.java | 25 public static final String ID = "com.android.ide.eclipse.gltrace.views.Details"; //$NON-NLS-1$
|
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
CompletionInfoTest.java | 25 private static final int ID = 1; 31 new CompletionInfo(ID, POSITION, TEXT); 32 CompletionInfo info = new CompletionInfo(ID, POSITION, TEXT, LABEL); 47 assertEquals(ID, info.getId());
|
/cts/tools/dasm/src/java_cup/ |
sym.java | 21 static final int ID = 21;
|
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/ |
WeatherDataProvider.java | 55 public static final String ID = "_id"; 95 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE }); 129 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE });
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
TraceDebugEventListener.java | 50 int ID = adaptor.getUniqueID(t); 53 System.out.println("consumeNode "+ID+" "+text+" "+type); 57 int ID = adaptor.getUniqueID(t); 60 System.out.println("LT "+i+" "+ID+" "+text+" "+type); 68 int ID = adaptor.getUniqueID(t); 71 System.out.println("create "+ID+": "+text+", "+type); 75 int ID = adaptor.getUniqueID(node); 78 System.out.println("create "+ID+": "+tokenIndex);
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreePatternLexer.java | 34 public static final int ID = 3; 52 /** Set when token type is ID or ARG (name mimics Java's StreamTokenizer) */ 79 return ID;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
SimpleCParser.h | 53 #define ID 4 84 + (id) newSimpleCParser:(id<ANTLRTokenStream>)aStream;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/ |
SymbolTableParser.h | 38 #define ID 4 55 - (id) init; 97 + (id) newSymbolTableParser:(id<ANTLRTokenStream>)aStream;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/ |
LangParser.h | 33 #define ID 6 116 id<ANTLRTreeAdaptor> treeAdaptor; /* AST parserMemVars */ 127 @property (retain, getter=getTreeAdaptor, setter=setTreeAdaptor:) id<ANTLRTreeAdaptor> treeAdaptor; /* AST parserproperties */ 131 + (id) newLangParser:(id<ANTLRTokenStream>)aStream; 139 - (id<ANTLRTreeAdaptor>) getTreeAdaptor; 140 - (void) setTreeAdaptor:(id<ANTLRTreeAdaptor>)theTreeAdaptor; /* AST parsermethodsDecl */
|
/external/chromium/chrome/browser/ |
plugin_data_remover.cc | 80 int PluginDataRemover::ID() {
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
CheckObjCDealloc.cpp | 52 static bool scan_ivar_release(Stmt *S, ObjCIvarDecl *ID, 64 if (E->getDecl() == ID) 94 if (*I && scan_ivar_release(*I, ID, PD, Release, SelfII, Ctx)) 106 const ObjCInterfaceDecl *ID = D->getClassInterface(); 108 // Does the class contain any ivars that are pointers (or id<...>)? 111 // http://llvm.org/bugs/show_bug.cgi?id=2517 115 for (ObjCInterfaceDecl::ivar_iterator I=ID->ivar_begin(), E=ID->ivar_end(); 118 ObjCIvarDecl *ID = *I; 119 QualType T = ID->getType() [all...] |
ObjCMissingSuperCallChecker.cpp | 93 const ObjCInterfaceDecl *ID = D->getClassInterface(); 94 for ( ; ID ; ID = ID->getSuperClass()) 96 SuperclassName = ID->getIdentifier()->getName();
|
/external/clang/lib/StaticAnalyzer/Core/ |
BasicValueFactory.cpp | 23 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, 25 T.Profile(ID); 26 ID.AddPointer(L.getInternalPointer()); 29 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID, 32 ID.AddPointer(store.getStore()); 33 ID.AddPointer(region); 41 static inline void Profile(const SValData& X, llvm::FoldingSetNodeID& ID) { 42 X.first.Profile(ID); 43 ID.AddPointer( (void*) X.second); 48 static inline void Profile(const SValPair& X, llvm::FoldingSetNodeID& ID) { [all...] |
/external/clang/unittests/Format/ |
FormatTest.cpp | 27 FileID ID = Context.createInMemoryFile("input.cc", Code); 29 Context.Sources.getLocForStartOfFile(ID).getLocWithOffset(Offset); 33 Lexer Lex(ID, Context.Sources.getBuffer(ID), Context.Sources, 39 DEBUG(llvm::errs() << "\n" << Context.getRewrittenText(ID) << "\n\n"); 40 return Context.getRewrittenText(ID); [all...] |
/external/llvm/include/llvm/CodeGen/ |
LiveRegMatrix.h | 66 static char ID;
|
LiveVariables.h | 50 static char ID; // Pass identification, replacement for typeid 51 LiveVariables() : MachineFunctionPass(ID) {
|
MachineLoopInfo.h | 80 static char ID; // Pass identification, replacement for typeid 82 MachineLoopInfo() : MachineFunctionPass(ID) {
|
/external/llvm/include/llvm/IR/ |
CallingConv.h | 26 enum ID {
|