/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
Python.stg | 443 <exceptions:{e|<catch(decl=e.decl,action=e.action)><\n>}> 471 catch(decl,action) ::= << 472 except <e.decl>: [all...] |
/external/clang/include/clang/AST/ |
Makefile | 41 $(Verb) $(ClangTableGen) -gen-clang-decl-nodes -o $(call SYSPATH, $@) $<
|
/external/clang/lib/AST/ |
ExprCXX.cpp | 1221 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/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_draw.c | 118 const SVGA3dVertexDecl *decl, 125 hwtnl->cmd.vdecl[i] = *decl;
|
/external/chromium_org/tools/gn/ |
scope.cc | 107 bool Scope::AddTemplate(const std::string& name, const FunctionCallNode* decl) { 110 templates_[name] = decl;
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_draw.c | 118 const SVGA3dVertexDecl *decl, 125 hwtnl->cmd.vdecl[i] = *decl;
|
/frameworks/native/opengl/libs/GLES_trace/tools/ |
genapi.py | 223 def getNameTypePair(decl): 226 elements = decl.strip().split(' ')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
config.py | 286 libraries=None, library_dirs=None, decl=0, call=0): 293 files listed in 'headers'. If 'decl' is true, it then declares 295 and set 'decl' true in the same call, or you might get errors about 304 if decl:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
config.py | 286 libraries=None, library_dirs=None, decl=0, call=0): 293 files listed in 'headers'. If 'decl' is true, it then declares 295 and set 'decl' true in the same call, or you might get errors about 304 if decl:
|
/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 ';'! ;
|
/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 | 997 avrule_decl_t *decl; local 1003 for (decl = curblock->branch_list; decl != NULL; 1004 decl = decl->next) { 1016 for (decl = curblock->branch_list; decl != NULL; 1017 decl = decl->next) { 1018 p->decl_val_to_struct[decl->decl_id - 1] = decl [all...] |
expand.c | 2735 avrule_decl_t *decl = curblock->enabled; local 2836 avrule_decl_t *decl; local 3096 avrule_decl_t *decl = curblock->enabled; local [all...] |
/external/llvm/tools/lto/ |
LTOModule.cpp | 597 LTOModule::addPotentialUndefinedSymbol(const GlobalValue *decl, bool isFunc) { 599 if (decl->getName().startswith("llvm.")) 603 if (isa<GlobalAlias>(decl)) 607 _mangler.getNameWithPrefix(name, decl, false); 620 if (decl->hasExternalWeakLinkage()) 626 info.symbol = decl;
|
/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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_ppc.c | [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_ppc.c | [all...] |
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/ |
mapi_abi.py | 398 decl = '%s %s %s(%s)' % (ent.c_return(), self.api_entry, 401 decl = export + ' ' + decl 403 decl += ' ' + self.api_attrs 405 return decl
|
/external/mesa3d/src/mapi/mapi/ |
mapi_abi.py | 398 decl = '%s %s %s(%s)' % (ent.c_return(), self.api_entry, 401 decl = export + ' ' + decl 403 decl += ' ' + self.api_attrs 405 return decl
|
/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...] |