HomeSort by relevance Sort by last modified time
    Searched refs:declarations (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /external/yaffs2/
Android.mk 13 LOCAL_CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
  /external/chromium_org/v8/test/mjsunit/harmony/
block-let-declaration.js 30 // Test let declarations in various settings.
55 // Invalid declarations are early errors in harmony mode and thus should trigger
66 // Test let declarations in statement positions.
76 // Test const declarations with initialisers in statement positions.
86 // Test const declarations without initialisers.
91 // Test const declarations without initialisers in statement positions.
101 // Test var declarations in statement positions.
111 // Test function declarations in source element and
129 // Test function declarations in statement position in strict mode.
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NamespaceSupport2.java 33 * 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.elements()
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NamespaceSupport.java 27 * tracks the declarations currently in force for each context and
59 * elements do not contain Namespace declarations: if the same
166 * the declarations of its parent context, but it will also keep
167 * track of which declarations were made within this context.
171 * For elements that don't include namespace declarations, the
184 * attributes to process all namespace declarations, making
262 * in two passes: first for namespace declarations,
275 * treated the declarations phase as complete by processing
308 * Process a raw XML qualified name, after all declarations in the
381 * Return an enumeration of all prefixes whose declarations ar
826 private ArrayList<String> declarations = null; field in class:NamespaceSupport.Context
    [all...]
  /external/chromium_org/v8/src/
prettyprinter.h 51 void PrintDeclarations(ZoneList<Declaration*>* declarations);
78 void PrintDeclarations(ZoneList<Declaration*>* declarations);
typing.h 75 void VisitDeclarations(ZoneList<Declaration*>* declarations);
prettyprinter.cc 595 void PrettyPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) {
596 for (int i = 0; i < declarations->length(); i++) {
598 Visit(declarations->at(i));
608 PrintDeclarations(function->scope()->declarations());
699 PrintDeclarations(program->scope()->declarations());
706 void AstPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) {
707 if (declarations->length() > 0) {
709 for (int i = 0; i < declarations->length(); i++) {
710 Visit(declarations->at(i));
generator.js 7 // This file relies on the fact that the following declarations have been made
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
svga_dump.py 39 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/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.py 39 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/clang/test/SemaTemplate/
temp_arg_template.cpp 38 expected-error{{C++ requires a type specifier for all declarations}}
  /external/yaffs2/yaffs2/utils/
Makefile 20 CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
  /external/dhcpcd/mk/
cc.mk 14 -Wmissing-declarations -Wno-missing-prototypes -Wwrite-strings \
  /external/tcpdump/
tcpdump-stdinc.h 271 # define USES_APPLE_DEPRECATED_API DIAG_OFF(deprecated-declarations)
272 # define USES_APPLE_RST DIAG_ON(deprecated-declarations)
  /system/keymaster/
Makefile 22 -Wmissing-declarations -ftest-coverage \
23 -Wno-deprecated-declarations -fno-exceptions -DKEYMASTER_NAME_TAGS \
138 $(GTEST)/src/gtest-all.o: CXXFLAGS:=$(subst -Wmissing-declarations,,$(CXXFLAGS))
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_program.c 133 assert(p->decl <= p->declarations + ARRAY_SIZE(p->declarations));
480 p->decl = p->declarations;
497 GLuint decl_size = p->decl - p->declarations;
534 p->declarations[0] |= program_size + decl_size - 2;
542 GLuint decl_size = p->decl - p->declarations;
553 memcpy(i915->state.Program, p->declarations, decl_size * sizeof(int));
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_program.c 133 assert(p->decl <= p->declarations + ARRAY_SIZE(p->declarations));
480 p->decl = p->declarations;
497 GLuint decl_size = p->decl - p->declarations;
534 p->declarations[0] |= program_size + decl_size - 2;
542 GLuint decl_size = p->decl - p->declarations;
553 memcpy(i915->state.Program, p->declarations, decl_size * sizeof(int));
  /external/chromium_org/third_party/mesa/src/src/glsl/
ast.h 465 exec_list declarations; member in class:ast_struct_specifier
529 exec_list declarations; member in class:ast_declarator_list
532 * Special flag for vertex shader "invariant" declarations.
811 declarations.push_degenerate_list_at_head(&member_list->link);
820 exec_list declarations; member in class:ast_uniform_block
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
create_test_cases.py 37 Global declarations are automatically created for any undeclared
42 declarations = {}
47 declarations[sexp[1]] = [
52 declarations[sexp[2][1]] = [
64 return declarations.values() + \
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1170.js 41 // Function declarations are treated specially to match Safari. We do
81 // Function declarations are treated specially to match Safari. We do
regress-fundecl.js 30 // Test hoisting of function declarations in the optimizing
  /external/mesa3d/src/glsl/
ast.h 465 exec_list declarations; member in class:ast_struct_specifier
529 exec_list declarations; member in class:ast_declarator_list
532 * Special flag for vertex shader "invariant" declarations.
811 declarations.push_degenerate_list_at_head(&member_list->link);
820 exec_list declarations; member in class:ast_uniform_block
  /external/mesa3d/src/glsl/tests/lower_jumps/
create_test_cases.py 37 Global declarations are automatically created for any undeclared
42 declarations = {}
47 declarations[sexp[1]] = [
52 declarations[sexp[2][1]] = [
64 return declarations.values() + \
  /external/chromium_org/v8/test/preparser/
symbols-only.js 28 // This file contains no function declarations.
  /external/chromium_org/v8/test/webkit/
declaration-in-block.js 25 "This test checks that declarations in an if block can be seen outside it."

Completed in 837 milliseconds

1 2 3 4 5 6 7