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

12

/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:__anon12522::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/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/guava/guava/src/com/google/common/reflect/
H A DParameter.java38 private final Invokable<?, ?> declaration; field in class:Parameter
44 Invokable<?, ?> declaration,
48 this.declaration = declaration;
61 return declaration;
91 return position == that.position && declaration.equals(that.declaration);
43 Parameter( Invokable<?, ?> declaration, int position, TypeToken<?> type, Annotation[] annotations) argument
H A DTypes.java144 * Returns a new {@link TypeVariable} that belongs to {@code declaration} with
148 D declaration, String name, Type... bounds) {
150 declaration,
147 newArtificialTypeVariable( D declaration, String name, Type... bounds) 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/deqp/scripts/khr_util/
H A Dregistry.py75 declaration=None variable in class:Command
321 declaration=''.join(eParam.xpath('.//text()')).strip(),
333 declaration=''.join(eProto.xpath('.//text()')).strip(),
/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/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
H A Dscopes.cc429 VariableDeclaration* declaration = factory->NewVariableDeclaration( local
431 DeclareFunctionVar(declaration);
525 void Scope::AddDeclaration(Declaration* declaration) { argument
526 decls_.Add(declaration, zone());
552 // Iterate through all scopes until and including the declaration scope.
691 // and all declaration scopes between them have empty contexts. Such
692 // declaration scopes may become invisible during scope info deserialization.
H A Dscopes.h17 // A hash map to support fast variable declaration and lookup.
120 void DeclareFunctionVar(VariableDeclaration* declaration) { argument
122 function_ = declaration;
179 // Adds the specific declaration node to the list of declarations in
182 void AddDeclaration(Declaration* declaration);
201 // declarations, i.e. a var declaration that has been hoisted from a nested
469 // the 'eval' call site this scope is the declaration scope.
H A Dfull-codegen.cc590 ModuleDeclaration* declaration = declarations->at(i)->AsModuleDeclaration(); local
591 if (declaration != NULL) {
592 ModuleLiteral* module = declaration->module()->AsModuleLiteral();
716 // declaration of the global functions and variables.
/external/deqp/modules/gles2/functional/
H A Des2fShaderStateQueryTests.cpp1315 const char* declaration; member in struct:deqp::gles2::Functional::__anon3199::ProgramUniformCase::UniformType
1364 tcu::ScopedLogSection(m_log, uniformTypes[ndx].declaration, std::string("Verify type of ") + uniformTypes[ndx].declaration + " variable" + uniformTypes[ndx].postDeclaration );
1369 frag << uniformTypes[ndx].layout << "uniform " << uniformTypes[ndx].precision << " " << uniformTypes[ndx].declaration << " uniformValue" << uniformTypes[ndx].postDeclaration << ";\n";
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_build.c83 * declaration
88 struct tgsi_declaration *declaration,
91 assert( declaration->NrTokens < 0xFF );
93 declaration->NrTokens++;
101 struct tgsi_declaration declaration; local
103 declaration.Type = TGSI_TOKEN_TYPE_DECLARATION;
104 declaration.NrTokens = 1;
105 declaration.File = TGSI_FILE_NULL;
106 declaration.UsageMask = TGSI_WRITEMASK_XYZW;
107 declaration
87 declaration_grow( struct tgsi_declaration *declaration, struct tgsi_header *header ) argument
128 struct tgsi_declaration declaration; local
159 tgsi_build_declaration_range( unsigned first, unsigned last, struct tgsi_declaration *declaration, struct tgsi_header *header ) argument
179 tgsi_build_declaration_dimension(unsigned index_2d, struct tgsi_declaration *declaration, struct tgsi_header *header) argument
209 tgsi_build_declaration_interp(unsigned interpolate, unsigned centroid, unsigned cylindrical_wrap, struct tgsi_declaration *declaration, struct tgsi_header *header) argument
240 tgsi_build_declaration_semantic( unsigned semantic_name, unsigned semantic_index, struct tgsi_declaration *declaration, struct tgsi_header *header ) argument
274 tgsi_build_declaration_resource(unsigned texture, unsigned raw, unsigned writable, struct tgsi_declaration *declaration, struct tgsi_header *header) argument
307 tgsi_build_declaration_sampler_view(unsigned texture, unsigned return_type_x, unsigned return_type_y, unsigned return_type_z, unsigned return_type_w, struct tgsi_declaration *declaration, struct tgsi_header *header) argument
354 struct tgsi_declaration *declaration; local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderStateQueryTests.cpp1613 const char* declaration; member in struct:deqp::gles3::Functional::__anon3371::ProgramUniformCase::UniformType
1686 tcu::ScopedLogSection(m_log, uniformTypes[ndx].declaration, std::string("Verify type of ") + uniformTypes[ndx].declaration + " variable" + uniformTypes[ndx].postDeclaration );
1692 frag << uniformTypes[ndx].layout << "uniform " << uniformTypes[ndx].precision << " " << uniformTypes[ndx].declaration << " uniformValue" << uniformTypes[ndx].postDeclaration << ";\n";
/external/v8/src/arm/
H A Dfull-codegen-arm.cc797 // The variable in the declaration always resides in the current function
812 VariableDeclaration* declaration) {
816 VariableProxy* proxy = declaration->proxy();
817 VariableMode mode = declaration->mode();
876 FunctionDeclaration* declaration) {
877 VariableProxy* proxy = declaration->proxy();
883 Compiler::BuildFunctionInfo(declaration->fun(), script(), info_);
893 VisitForAccumulatorValue(declaration->fun());
901 VisitForAccumulatorValue(declaration->fun());
922 // Push initial value for function declaration
811 VisitVariableDeclaration( VariableDeclaration* declaration) argument
875 VisitFunctionDeclaration( FunctionDeclaration* declaration) argument
931 VisitModuleDeclaration(ModuleDeclaration* declaration) argument
962 VisitImportDeclaration(ImportDeclaration* declaration) argument
985 VisitExportDeclaration(ExportDeclaration* declaration) argument
[all...]

Completed in 865 milliseconds

12