Searched defs:declarations (Results 1 - 25 of 30) sorted by relevance

12

/external/skia/src/sksl/ast/
H A DSkSLASTInterfaceBlock.h29 std::vector<std::unique_ptr<ASTVarDeclarations>> declarations,
35 , fDeclarations(std::move(declarations))
26 ASTInterfaceBlock(Position position, Modifiers modifiers, String typeName, std::vector<std::unique_ptr<ASTVarDeclarations>> declarations, String instanceName, std::vector<std::unique_ptr<ASTExpression>> sizes) argument
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py39 from pygccxml import declarations namespace
41 from pygccxml.declarations import algorithm
42 from pygccxml.declarations import decl_visitor
43 from pygccxml.declarations import type_traits
44 from pygccxml.declarations import type_visitor
323 global_ns = declarations.get_global_namespace(decls)
/external/python/cpython2/Tools/bgen/bgen/
H A DbgenGenerator.py178 self.declarations()
185 def declarations(self): member in class:FunctionGenerator
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNamespaceSupport2.java33 * namespace declarations currently in scope, providing lookup
109 * the declarations of its parent context, but it will also keep
110 * track of which declarations were made within this context.</p>
467 private Vector declarations = null; field in class:Context2
518 declarations = null;
541 if (declarations == null) {
542 declarations = new Vector();
557 declarations.addElement(prefix);
686 if (declarations == null) {
689 return declarations
[all...]
/external/v8/src/ast/
H A Dast-expression-rewriter.cc23 void AstExpressionRewriter::VisitDeclarations(Declaration::List* declarations) { argument
24 for (Declaration::List::Iterator it = declarations->begin();
25 it != declarations->end(); ++it) {
189 VisitDeclarations(node->scope()->declarations());
H A Dprettyprinter.cc657 PrintDeclarations(program->scope()->declarations());
671 void AstPrinter::PrintDeclarations(Declaration::List* declarations) { argument
672 if (!declarations->is_empty()) {
674 for (Declaration* decl : *declarations) Visit(decl);
H A Dscopes.h51 // Sloppy block-scoped function declarations to var-bind
87 // declarations. This includes script, module, eval, varblock, and function
135 // block scoped declarations. In that case it is removed from the scope
188 ThreadedList<Declaration>* declarations() { return &decls_; } function in class:v8::internal::Scope
220 // declarations, i.e. a var declaration that has been hoisted from a nested
252 // Inform the scope that the scope may execute declarations nonlinearly.
332 // Does this scope have the potential to execute declarations non-linearly?
392 // the scope where var declarations will be hoisted to in the implementation.
543 // This scope's declarations might not be executed in order (e.g., switch).
552 // True if it holds 'var' declarations
[all...]
H A Dast.h115 // Forward declarations
527 // Declarations list threaded through the declarations.
3002 void VisitDeclarations(Declaration::List* declarations) { argument
3003 for (Declaration* decl : *declarations) Visit(decl);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc.h62 uint declarations[I915_PROGRAM_SIZE]; member in struct:i915_fp_compile
67 uint *decl; /**< Cursor, points into declarations. */
/external/v8/src/runtime/
H A Druntime-scopes.cc66 // For function declarations, use the interceptor on the declaration. For
76 // The name was declared before; check for conflicting re-declarations.
78 // Skip var re-declarations.
132 Object* DeclareGlobals(Isolate* isolate, Handle<FixedArray> declarations, argument
139 int length = declarations->length();
141 Handle<String> name(String::cast(declarations->get(i)), isolate);
142 FeedbackSlot slot(Smi::cast(declarations->get(i + 1))->value());
143 Handle<Object> possibly_literal_slot(declarations->get(i + 2), isolate);
144 Handle<Object> initial_value(declarations->get(i + 3), isolate);
193 CONVERT_ARG_HANDLE_CHECKED(FixedArray, declarations,
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_context.h166 /* declarations contains the packet header. */
167 GLuint declarations[I915_MAX_DECL_INSN * 3 + 1]; member in struct:i915_fragment_program
177 GLuint *decl; /* Cursor, points into declarations.
/external/mesa3d/src/compiler/glsl/
H A Dast.h340 exec_list declarations; member in class:ast_subroutine_list
822 exec_list declarations; member in class:ast_struct_specifier
892 exec_list declarations; member in class:ast_declarator_list
1189 exec_list declarations; member in class:ast_interface_block
H A Dast_to_hir.cpp161 /* Move all of the variable declarations to the front of the IR list, and
845 * declarations.
2347 * (scalar, vector, and matrix) declarations. If type is int, the directive
2349 * and unsigned) declarations."
3648 * (not with variable declarations)
3703 "subroutine type declarations, or function definitions");
3734 /* Disallow layout qualifiers which may only appear on layout declarations. */
3949 * FINISHME: declarations. It's not 100% clear whether this is
4289 * All geometry shader input unsized array declarations will be
4377 * input declarations
6673 ast_process_struct_or_iface_block_members(exec_list *instructions, struct _mesa_glsl_parse_state *state, exec_list *declarations, glsl_struct_field **fields_ret, bool is_interface, enum glsl_matrix_layout matrix_layout, bool allow_reserved_names, ir_variable_mode var_mode, ast_type_qualifier *layout, unsigned block_stream, unsigned block_xfb_buffer, unsigned block_xfb_offset, unsigned expl_location, unsigned expl_align) argument
[all...]
/external/v8/src/full-codegen/
H A Dfull-codegen.cc463 void FullCodeGenerator::VisitDeclarations(Declaration::List* declarations) { argument
468 AstVisitor<FullCodeGenerator>::VisitDeclarations(declarations);
1566 codegen_->VisitDeclarations(scope->declarations());
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c1116 struct tgsi_full_declaration *declarations; local
1185 declarations = (struct tgsi_full_declaration *)
1188 if (!declarations) {
1196 FREE( declarations );
1208 declarations = REALLOC(declarations,
1228 memcpy(declarations + numDeclarations,
1230 sizeof(declarations[0]));
1282 mach->Declarations = declarations;
6277 /* execute declarations (interpolant
[all...]
/external/v8/src/compiler/
H A Dast-graph-builder.cc429 // Visit declarations within the function scope.
430 VisitDeclarations(scope->declarations());
1009 // Visit statements in the same scope, no declarations.
1012 // Visit declarations and statements in a block scope.
1016 VisitDeclarations(stmt->scope()->declarations());
1019 VisitDeclarations(stmt->scope()->declarations());
2073 void AstGraphBuilder::VisitDeclarations(Declaration::List* declarations) { argument
2075 AstVisitor<AstGraphBuilder>::VisitDeclarations(declarations);
/external/v8/src/interpreter/
H A Dbytecode-generator.cc654 Handle<FixedArray> declarations = local
656 if (declarations.is_null()) return SetStackOverflow();
658 globals_builder->constant_pool_entry(), declarations);
768 // Visit declarations within the function scope.
769 VisitDeclarations(closure_scope()->declarations());
863 // Visit declarations and statements.
878 VisitDeclarations(stmt->scope()->declarations());
1001 void BytecodeGenerator::VisitDeclarations(Declaration::List* declarations) { argument
1004 for (Declaration* decl : *declarations) {
3454 DCHECK(scope->declarations()
[all...]
/external/v8/src/parsing/
H A Dparser-base.h587 : declarations(4),
592 List<Declaration> declarations; member in struct:v8::internal::ParseFunctionFlags::ParserBase::DeclarationParsingResult
1340 // in case it includes declarations that will be hoisted.
3749 parsing_result->declarations.Add(decl);
4988 // ES#sec-labelled-function-declarations Labelled Function Declarations
5356 // Create a block scope to hold any lexical declarations created
5421 // The initializer contains declarations.
5438 // The initializer does not contain declarations.
5474 if (for_info->parsing_result.declarations.length() != 1) {
5486 for_info->parsing_result.declarations[
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-instructions.h28 // Forward declarations.
1950 Handle<FixedArray> declarations() const { return declarations_; } function in class:final
1961 HDeclareGlobals(HValue* context, Handle<FixedArray> declarations, int flags, argument
1964 declarations_(declarations),
H A Dhydrogen.cc3981 VisitDeclarations(scope->declarations());
4200 // not have declarations).
4264 VisitDeclarations(scope->declarations());
8170 // All declarations must be inlineable.
8171 Declaration::List* decls = target_info.scope()->declarations();
8258 VisitDeclarations(target_info.scope()->declarations());
11885 Declaration::List* declarations) {
11887 AstVisitor<HOptimizedGraphBuilder>::VisitDeclarations(declarations);
11884 VisitDeclarations( Declaration::List* declarations) argument
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/guice/lib/build/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/xml/ javax/xml/parsers/ META-INF/services/ ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 7609 milliseconds

12