/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
output | 2 foo is a definition
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t018llstar.output | 2 foo is a definition
|
/external/clang/test/Modules/Inputs/redecl-found-building-chains/ |
b.h | 1 struct A; // ensure that loading b's canonical decl doesn't load the definition
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/ |
plugin-12.d | 2 .*: symbol `func' definition: 0, visibility: 0, resolution: 2 3 .*: symbol `func1' definition: 0, visibility: 1, resolution: 3 4 .*: symbol `func2' definition: 0, visibility: 2, resolution: 3 5 .*: symbol `func3' definition: 0, visibility: 3, resolution: 3
|
/ndk/tests/device/test-gnustl-full/unit/ |
macro_checks.cpp | 6 # error Missing CHAR_BIT definition. 14 # error Missing CHAR_MAX definition. 18 # error Missing CHAR_MIN definition. 26 # error Missing INT_MAX definition. 30 # error Missing INT_MIN definition. 38 # error Missing LONG_MAX definition. 42 # error Missing LONG_MIN definition. 50 # error Missing SCHAR_MAX definition. 54 # error Missing SCHAR_MIN definition. 62 # error Missing SHRT_MAX definition [all...] |
/ndk/tests/device/test-stlport/unit/ |
macro_checks.cpp | 6 # error Missing CHAR_BIT definition. 14 # error Missing CHAR_MAX definition. 18 # error Missing CHAR_MIN definition. 26 # error Missing INT_MAX definition. 30 # error Missing INT_MIN definition. 38 # error Missing LONG_MAX definition. 42 # error Missing LONG_MIN definition. 50 # error Missing SCHAR_MAX definition. 54 # error Missing SCHAR_MIN definition. 62 # error Missing SHRT_MAX definition [all...] |
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/ |
p4.cpp | 3 void f0() { // expected-note {{previous definition is here}} 6 inline void f0(); // expected-error {{inline declaration of 'f0' follows non-inline definition}}
|
/external/clang/test/Index/Inputs/CommentXML/ |
invalid-function-03.xml | 8 <Definition><Para>Bbb.</Para></Definition>
|
invalid-function-04.xml | 8 <Definition><Para>Bbb.</Para></Definition>
|
/external/clang/test/Modules/Inputs/merge-class-definition-visibility/ |
b.h | 1 // Include definition of A into the same module as c.h
|
/external/nanopb-c/examples/simple/ |
simple.proto | 1 // A very simple protocol definition, consisting of only
|
/frameworks/compile/slang/tests/P_array_init/ |
stderr.txt.expect | 1 array_init.rs:22:6: warning: tentative array definition assumed to have one element
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/ |
err-bpo3.s | 6 LDO $43,a+52 % { dg-error "no suitable GREG definition" "" } 10 LDO $143,d+12 % { dg-error "no suitable GREG definition" "" } 11 LDO $243,a+12 % { dg-error "no suitable GREG definition" "" } 12 LDA $103,d+40 % { dg-error "no suitable GREG definition" "" } 13 LDA $13,a+24 % { dg-error "no suitable GREG definition" "" }
|
err-bpo5.s | 7 LDO $43,a+52 % { dg-error "no suitable GREG definition" "" } 8 LDA $47,a+112 % { dg-error "no suitable GREG definition" "" } 9 LDA $48,b+22 % { dg-error "no suitable GREG definition" "" } 10 LDO $43,c+2 % { dg-error "no suitable GREG definition" "" } 11 LDA $47,d+212 % { dg-error "no suitable GREG definition" "" } 12 LDA $48,c+21 % { dg-error "no suitable GREG definition" "" }
|
/external/clang/test/Index/ |
print-bitwidth.c | 17 // CHECK: FieldDecl=ac:2:12 (Definition) bitwidth=4 18 // CHECK: FieldDecl=:3:3 (Definition) bitwidth=4 19 // CHECK: FieldDecl=clock:4:12 (Definition) bitwidth=1 20 // CHECK: FieldDecl=:5:3 (Definition) bitwidth=0 21 // CHECK: FieldDecl=flag:6:12 (Definition) bitwidth=1 22 // CHECK: FieldDecl=light:10:12 (Definition) bitwidth=1 23 // CHECK: FieldDecl=toaster:11:12 (Definition) bitwidth=1
|
/external/clang/test/Modules/ |
merge-class-definition-visibility.cpp | 2 // RUN: %clang_cc1 -fmodules -fmodule-map-file=%S/Inputs/merge-class-definition-visibility/modmap \ 3 // RUN: -I%S/Inputs/merge-class-definition-visibility \ 14 // Ensure that this triggers the import of the second definition from e.h, 15 // which is necessary to make the definition of A visible in the template 19 // Ensure that we make the definition of B visible. We made the parse-merged 20 // definition from e.h visible, which makes the definition from d.h visible, 21 // and that definition was merged into the canonical definition from b.h, 22 // so that becomes visible, and we have a visible definition [all...] |
/external/clang/test/Sema/ |
alias-redefinition.c | 7 void fun1() {} // expected-note {{previous definition}} 11 void fun2(void) __attribute((alias("f2"))); // expected-note {{previous definition}} 15 void fun3(void) __attribute((alias("f3"))); // expected-note {{previous definition}} 24 void __attribute((alias("f5"))) fun5(void) {} // expected-error {{redefinition of 'fun5'}} // expected-note {{previous definition}} 26 int var1 __attribute((alias("v1"))); // expected-error {{definition 'var1' cannot also be an alias}} 27 static int var2 __attribute((alias("v2"))) = 2; // expected-error {{definition 'var2' cannot also be an alias}} 29 extern int var3 __attribute__((alias("C"))); // expected-note{{previous definition is here}} 32 int var4; // expected-note{{previous definition is here}} 33 extern int var4 __attribute__((alias("v4"))); // expected-error{{alias definition of 'var4' after tentative definition}} [all...] |
/external/clang/test/CXX/basic/basic.scope/basic.scope.local/ |
p4-0x.cpp | 7 if (bool b = true) // expected-note 2{{previous definition}} 11 while (bool b = true) // expected-note {{previous definition}} 13 for (int c; // expected-note 2{{previous definition}} 16 switch (int n = 37 + 5) // expected-note {{previous definition}} 18 for (int a : arr) // expected-note {{previous definition}} 21 if (bool b = true) { // expected-note 2{{previous definition}} 26 while (bool b = true) { // expected-note {{previous definition}} 29 for (int c; // expected-note 2{{previous definition}} 33 switch (int n = 37 + 5) { // expected-note {{previous definition}} 36 for (int &a : arr) { // expected-note {{previous definition}} [all...] |
/external/clang/test/Preprocessor/ |
macro-reserved-cxx11.cpp | 4 #define for 0 // expected-warning {{keyword is hidden by macro definition}} 5 #define final 1 // expected-warning {{keyword is hidden by macro definition}} 6 #define override // expected-warning {{keyword is hidden by macro definition}}
|
/external/clang/test/SemaObjC/ |
check-dup-objc-decls-1.m | 3 @interface Foo // expected-note {{previous definition is here}} 8 @class Bar; // expected-note {{previous definition is here}} 16 typedef int OBJECT; // expected-note {{previous definition is here}} 21 typedef int Gorf; // expected-note {{previous definition is here}} 23 @interface Gorf @end // expected-error {{redefinition of 'Gorf' as different kind of symbol}} expected-note {{previous definition is here}} 32 @interface A<P> @end // expected-note {{previous definition is here}} 33 @interface A<Q> @end // expected-error {{duplicate interface definition for class 'A'}} 35 @protocol PP<P> @end // expected-note {{previous definition is here}} 36 @protocol PP<Q> @end // expected-warning {{duplicate protocol definition of 'PP'}} 38 @interface A(Cat)<P> @end // expected-note {{previous definition is here} [all...] |
/external/tpm2/ |
tpm_types.h | 11 // Table 3 Definition of Base Types 31 // Table 5 Definition of Types for Documentation Clarity 39 // Skipped: Table 6 Definition of TPM_SPEC Constants <> 40 // Table 7 Definition of TPM_GENERATED Constants < O> 45 // Skipped: Table 9 Definition of TPM_ALG_ID Constants < IN/OUT, S> 46 // Skipped: Table 10 Definition of TPM_ECC_CURVE Constants < IN/OUT, S> 49 // Skipped: Table 13 Definition of TPM_CC Constants < IN/OUT, S> 53 // Table 17 Definition of TPM_RC Constants < OUT> 177 // Table 18 Definition of TPM_CLOCK_ADJUST Constants < IN> 187 // Table 19 Definition of TPM_EO Constants < IN/OUT [all...] |
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/ |
p7.cpp | 3 namespace NIL {} // expected-note {{previous definition}} 5 inline namespace IL {} // expected-note {{previous definition}} 8 namespace {} // expected-note {{previous definition}} 11 inline namespace {} // expected-note {{previous definition}}
|
/external/libxml2/result/VC/ |
DuplicateType | 1 ./test/VC/DuplicateType:3: validity error : Definition of a has duplicate references of c
|
DuplicateType.rdr | 1 ./test/VC/DuplicateType:3: validity error : Definition of a has duplicate references of c
|
/frameworks/compile/slang/tests/F_one_definition_rule1/ |
stderr.txt.expect | 1 error: type 'DifferentDefinition1' in different translation unit (def2.rs v.s. def1.rs) has incompatible type definition
|