HomeSort by relevance Sort by last modified time
    Searched full:definition (Results 126 - 150 of 14896) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/test/SemaCXX/
out-of-line-def-mismatch.cpp 10 void func(S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('N2::S1 *' vs 'N2::N1::S1 *')}}
11 void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaration does not match definition ('const N2::S1 *' vs 'const N2::N1::S1 *')}}
12 void func(const S1*, unsigned); //expected-note {{type of 1st parameter of member declaration does not match definition ('const N2::S1 *' vs 'N2::N1::S1')}}
13 void func(unsigned, const S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('unsigned int' vs 'unsigned int *')}}
20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
23 void N2::N1::S2::func(S1, unsigned) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
24 void N2::N1::S2::func(unsigned*, S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
typedef-redecl.cpp 3 typedef INT REALLY_INT; // expected-note {{previous definition is here}}
9 typedef int result_type; // expected-note {{previous definition is here}}
13 struct Y; // expected-note{{previous definition is here}}
17 struct Y2; // expected-error{{definition of type 'Y2' conflicts with typedef of the same name}}
19 void f(); // expected-note{{previous definition is here}}
22 typedef int f2; // expected-note{{previous definition is here}}
59 typedef T f(T t) { return t; } // expected-error {{function definition declared 'typedef'}}
70 typedef int q[C == 1 ? 1 : -1]; // expected-note{{previous definition is here}}
82 typedef int q[1]; // expected-note{{previous definition is here}}
  /external/annotation-tools/scene-lib/src/annotations/field/
AnnotationAFT.java 12 * annotation field and contains the definition of the subannotation.
17 * The definition of the subannotation.
23 * given definition.
39 * <code>&#64;Foo</code> even though the subannotation definition is
42 * index file and the subannotation definition is written separately.
  /external/clang/test/Sema/
crash-invalid-array.c 18 void foo(int a[*][2]) {(void)a[0][1]; } // expected-error {{variable length array must be bound in function definition}}
19 void foo1(int a[2][*]) {(void)a[0][1]; } // expected-error {{variable length array must be bound in function definition}}
20 void foo2(int a[*][*]) {(void)a[0][1]; } // expected-error {{variable length array must be bound in function definition}}
21 void foo3(int a[2][*][2]) {(void)a[0][1][1]; } // expected-error {{variable length array must be bound in function definition}}
22 void foo4(int a[2][*][*]) {(void)a[0][1][1]; } // expected-error {{variable length array must be bound in function definition}}
attr-ifunc.c 17 //expected-error@-1 {{ifunc definition is part of a cycle}}
19 //expected-error@-1 {{ifunc definition is part of a cycle}}
22 //expected-warning@-1 {{ifunc will always resolve to f3_c even if weak definition of f3_b is overridden}}
37 //expected-note@-1 {{previous definition is here}}
39 //expected-error@-1 {{definition with same mangled name as another definition}}
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
labels.s 21 * #1, First definition of local label 'lab'
27 * #3, Next definition; exit from .copy clears all locals
30 * #4, Next definition is within macro; supersedes previous definition while
38 * This reference should resolve to definition #3
  /external/clang/test/Index/
index-file.cu 7 // CHECK-ANY: macro definition=__cplusplus
8 // CHECK-HOST-NOT: macro definition=__CUDA_ARCH__
9 // CHECK-DEVICE: macro definition=__CUDA_ARCH__
annotate-tokens.cpp 41 // CHECK: Keyword: "struct" [1:1 - 1:7] StructDecl=bonk:1:8 (Definition)
42 // CHECK: Identifier: "bonk" [1:8 - 1:12] StructDecl=bonk:1:8 (Definition)
43 // CHECK: Punctuation: "{" [1:13 - 1:14] StructDecl=bonk:1:8 (Definition)
44 // CHECK: Punctuation: "}" [1:15 - 1:16] StructDecl=bonk:1:8 (Definition)
46 // CHECK: Keyword: "void" [2:1 - 2:5] FunctionDecl=test:2:6 (Definition)
47 // CHECK: Identifier: "test" [2:6 - 2:10] FunctionDecl=test:2:6 (Definition)
48 // CHECK: Punctuation: "(" [2:10 - 2:11] FunctionDecl=test:2:6 (Definition)
50 // CHECK: Identifier: "X" [2:16 - 2:17] ParmDecl=X:2:16 (Definition)
51 // CHECK: Punctuation: ")" [2:17 - 2:18] FunctionDecl=test:2:6 (Definition)
65 // CHECK: Keyword: "struct" [7:1 - 7:7] StructDecl=X:7:8 (Definition)
    [all...]
invalid-rdar-8236270.cpp 9 // CHECK: VarDecl=P:5:13 (Definition) Extent=[5:1 - 5:14]
10 // CHECK: VarDecl=main:6:5 (Definition) Extent=[6:1 - 6:9]
print-type-cxx11.cpp 7 // CHECK: CXXMethod=f:2:8 (Definition) [type=void () {{.*}}&] [typekind=FunctionProto] lvalue-ref-qualifier [resulttype=void] [resulttypekind=Void] [isPOD=0]
8 // CHECK: CXXMethod=f:3:8 (Definition) [type=void () {{.*}}&&] [typekind=FunctionProto] rvalue-ref-qualifier [resulttype=void] [resulttypekind=Void] [isPOD=0]
  /external/clang/test/Modules/
elaborated-type-specifier-from-hidden-module.m 7 // FIXME: compatible definition should not be an error.
10 // Incompatible definition.
12 // expected-note@elaborated-type-structs.h:* 2 {{previous definition is here}}
  /external/clang/test/PCH/
chain-implicit-definition.cpp 15 // Key function to suppress vtable definition.
23 // Causes definition of ~B(), but it was lost when saving PCH.
36 // VTable placement would again cause definition of ~B(), hiding the bug,
  /external/clang/test/SemaObjC/
method-typecheck-3.m 6 - (B*)a; // expected-note {{previous definition is here}}
7 - (void)takesA: (A*)a; // expected-note {{previous definition is here}}
8 - (void)takesId: (id)a; // expected-note {{previous definition is here}}
method-undefined-warn-1.m 11 @implementation INTF // expected-warning {{method definition for 'int_meth' not found}} \
12 // expected-warning {{method definition for 'cls_meth' not found}} \
13 // expected-warning {{method definition for 'cls_meth1:' not found}}
27 @implementation INTF1 // expected-warning {{method definition for 'int_meth' not found}} \
28 // expected-warning {{method definition for 'cls_meth' not found}} \
29 // expected-warning {{method definition for 'cls_meth1:' not found}}
  /external/libnl/etc/
classid 9 # <MAJ:> <NAME> # qdisc definition
11 # <NAME:MIN> <NAME> # class definition referencing an
12 # existing qdisc definition.
  /frameworks/av/services/audiopolicy/engineconfigurable/wrapper/config/
audio_policy_criteria.conf 48 # DO NOT CHANGE ORDER. This definition must be aligned with the definition of
53 # DO NOT CHANGE ORDER. This definition must be aligned with the definition of
62 # The values of the mode MUST be aligned with the definition of the audio_mode_t
67 # The values of the mode MUST be aligned with the definition of the
72 # The values of the mode MUST be aligned with the definition of the
77 # The values of the mode MUST be aligned with the definition of the
82 # The values of the mode MUST be aligned with the definition of the
87 # The values of the mode MUST be aligned with the definition of th
    [all...]
  /external/curl/lib/
curl_setup_once.h 106 * Definition of timeval struct for platforms that don't have it.
253 * Function-like macro definition used to close a socket.
383 * Convenience SIG_ATOMIC_T definition
443 #undef EBADF /* override definition in errno.h */
445 #undef EINTR /* override definition in errno.h */
447 #undef EINVAL /* override definition in errno.h */
449 #undef EWOULDBLOCK /* override definition in errno.h */
451 #undef EINPROGRESS /* override definition in errno.h */
453 #undef EALREADY /* override definition in errno.h */
455 #undef ENOTSOCK /* override definition in errno.h *
    [all...]
  /external/skia/tools/bookmaker/
bookmaker.h 238 class Definition;
277 TextParser(const Definition* );
473 // since a.b can't be found as a named definition
721 class Definition : public NonAssignable {
776 Definition() {}
778 Definition(const char* start, const char* end, int line, Definition* parent)
792 Definition(MarkType markType, const char* start, int line, Definition* parent)
793 : Definition(markType, start, nullptr, line, parent)
    [all...]
  /external/libxml2/result/schemas/
derivation-ok-restriction-2-1-1_0_0.err 1 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type, attribute use 'barB_1': The 'optional' attribute use is inconsistent with the corresponding 'required' attribute use of the base complex type definition '{http://FOO}typeA'.
2 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type, attribute use 'barC_1': Neither a matching attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typeA'.
3 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type, attribute use 'barC_2': Neither a matching attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typeA'.
4 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type, attribute use 'barD_1': Neither a matching attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typeA'.
5 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type, attribute use 'barD_2': Neither a matching attribute use, nor a matching wildcard exists in the base complex type definition '{http://FOO}typeA'.
6 ./test/schemas/derivation-ok-restriction-2-1-1_0.xsd:6: element complexType: Schemas parser error : local complex type: A matching attribute use for the 'required' attribute use 'barB_3' of the base complex type definition '{http://FOO}typeA' is missing.
  /bionic/tools/versioner/tests/multiple_definition/
expected_fail 3 static definition @ headers/foo.h:5:1
5 static definition @ headers/bar.h:5:1
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/arm/cryptocell/
cc_pal_sb_plat.h 23 /*! Definition of DMA address type, can be 32 bits or 64 bits according to CryptoCell's HW. */
25 /*! Definition of CryptoCell address type, can be 32 bits or 64 bits according to platform. */
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p15.cpp 8 C::C(int a, // expected-note {{previous definition}}
9 int b) // expected-note {{previous definition}}
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p9-0x.cpp 5 // definition), and recover with a "type cannot be defined in a trailing return
7 auto j() -> enum { e3 }; // expected-error{{unnamed enumeration must be a definition}} expected-error {{expected a type}}
  /external/clang/test/CXX/temp/temp.spec/
cxx1y-variable-template-no-body.cpp 16 // Should recover as if definition
17 template double pi_var = 5; // expected-error {{variable cannot be defined in an explicit instantiation; if this declaration is meant to be a variable definition, remove the 'template' keyword}}
20 T pi0 = T(3.1415926535897932385); // expected-note {{previous definition is here}}
22 template int pi0 = 10; // expected-error {{variable cannot be defined in an explicit instantiation; if this declaration is meant to be a variable definition, remove the 'template' keyword}} \
30 template float pi1<float> = 1.0; // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}}
34 template int pi1<int> = 10; // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}} \
  /external/clang/test/Misc/
error-limit.c 12 // CHECK: 4:8: note: previous definition is here
15 // CHECK-NOT: 8:8: note: previous definition is here

Completed in 723 milliseconds

1 2 3 4 56 7 8 91011>>