Home
last modified time | relevance | path

Searched refs:declarations (Results 1 – 25 of 508) sorted by relevance

12345678910>>...21

/external/clang/test/SemaObjCXX/
Dobjc-decls-inside-namespace.mm5 @protocol P; //expected-error{{Objective-C declarations may only appear in global scope}}
7 @class Bar; //expected-error{{Objective-C declarations may only appear in global scope}}
9 @compatibility_alias Foo Bar; //expected-error{{Objective-C declarations may only appear in global …
11 @interface A //expected-error{{Objective-C declarations may only appear in global scope}}
14 @implementation A //expected-error{{Objective-C declarations may only appear in global scope}}
17 @protocol P //expected-error{{Objective-C declarations may only appear in global scope}}
20 @interface A(C) //expected-error{{Objective-C declarations may only appear in global scope}}
23 @implementation A(C) //expected-error{{Objective-C declarations may only appear in global scope}}
26 @interface B @end //expected-error{{Objective-C declarations may only appear in global scope}}
27 @implementation B //expected-error{{Objective-C declarations may only appear in global scope}}
/external/apache-xml/src/main/java/org/apache/xml/utils/
DNamespaceSupport2.java467 private Vector declarations = null; field in Context2
518 declarations = null; in setParent()
541 if (declarations == null) { in declarePrefix()
542 declarations = new Vector(); in declarePrefix()
557 declarations.addElement(prefix); in declarePrefix()
686 if (declarations == null) { in getDeclaredPrefixes()
689 return declarations.elements(); in getDeclaredPrefixes()
/external/mesa3d/src/gallium/drivers/svga/svgadump/
Dsvga_dump.py39 from pygccxml import declarations
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/deqp/data/gles31/shaders/
Dlinkage_shader_storage_block.test4 desc "Shader storage block mismatch: different number of declarations"
43 desc "Shader storage block mismatch: different number of declarations"
83 desc "Shader storage block mismatch: different number of declarations"
121 desc "Shader storage block mismatch: different number of declarations"
159 desc "Shader storage block mismatch: different number of declarations"
197 desc "Shader storage block mismatch: different number of declarations"
235 desc "Shader storage block mismatch: different number of declarations"
273 desc "Shader storage block mismatch: different number of declarations"
/external/clang/test/CodeGenObjC/
Dobjc-asm-attribute-neg-test.m10 …expected-error {{'objc_runtime_name' attribute only applies to interface or protocol declarations}}
16 …expected-error {{'objc_runtime_name' attribute only applies to interface or protocol declarations}}
18 …expected-error {{'objc_runtime_name' attribute only applies to interface or protocol declarations}}
/external/clang/test/SemaObjC/
Dobjc-asm-attribute-neg-test.m18 …expected-error {{'objc_runtime_name' attribute only applies to interface or protocol declarations}}
24 …expected-error {{'objc_runtime_name' attribute only applies to interface or protocol declarations}}
26 …expected-error {{'objc_runtime_name' attribute only applies to interface or protocol declarations}}
Dattr-designated-init.m6 …ER; // expected-error {{only applies to init methods of interface or class extension declarations}}
9 …ER; // expected-error {{only applies to init methods of interface or class extension declarations}}
14 …ER; // expected-error {{only applies to init methods of interface or class extension declarations}}
16 …ER; // expected-error {{only applies to init methods of interface or class extension declarations}}
20 …ER; // expected-error {{only applies to init methods of interface or class extension declarations}}
29 …; } // expected-error {{only applies to init methods of interface or class extension declarations}}
32 …} // expected-error {{only applies to init methods of interface or class extension declarations}} \
429 …ZER; // expected-error{{only applies to init methods of interface or class extension declarations}}
Dmethod-prototype-scope.m10 … // expected-warning {{use of C-style parameters in Objective-C method declarations is deprecated}}
26 … // expected-warning {{use of C-style parameters in Objective-C method declarations is deprecated}}
/external/clang/docs/
DPCHInternals.rst98 20/82685 declarations read (0.024188%)
109 declarations, identifiers, and macros were actually deserialized from the
268 The declarations block contains the serialized representation of all of the
269 declarations referenced in the translation unit. Each Clang declaration node
271 AST file. When declarations are deserialized from the AST file, the data
280 which contains all of the declarations in the translation unit but is not
281 actually written as a specific declaration node. Its child declarations (such
282 as functions or struct types) may also contain other declarations inside them,
287 iterate over the declarations stored within a context (e.g., iterate over all
292 declarations stored within that declaration context. Therefore, Clang will
[all …]
/external/v8/tools/
Dexternal-reference-check.py36 declarations = Find(DECLARE_FILE, DECLARE_RE)
38 difference = list(set(declarations) - set(registrations) - set(BLACKLISTED))
/external/libchrome/sandbox/mac/
Dxpc_private_stubs.sig5 // This file contains declarations of private XPC functions. This file is
6 // used for both forward declarations of private symbols and to use with
/external/mesa3d/src/mesa/drivers/dri/i915/
Di915_program.c133 assert(p->decl <= p->declarations + ARRAY_SIZE(p->declarations)); in i915_emit_decl()
480 p->decl = p->declarations; in i915_init_program()
497 GLuint decl_size = p->decl - p->declarations; in i915_fini_program()
534 p->declarations[0] |= program_size + decl_size - 2; in i915_fini_program()
542 GLuint decl_size = p->decl - p->declarations; in i915_upload_program()
553 memcpy(i915->state.Program, p->declarations, decl_size * sizeof(int)); in i915_upload_program()
/external/compiler-rt/test/asan/TestCases/Darwin/
Daddress-range-limit.mm3 // RUN: %clang_asan %s -Wno-deprecated-declarations -flat_namespace -bundle -undefined suppress -o …
4 // RUN: %clang_asan %s -Wno-deprecated-declarations -o %t -framework Foundation && not %run %t 2>&1…
/external/opencv3/modules/highgui/
DCMakeLists.txt70 ocv_check_flag_support(CXX -Wno-missing-declarations _have_flag)
72 set_source_files_properties(${_RCC_OUTFILES} PROPERTIES COMPILE_FLAGS -Wno-missing-declarations)
122 ocv_warnings_disable(CMAKE_CXX_FLAGS -Wno-deprecated-declarations)
/external/tlsdate/m4/
Dvisibility.m442 dnl Now check whether visibility declarations are supported.
43 AC_MSG_CHECKING([for simple visibility declarations])
76 [Define to 1 or 0, depending whether the compiler supports simple visibility declarations.])
/external/clang/test/Parser/
Dmissing-end-4.m35 @protocol P; // forward declarations of protocols in @implementations is allowed
36 @class C; // forward declarations of classes in @implementations is allowed
/external/v8/src/ast/
Dast-numbering.cc41 void VisitDeclarations(ZoneList<Declaration*>* declarations) override;
255 if (node->scope() != NULL) VisitDeclarations(node->scope()->declarations()); in VisitBlock()
538 ZoneList<Declaration*>* declarations) { in VisitDeclarations() argument
539 for (int i = 0; i < declarations->length(); i++) { in VisitDeclarations()
540 Visit(declarations->at(i)); in VisitDeclarations()
594 VisitDeclarations(scope->declarations()); in Renumber()
Dast-expression-rewriter.cc24 ZoneList<Declaration*>* declarations) { in VisitDeclarations() argument
25 for (int i = 0; i < declarations->length(); i++) { in VisitDeclarations()
26 AST_REWRITE_LIST_ELEMENT(Declaration, declarations, i); in VisitDeclarations()
203 VisitDeclarations(node->scope()->declarations()); in VisitFunctionLiteral()
Dprettyprinter.h90 void PrintDeclarations(ZoneList<Declaration*>* declarations);
118 void PrintDeclarations(ZoneList<Declaration*>* declarations);
/external/pcre/dist/m4/
Dpcre_visibility.m445 dnl Now check whether visibility declarations are supported.
46 AC_MSG_CHECKING([for simple visibility declarations])
88 [Define to 1 if the compiler supports simple visibility declarations.])
/external/deqp/doc/testspecs/GLES3/
Dfunctional.ubo.txt24 + dEQP-GLES3.functional.shaders.declarations.invalid_declarations.uniform_block*
43 - Negative tests for syntax and semantic errors in declarations
61 Shaders are generated based on uniform declarations and use set. Each uniform that
/external/mesa3d/src/glsl/
Dglsl_parser.yy956 $$->declarations.push_tail(&decl->link);
966 $$->declarations.push_tail(&decl->link);
976 $$->declarations.push_tail(&decl->link);
986 $$->declarations.push_tail(&decl->link);
996 $$->declarations.push_tail(&decl->link);
1006 $$->declarations.push_tail(&decl->link);
1027 $$->declarations.push_tail(&decl->link);
1036 $$->declarations.push_tail(&decl->link);
1045 $$->declarations.push_tail(&decl->link);
1054 $$->declarations.push_tail(&decl->link);
[all …]
/external/selinux/libselinux/utils/
DMakefile12 -Wmissing-declarations -Wmissing-noreturn -Wmissing-format-attribute \
16 -Wdeprecated-declarations -Wdiv-by-zero -Wdouble-promotion -Wendif-labels -Wextra \
/external/mesa3d/src/glsl/tests/lower_jumps/
Dcreate_test_cases.py42 declarations = {}
47 declarations[sexp[1]] = [
52 declarations[sexp[2][1]] = [
64 return declarations.values() + \
/external/tcpdump/
Dtcpdump-stdinc.h334 # define USES_APPLE_DEPRECATED_API DIAG_OFF(deprecated-declarations)
335 # define USES_APPLE_RST DIAG_ON(deprecated-declarations)

12345678910>>...21