Searched defs:declaration (Results 1 - 25 of 58) sorted by relevance

123

/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_variable_refcount.h50 bool declaration; /* If the variable had a decl in the instruction stream */ member in class:ir_variable_refcount_entry
H A Dopt_structure_splitting.cpp56 this->declaration = false;
70 bool declaration; member in class:__anon14273::variable_entry2
132 entry->declaration = true;
327 entry->var->name, (void *) entry->var, entry->declaration,
331 if (!entry->declaration || entry->whole_structure_access) {
H A Dopt_array_splitting.cpp53 this->declaration = false;
72 bool declaration; member in class:opt_array_splitting::variable_entry
152 entry->declaration = true;
228 entry->var->name, (void *) entry->var, entry->declaration,
232 if (!(entry->declaration && entry->split)) {
/external/mesa3d/src/glsl/
H A Dir_variable_refcount.h50 bool declaration; /* If the variable had a decl in the instruction stream */ member in class:ir_variable_refcount_entry
H A Dopt_structure_splitting.cpp56 this->declaration = false;
70 bool declaration; member in class:__anon27684::variable_entry2
132 entry->declaration = true;
327 entry->var->name, (void *) entry->var, entry->declaration,
331 if (!entry->declaration || entry->whole_structure_access) {
H A Dopt_array_splitting.cpp53 this->declaration = false;
72 bool declaration; member in class:opt_array_splitting::variable_entry
152 entry->declaration = true;
228 entry->var->name, (void *) entry->var, entry->declaration,
232 if (!(entry->declaration && entry->split)) {
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorInstrumentation.h179 inline InstrumentingAgents* instrumentingAgentsFor(CSSStyleDeclaration* declaration) argument
181 return declaration ? instrumentingAgentsFor(declaration->parentStyleSheet()) : 0;
/external/clang/docs/tools/
H A Ddump_ast_matchers.py126 def act_on_decl(declaration, comment, allowed_types):
127 """Parse the matcher out of the given declaration and comment.
133 if declaration.strip():
139 \s*([^\s;]+)\s*;\s*$""", declaration, flags=re.X)
152 \)\s*;\s*$""", declaration, flags=re.X)
167 \)\s*;\s*$""", declaration, flags=re.X)
191 \)\s*{\s*$""", declaration, flags=re.X)
200 raise Exception('Cannot parse "%s"' % declaration)
215 \)\s*{\s*$""", declaration, flags=re.X)
220 raise Exception('Cannot parse "%s"' % declaration)
323 declaration = '' variable
332 declaration = '' variable
352 declaration = '' variable
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParser.cpp19 bool CSSParser::parseDeclaration(MutableStylePropertySet* propertySet, const String& declaration, CSSParserObserver* observer, StyleSheetContents* styleSheet) argument
21 return m_bisonParser.parseDeclaration(propertySet, declaration, observer, styleSheet);
39 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode parserMode, StyleSheetContents* styleSheet) argument
41 return BisonCSSParser::parseValue(declaration, propertyID, string, important, parserMode, styleSheet);
44 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, const CSSParserContext& context) argument
46 return BisonCSSParser::parseValue(declaration, propertyID, string, important, context);
H A DBisonCSSParser.h222 StyleDeclarationScope(BisonCSSParser* parser, const StylePropertySet* declaration) argument
224 , m_mode(declaration->cssParserMode())
H A DCSSGrammar.y343 %type <boolean> declaration
816 // We just need to know if the declaration is supported as it is written. Rollback any additions.
1485 | declaration
1486 | decl_list declaration {
1493 declaration ';' maybe_space {
1497 | decl_list declaration ';' maybe_space {
1503 declaration: label
1522 /* When we encounter something like p {color: red !important fail;} we should drop the declaration */
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DRewriteElseBlocks.cpp140 TIntermAggregate *declaration = new TIntermAggregate(EOpDeclaration); local
141 declaration->getSequence()->push_back(storeCondition);
144 block->getSequence()->push_back(declaration);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_vector_splitting.cpp59 this->declaration = false;
68 bool declaration; /* If the variable had a decl in the instruction stream */ member in class:variable_entry
143 entry->declaration = true;
349 entry->var->name, (void *) entry->var, entry->declaration,
353 if (!entry->declaration || entry->whole_vector_access) {
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dsymbol_table.c328 void *declaration)
367 sym->data = declaration;
383 void *declaration)
430 sym->data = declaration;
326 _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) argument
381 _mesa_symbol_table_add_global_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_vector_splitting.cpp59 this->declaration = false;
68 bool declaration; /* If the variable had a decl in the instruction stream */ member in class:variable_entry
143 entry->declaration = true;
349 entry->var->name, (void *) entry->var, entry->declaration,
353 if (!entry->declaration || entry->whole_vector_access) {
/external/mesa3d/src/mesa/program/
H A Dsymbol_table.c328 void *declaration)
367 sym->data = declaration;
383 void *declaration)
430 sym->data = declaration;
326 _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) argument
381 _mesa_symbol_table_add_global_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) argument
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
H A DTraceSignatureVisitor.java44 private final StringBuffer declaration; field in class:TraceSignatureVisitor
79 this.declaration = new StringBuffer();
83 this.declaration = buf;
87 declaration.append(seenFormalParameter ? ", " : "<").append(name);
124 declaration.append(", ");
127 declaration.append('(');
138 declaration.append('(');
140 declaration.append(')');
158 declaration.append("void");
161 declaration
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinitionUtil.hpp48 VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.declaration = decl; }
59 const glu::VariableDeclaration* getDeclaration (void) const { DE_ASSERT(isDeclaration()); return m_data.declaration; }
75 const glu::VariableDeclaration* declaration; member in union:deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent::Data
/external/tinyxml/
H A Dxmltest.cpp385 TiXmlDeclaration* declaration = doc.FirstChild()->ToDeclaration(); local
386 assert( declaration );
397 XmlTest( "Location tracking: Declaration row", declaration->Row(), 1 );
398 XmlTest( "Location tracking: Declaration col", declaration->Column(), 5 );
623 XmlTest( "Copy/Assign: declaration copy.", "UTF-8", decCopy.Encoding() );
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar ... abstract boolean sourceFilesCreated () public abstract boolean classFilesCreated () } com/sun/mirror/declaration/ com/sun/mirror/declaration/AnnotationMirror.class AnnotationMirror.java ...
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCTP.java56 // SimpleCTP.g:8:1: program : ( declaration )+ ;
59 // SimpleCTP.g:9:5: ( ( declaration )+ )
60 // SimpleCTP.g:9:9: ( declaration )+
62 // SimpleCTP.g:9:9: ( declaration )+
76 // SimpleCTP.g:9:9: declaration
79 declaration();
111 // $ANTLR start "declaration"
112 // SimpleCTP.g:12:1: declaration : ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) );
113 public final void declaration() throws RecognitionException { method in class:SimpleCTP
200 // $ANTLR end "declaration"
[all...]
H A DSimpleCParser.java71 // SimpleC.g:16:1: program : ( declaration )+ ;
83 // SimpleC.g:17:5: ( ( declaration )+ )
84 // SimpleC.g:17:9: ( declaration )+
88 // SimpleC.g:17:9: ( declaration )+
102 // SimpleC.g:17:9: declaration
105 declaration1=declaration();
149 // $ANTLR start "declaration"
150 // SimpleC.g:20:1: declaration : ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) );
151 public final SimpleCParser.declaration_return declaration() throws RecognitionException { method in class:SimpleCParser
296 // $ANTLR end "declaration"
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCTP.java56 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:8:1: program : ( declaration )+ ;
59 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:9:5: ( ( declaration )+ )
60 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:9:9: ( declaration )+
62 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:9:9: ( declaration )+
76 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:9:9: declaration
79 declaration();
111 // $ANTLR start "declaration"
112 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:12:1: declaration : ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) );
113 public final void declaration() throws RecognitionException { method in class:SimpleCTP
200 // $ANTLR end "declaration"
[all...]
H A DSimpleCParser.java71 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:16:1: program : ( declaration )+ ;
83 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:17:5: ( ( declaration )+ )
84 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:17:9: ( declaration )+
88 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:17:9: ( declaration )+
102 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:17:9: declaration
105 declaration1=declaration();
149 // $ANTLR start "declaration"
150 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:20:1: declaration : ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) );
151 public final SimpleCParser.declaration_return declaration() throws RecognitionException { method in class:SimpleCParser
296 // $ANTLR end "declaration"
[all...]
/external/chromium_org/v8/src/
H A Dtyping.cc40 // Handle implicit declaration of the function name in named function
740 void AstTyper::VisitVariableDeclaration(VariableDeclaration* declaration) { argument
744 void AstTyper::VisitFunctionDeclaration(FunctionDeclaration* declaration) { argument
745 RECURSE(Visit(declaration->fun()));
749 void AstTyper::VisitModuleDeclaration(ModuleDeclaration* declaration) { argument
750 RECURSE(Visit(declaration->module()));
754 void AstTyper::VisitImportDeclaration(ImportDeclaration* declaration) { argument
755 RECURSE(Visit(declaration->module()));
759 void AstTyper::VisitExportDeclaration(ExportDeclaration* declaration) { argument

Completed in 525 milliseconds

123