/external/quake/quake/src/WinQuake/ |
r_aliasa.s | 224 decl %ecx
|
d_parta.s | 452 decl %eax // --pix 458 decl %ebx // --count
|
/external/webkit/Source/WebCore/dom/ |
XMLDocumentParserQt.cpp | 345 const QXmlStreamNamespaceDeclaration &decl = ns[i]; local 346 String namespaceURI = decl.namespaceUri(); 347 String namespaceQName = decl.prefix().isEmpty() ? String("xmlns") : String("xmlns:"); 348 namespaceQName.append(decl.prefix());
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
c-common.h | 368 extern bool has_c_linkage (const_tree decl); 735 extern void check_main_parameter_types (tree decl); 759 extern void set_builtin_user_assembler_name (tree decl, const char *asmspec); 763 extern void set_compound_literal_name (tree decl); 803 /* In a FIELD_DECL, nonzero if the decl was originally a bitfield. */ [all...] |
/external/clang/lib/AST/ |
ExprCXX.cpp | 1152 NamedDecl *decl = *begin; local [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/ |
LangDumpDecl.m | 93 @"DECL", @"FLOATTYPE", @"ID", @"INT", @"INTTYPE", @"WS", @"';'", nil] retain]]; 129 * $ANTLR start decl 130 * LangDumpDecl.g:8:1: decl : ^( DECL type declarator ) ; 132 - (void) decl 141 // LangDumpDecl.g:8:6: ( ^( DECL type declarator ) ) // ruleBlockSingleAlt 142 // LangDumpDecl.g:8:8: ^( DECL type declarator ) // alt 144 [self match:input TokenType:DECL Follow:FOLLOW_DECL_in_decl45]; 185 /* $ANTLR end decl */
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorLRE.java | 363 XMLNSDecl decl = (XMLNSDecl) declaredPrefixes.get(i); local 364 if(decl.getURI().equals(Constants.S_XSLNAMESPACEURL))
|
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngineCXX.cpp | 31 const CXXThisRegion *ExprEngine::getCXXThisRegion(const CXXMethodDecl *decl, 34 getCXXThisRegion(decl->getThisType(getContext()), frameCtx);
|
Store.cpp | 238 SVal StoreManager::getLValueFieldOrIvar(const Decl *D, SVal Base) { 273 SVal StoreManager::getLValueIvar(const ObjCIvarDecl *decl, SVal base) { 274 return getLValueFieldOrIvar(decl, base);
|
/frameworks/native/opengl/libs/GLES_trace/tools/ |
genapi.py | 215 def getNameTypePair(decl): 218 elements = decl.strip().split(' ')
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/ |
SymbolTableParser.m | 262 * SymbolTable.g:30:1: globals : ( decl )* ; 275 // SymbolTable.g:36:5: ( ( decl )* ) // ruleBlockSingleAlt 276 // SymbolTable.g:36:9: ( decl )* // alt 288 // SymbolTable.g:36:10: decl // alt 292 [self decl]; 382 * SymbolTable.g:47:1: block : '{' ( decl )* ( stat )* '}' ; 395 // SymbolTable.g:53:5: ( '{' ( decl )* ( stat )* '}' ) // ruleBlockSingleAlt 396 // SymbolTable.g:53:9: '{' ( decl )* ( stat )* '}' // alt 410 // SymbolTable.g:53:14: decl // alt 414 [self decl]; [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/ |
SymbolTableParser.m | 285 * /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:28:1: globals : ( decl )* ; 300 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:34:5: ( ( decl )* ) // ruleBlockSingleAlt 301 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:34:9: ( decl )* // alt 313 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:34:10: decl // alt 316 [self decl]; 388 * /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:45:1: block : '{' ( decl )* ( stat )* '}' ; 403 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:51:5: ( '{' ( decl )* ( stat )* '}' ) // ruleBlockSingleAlt 404 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:51:9: '{' ( decl )* ( stat )* '}' // alt 417 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:51:14: decl // alt 420 [self decl]; [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
auto-ast.rb | 540 result, errors = parse( <<-'END', :decl, 'int 34 x=1;', true ) 543 decl : type^ ID '='! INT ';'! ; 555 result, errors = parse( <<-'END', :decl, 'int =1;', true ) 559 decl : type^ ID '='! INT ';'! ; 570 result, errors = parse( <<-'END', :decl, 'x=1;', true ) 574 decl : type^ ID '='! INT ';'! ;
|
rewrites.rb | 1132 example "extra token in simple decl" do 1133 result, errors = parse( <<-'END', :decl, 'int 34 x=1;', true ) 1137 decl : type ID '=' INT ';' -> ^(EXPR type ID INT) ; 1149 example "missing id in simple decl" do 1150 result, errors = parse( <<-'END', :decl, 'int =1;', true ) 1154 decl : type ID '=' INT ';' -> ^(EXPR type ID INT) ; 1166 example "missing set in simple decl" do 1167 result, errors = parse( <<-'END', :decl, 'x=1;', true ) 1171 decl : type ID '=' INT ';' -> ^(EXPR type ID INT) ; [all...] |
/external/clang/utils/ABITest/ |
ABITestGen.py | 68 def addDeclaration(self, decl): 69 if decl in self.declarations: 72 self.declarations.add(decl) 74 print >>self.outputHeader, decl 76 print >>self.output, decl 78 print >>self.outputTests, decl
|
/external/libsepol/src/ |
policydb.c | 934 avrule_decl_t *decl; local 940 for (decl = curblock->branch_list; decl != NULL; 941 decl = decl->next) { 953 for (decl = curblock->branch_list; decl != NULL; 954 decl = decl->next) { 955 p->decl_val_to_struct[decl->decl_id - 1] = decl [all...] |
expand.c | 2587 avrule_decl_t *decl = curblock->enabled; local 2688 avrule_decl_t *decl; local 2948 avrule_decl_t *decl = curblock->enabled; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar | |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/ |
Perl5.stg | 357 <exceptions:{e|<catch(decl=e.decl,action=e.action)><\n>}> 386 catch(decl,action) ::= << 387 catch (<e.decl>) { 1136 <scope.attributes:{<it.decl>;}; separator="\n"> [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
MemRegion.h | 20 #include "clang/AST/Decl.h" 100 // Decl Regions. 772 const Decl *D; 774 DeclRegion(const Decl *d, const MemRegion* sReg, Kind k) 777 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const Decl *D, 781 const Decl *getDecl() const { return D; } 1002 const CXXRecordDecl *decl; member in class:clang::ento::CXXBaseObjectRegion 1005 : TypedValueRegion(sReg, CXXBaseObjectRegionKind), decl(d) {} 1008 const CXXRecordDecl *decl, const MemRegion *sReg); 1011 const CXXRecordDecl *getDecl() const { return decl; } [all...] |
/external/v8/src/ |
scopes.cc | 528 Declaration* decl = decls_[i]; local 529 if (decl->mode() != VAR) continue; 530 Handle<String> name = decl->proxy()->name(); 534 Scope* current = decl->scope(); 539 return decl; [all...] |
/external/javassist/src/main/javassist/bytecode/ |
Descriptor.java | 468 public static String getParamDescriptor(String decl) { 469 return decl.substring(0, decl.indexOf(')') + 1);
|
/external/clang/lib/Sema/ |
SemaDeclAttr.cpp | 10 // This file implements decl-related attribute processing. 52 static const FunctionType *getFunctionType(const Decl *D, 55 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D)) 56 Ty = decl->getType(); 57 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D)) 58 Ty = decl->getType(); 59 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D)) 60 Ty = decl->getUnderlyingType(); 75 /// isFunction - Return true if the given decl has function 77 static bool isFunction(const Decl *D) [all...] |
/external/quake/quake/src/QW/client/ |
d_parta.s | 452 decl %eax // --pix 458 decl %ebx // --count
|
/external/javassist/src/main/javassist/compiler/ |
MemberCodeGen.java | 221 Declarator decl = (Declarator)p.getLeft(); local 224 decl.setLocalVar(var); 226 CtClass type = resolver.lookupClassByJvmName(decl.getClassName()); 227 decl.setClassName(MemberResolver.javaToJvmName(type.getName())); [all...] |