Home
last modified time | relevance | path

Searched full:here (Results 1 – 25 of 11196) sorted by relevance

12345678910>>...448

/external/valgrind/none/tests/
Dtls.stdout.exp1 tls_ptr: case "race" has mismatch: *ip=1 here=0
2 tls_ptr: case "race" has mismatch: *ip=2 here=1
3 tls_ptr: case "race" has mismatch: *ip=3 here=1
4 tls_ptr: case "race" has mismatch: *ip=4 here=2
5 tls_ptr: case "race" has mismatch: *ip=5 here=2
6 tls_ptr: case "race" has mismatch: *ip=6 here=3
7 tls_ptr: case "race" has mismatch: *ip=7 here=3
8 tls_ptr: case "race" has mismatch: *ip=8 here=4
9 tls_ptr: case "race" has mismatch: *ip=9 here=4
10 tls_ptr: case "race" has mismatch: *ip=10 here=5
[all …]
/external/clang/test/SemaCXX/
Dstruct-class-redecl.cpp3 class X; // expected-note 2{{here}}
7 template<typename T> struct Y; // expected-note{{did you mean class here?}}
17 class A; // expected-note{{previous use is here}}
20 class B; // expected-note{{did you mean struct here?}}
21 class B; // expected-note{{previous use is here}}\
22 // expected-note{{did you mean struct here?}}
24 struct B {}; // expected-warning{{'B' defined as a struct here but previously declared as a class}}
26 class C; // expected-note{{previous use is here}}
28 // expected-note{{previous use is here}}\
29 // expected-note{{did you mean class here?}}
[all …]
Ddecl-microsoft-call-conv.cpp9 void free_func_default(); // expected-note 2 {{previous declaration is here}}
10 void __cdecl free_func_cdecl(); // expected-note 2 {{previous declaration is here}}
11 void __stdcall free_func_stdcall(); // expected-note 2 {{previous declaration is here}}
12 void __fastcall free_func_fastcall(); // expected-note 2 {{previous declaration is here}}
13 void __vectorcall free_func_vectorcall(); // expected-note 2 {{previous declaration is here}}
16 void __stdcall free_func_default(); // expected-error {{function declared 'stdcall' here was previ…
17 void __fastcall free_func_default(); // expected-error {{function declared 'fastcall' here was prev…
20 void __stdcall free_func_cdecl(); // expected-error {{function declared 'stdcall' here was previou…
21 void __fastcall free_func_cdecl(); // expected-error {{function declared 'fastcall' here was previo…
24 void __cdecl free_func_stdcall(); // expected-error {{function declared 'cdecl' here was previou…
[all …]
Dvirtual-base-used.cpp9 // expected-note@+2 3 {{declared private here}}
11 class NoDestroy { ~NoDestroy(); }; // expected-note 3 {{declared private here}}
23 // expected-note@+3 {{implicit default constructor for 'B' first required here}}
24 // expected-note@+2 {{implicit destructor for 'B' first required here}}
31 D d; // expected-note {{implicit default constructor for 'D' first required here}}
33 void D::foo() { // expected-note {{implicit destructor for 'B' first required here}} in foo()
44 // expected-note@+2 {{implicit default constructor for 'E' first required here}}
46 struct F : public E { // expected-note {{implicit destructor for 'E' first required here}}
49 // expected-note@+2 {{implicit default constructor for 'F' first required here}}
56 G g; // expected-note {{implicit default constructor for 'G' first required here}}
[all …]
Dattr-deprecated.cpp3 … __attribute__((deprecated)); // expected-note 2 {{'f' has been explicitly marked deprecated here}}
7 … __attribute__((deprecated)); // expected-note 2 {{'b' has been explicitly marked deprecated here}}
29 … __attribute__((deprecated)); // expected-note 6 {{'f' has been explicitly marked deprecated here}}
64 void D::f() { } // expected-note{{'f' has been explicitly marked deprecated here}} in f()
65 void D::f(int v) { } // expected-note{{'f' has been explicitly marked deprecated here}} in f()
66 void D::f(int v1, int v2) { } // expected-note{{'f' has been explicitly marked deprecated here}} in f()
77 … __attribute__((deprecated)); // expected-note {{'foo' has been explicitly marked deprecated here}}
79 … __attribute__((deprecated)); // expected-note {{'foo' has been explicitly marked deprecated here}}
84 … __attribute__((deprecated)); // expected-note {{'foo' has been explicitly marked deprecated here}}
90 … __attribute__((deprecated)); // expected-note {{'foo' has been explicitly marked deprecated here}}
[all …]
Ddllimport.cpp48 // expected-note@+2{{previous attribute is here}}
50 …clspec(dllimport) extern int ExternGlobalDeclInit; // expected-note{{previous declaration is here}}
59 // expected-note@+2{{previous attribute is here}}
61 __declspec(dllimport) int GlobalDeclInit; // expected-note{{previous declaration is here}}
70 // expected-note@+2{{previous attribute is here}}
72 …_attribute__((dllimport)) GlobalDeclChunkAttrInit; // expected-note{{previous declaration is here}}
81 // expected-note@+2{{previous attribute is here}}
83 int GlobalDeclAttrInit __attribute__((dllimport)); // expected-note{{previous declaration is here}}
104 …lRedecl3; // expected-note{{previous declaration is here}} expected-note{{previous attribute is he…
107 extern int GlobalRedecl4; // expected-note{{previous declaration is here}}
[all …]
Derr_typecheck_assign_const.cpp3 const int global = 5; // expected-note{{variable 'global' declared const here}}
9 const int local = 5; // expected-note{{variable 'local' declared const here}} in test2()
13 void test2 (const int parameter) { // expected-note{{variable 'parameter' declared const here}} in test2()
19 …nt const_field = 1; // expected-note 2{{non-static data member 'const_field' declared const here}}
20 …nt static_const_field = 1; // expected-note 2{{variable 'static_const_field' declared const here}}
25 …st_const() const { // expected-note 2{{member function 'test3::test_const' is declared const here}} in test_const()
32 …-note{{function 'return_const_ref' which returns const-qualified type 'const int &' declared here}}
40 …int const_field = 4; // expected-note {{non-static data member 'const_field' declared const here}}
58 const U2 u2 = U2(); // expected-note{{non-static data member 'u2' declared const here}}
80 …); // expected-note{{function 'getc' which returns const-qualified type 'const C &' declared here}}
[all …]
/external/clang/test/CXX/special/class.copy/
Dp23-cxx11.cpp66 template struct CopyAssign<A1>; // expected-note {{here}}
69 A2 &operator=(A2 &&) = default; // expected-note {{here}}
74 template struct MoveAssign<A2>; // expected-note {{here}}
86 template struct CopyAssign<B1>; // expected-note {{here}}
87 template struct MoveAssign<B1>; // expected-note {{here}}
88 template struct CopyAssign<B2>; // expected-note {{here}}
89 template struct MoveAssign<B2>; // expected-note {{here}}
97 template struct CopyAssign<C1>; // expected-note {{here}}
98 template struct MoveAssign<C1>; // expected-note {{here}}
105 …D2 &operator=(D2 &&) = default; // expected-note {{here}} expected-note {{copy assignment operator…
[all …]
/external/clang/test/SemaOpenCL/
Dinvalid-kernel-parameters.cl16 typedef struct ContainsBool // expected-note{{within field of type 'ContainsBool' declared here}}
18 bool x; // expected-note{{field of illegal type 'bool' declared here}}
25 typedef struct FooImage2D // expected-note{{within field of type 'FooImage2D' declared here}}
28 // as a note here any longer.
30 … // expected-note{{field of illegal type '__read_only image2d_t' declared here}} expected-error{{t…
35 typedef struct Foo // expected-note{{within field of type 'Foo' declared here}}
37 int* ptrField; // expected-note{{field of illegal pointer type 'int *' declared here}}
42 typedef union FooUnion // expected-note{{within field of type 'FooUnion' declared here}}
44 int* ptrField; // expected-note{{field of illegal pointer type 'int *' declared here}}
49 …edef struct NestedPointer // expected-note 2 {{within field of type 'NestedPointer' declared here}}
[all …]
/external/clang/test/Parser/
Dcxx0x-attributes.cpp40 const [[]] int between_attr_2 = 0; // expected-error {{an attribute list cannot appear here}}
70 attr_after_class_name_decl [[]] [[]]; // expected-error {{an attribute list cannot appear here}}
73 …_class_name_definition [[]] [[]] [[]]{}; // expected-error {{an attribute list cannot appear here}}
82 alignas(float) [[]] final // expected-error {{an attribute list cannot appear here}}
83 …float) [[]] [[]] alignas(float): base{}; // expected-error {{an attribute list cannot appear here}}
86 [[]] [[]] alignas(16) final // expected-error {{an attribute list cannot appear here}}
87 [[]] [[]] alignas(16) [[]]{}; // expected-error {{an attribute list cannot appear here}}
89 // The diagnostics here don't matter much, this just shouldn't crash:
90 …d-error {{expected ']'}} expected-error {{an attribute list cannot appear here}} expected-error {{…
91 …xpected ',' or ']' in lambda capture list}} expected-error {{an attribute list cannot appear here}}
[all …]
/external/clang/test/ASTMerge/
Dstruct.c6 // CHECK: struct1.c:15:7: note: field 'field2' has type 'int' here
7 // CHECK: struct2.c:12:9: note: field 'field2' has type 'float' here
9 // CHECK: struct1.c:18:11: note: declared here with type 'struct S1'
11 // CHECK: struct2.c:18:7: note: 'S2' is a union here
13 // CHECK: struct1.c:21:31: note: declared here with type 'struct S2'
15 // CHECK: struct1.c:24:36: note: field 'd' has type 'double' here
16 // CHECK: struct2.c:21:8: note: no corresponding field here
18 // CHECK: struct1.c:24:41: note: declared here with type 'struct S3'
20 // CHECK: struct2.c:24:26: note: field 'f' has type 'float' here
21 // CHECK: struct1.c:27:8: note: no corresponding field here
[all …]
/external/v8/tools/clang/blink_gc_plugin/tests/
Dfields_illegal_tracing.txt5 …illegal_tracing.h:37:5: note: [blink-gc] OwnPtr field 'm_obj1' to a GC managed class declared here:
8 …illegal_tracing.h:38:5: note: [blink-gc] RefPtr field 'm_obj2' to a GC managed class declared here:
11 …racing.h:40:5: note: [blink-gc] std::unique_ptr field 'm_obj4' to a GC managed class declared here:
14 …ing.h:42:5: note: [blink-gc] Iterator field 'm_iterator2' to a GC managed collection declared here:
17 …ing.h:43:5: note: [blink-gc] Iterator field 'm_iterator3' to a GC managed collection declared here:
23 …illegal_tracing.h:51:5: note: [blink-gc] OwnPtr field 'm_obj1' to a GC managed class declared here:
26 …illegal_tracing.h:52:5: note: [blink-gc] RefPtr field 'm_obj2' to a GC managed class declared here:
29 …racing.h:54:5: note: [blink-gc] std::unique_ptr field 'm_obj4' to a GC managed class declared here:
32 …ing.h:55:5: note: [blink-gc] Iterator field 'm_iterator3' to a GC managed collection declared here:
35 …ing.h:56:5: note: [blink-gc] Iterator field 'm_iterator4' to a GC managed collection declared here:
[all …]
Dtrace_collections.txt4 ./trace_collections.h:16:5: note: [blink-gc] Untraced field 'm_heapVector' declared here:
7 ./trace_collections.h:17:5: note: [blink-gc] Untraced field 'm_wtfVector' declared here:
10 ./trace_collections.h:19:5: note: [blink-gc] Untraced field 'm_heapDeque' declared here:
13 ./trace_collections.h:20:5: note: [blink-gc] Untraced field 'm_wtfDeque' declared here:
16 ./trace_collections.h:22:5: note: [blink-gc] Untraced field 'm_heapSet' declared here:
19 ./trace_collections.h:23:5: note: [blink-gc] Untraced field 'm_wtfSet' declared here:
22 ./trace_collections.h:25:5: note: [blink-gc] Untraced field 'm_heapListSet' declared here:
25 ./trace_collections.h:26:5: note: [blink-gc] Untraced field 'm_wtfListSet' declared here:
28 ./trace_collections.h:28:5: note: [blink-gc] Untraced field 'm_heapLinkedSet' declared here:
31 ./trace_collections.h:29:5: note: [blink-gc] Untraced field 'm_wtfLinkedSet' declared here:
[all …]
/external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
Dfields_illegal_tracing.txt5 …illegal_tracing.h:37:5: note: [blink-gc] OwnPtr field 'm_obj1' to a GC managed class declared here:
8 …illegal_tracing.h:38:5: note: [blink-gc] RefPtr field 'm_obj2' to a GC managed class declared here:
11 …racing.h:40:5: note: [blink-gc] std::unique_ptr field 'm_obj4' to a GC managed class declared here:
14 …ing.h:42:5: note: [blink-gc] Iterator field 'm_iterator2' to a GC managed collection declared here:
17 …ing.h:43:5: note: [blink-gc] Iterator field 'm_iterator3' to a GC managed collection declared here:
23 …illegal_tracing.h:51:5: note: [blink-gc] OwnPtr field 'm_obj1' to a GC managed class declared here:
26 …illegal_tracing.h:52:5: note: [blink-gc] RefPtr field 'm_obj2' to a GC managed class declared here:
29 …racing.h:54:5: note: [blink-gc] std::unique_ptr field 'm_obj4' to a GC managed class declared here:
32 …ing.h:55:5: note: [blink-gc] Iterator field 'm_iterator3' to a GC managed collection declared here:
35 …ing.h:56:5: note: [blink-gc] Iterator field 'm_iterator4' to a GC managed collection declared here:
[all …]
Dtrace_collections.txt4 ./trace_collections.h:16:5: note: [blink-gc] Untraced field 'm_heapVector' declared here:
7 ./trace_collections.h:17:5: note: [blink-gc] Untraced field 'm_wtfVector' declared here:
10 ./trace_collections.h:19:5: note: [blink-gc] Untraced field 'm_heapDeque' declared here:
13 ./trace_collections.h:20:5: note: [blink-gc] Untraced field 'm_wtfDeque' declared here:
16 ./trace_collections.h:22:5: note: [blink-gc] Untraced field 'm_heapSet' declared here:
19 ./trace_collections.h:23:5: note: [blink-gc] Untraced field 'm_wtfSet' declared here:
22 ./trace_collections.h:25:5: note: [blink-gc] Untraced field 'm_heapListSet' declared here:
25 ./trace_collections.h:26:5: note: [blink-gc] Untraced field 'm_wtfListSet' declared here:
28 ./trace_collections.h:28:5: note: [blink-gc] Untraced field 'm_heapLinkedSet' declared here:
31 ./trace_collections.h:29:5: note: [blink-gc] Untraced field 'm_wtfLinkedSet' declared here:
[all …]
/external/clang/test/SemaObjC/
Darc-repeated-weak.mm23 use(a.weakProp); // expected-note{{also accessed here}}
28 use(a.weakProp); // expected-note{{also accessed here}}
56 a.weakProp = get(); // expected-note{{also accessed here}}
67 use(a.strongProp.weakProp); // expected-note{{also accessed here}}
72 use(a.strongProp.weakProp); // expected-note{{also accessed here}}
77 use(a.implicitProp); // expected-note{{also accessed here}}
82 use(Test.weakProp); // expected-note{{also accessed here}}
93 use(a->weakIvar); // expected-note{{also accessed here}}
99 use(a); // expected-note{{also accessed here}}
104 use([a weakProp]); // expected-note{{also accessed here}}
[all …]
Dproperty-deprecated-warning.m9 …perty 'ptarget' is declared deprecated here}} expected-note {{'ptarget' has been explicitly marked…
12 …artialPtarget' is declared partial here}} expected-note@+2 {{'partialPtarget' has been explicitly …
24 …erty 'target' is declared deprecated here}} expected-note {{'setTarget:' has been explicitly marke…
27 …artialTarget' is declared partial here}} expected-note@+2 {{'setPartialTarget:' has been explicitl…
38 …deprecated=3.0))); // expected-note 2 {{'dep_target' has been explicitly marked deprecated here}} \
39 … // expected-note 4 {{property 'dep_target' is declared deprecated here}} \
40 … // expected-note 2 {{'setDep_target:' has been explicitly marked deprecated here}}
43here}} expected-note@+2 2 {{'partial_dep_target' has been explicitly marked partial here}} expecte…
98 …ed' has been explicitly marked deprecated here}} expected-note {{property 'enabled' is declared de…
100 …:' has been explicitly marked deprecated here}} expected-note {{property 'delegate' is declared de…
[all …]
/external/llvm/test/Bitcode/
Dblockaddress.ll8 br label %here.i
10 here.i:
11 store i8* blockaddress(@doit, %here), i8** %ptr1, align 8
12 ; CHECK: blockaddress(@doit, %here)
22 br label %here
24 here:
25 store i8* blockaddress(@doit, %here), i8** %pptr, align 8
26 ; CHECK: blockaddress(@doit, %here)
37 br label %here
39 here:
[all …]
/external/clang/test/SemaTemplate/
Dundefined-template.cpp4 static char s_var_1; // expected-note{{forward declaration of template entity is here}}
5 static char s_var_2; // expected-note{{forward declaration of template entity is here}}
6 static void s_func_1(); // expected-note{{forward declaration of template entity is here}}
7 static void s_func_2(); // expected-note{{forward declaration of template entity is here}}
8 void meth_1(); // expected-note2{{forward declaration of template entity is here}}
10 …s T1> static char s_tvar_2; // expected-note{{forward declaration of template entity is here}}
11 …s T1> static void s_tfunc_2(); // expected-note{{forward declaration of template entity is here}}
13 static char s_var_2; // expected-note{{forward declaration of template entity is here}}
14 static void s_func_2(); // expected-note{{forward declaration of template entity is here}}
15 void meth_2(); // expected-note{{forward declaration of template entity is here}}
[all …]
/external/clang/test/Sema/
Dvar-redecl.c3 int outer1; // expected-note{{previous definition is here}}
4 extern int outer2; // expected-note{{previous declaration is here}}
6 int outer4; // expected-note{{previous definition is here}}
8 int outer6(float); // expected-note{{previous definition is here}}
14 extern float outer3; // expected-note{{previous declaration is here}} in outer_test()
16 extern int outer5; // expected-note{{previous declaration is here}} in outer_test()
19 extern int outer8; // expected-note{{previous definition is here}} in outer_test()
22 extern int outer9; // expected-note{{previous declaration is here}} in outer_test()
32 extern int outer13; // expected-note{{previous declaration is here}}
35 extern int outer11; // expected-note{{previous declaration is here}} in outer_shadowing_test()
[all …]
/external/zlib/src/contrib/infback9/
Dinfback9.c244 code here; /* current decoding table entry */ local
385 here = lencode[BITS(lenbits)];
386 if ((unsigned)(here.bits) <= bits) break;
389 if (here.val < 16) {
390 NEEDBITS(here.bits);
391 DROPBITS(here.bits);
392 state->lens[state->have++] = here.val;
395 if (here.val == 16) {
396 NEEDBITS(here.bits + 2);
397 DROPBITS(here.bits);
[all …]
/external/clang/test/FixIt/
Dtypo.cpp8 template<typename T> class basic_string { // expected-note 3{{'basic_string' declared here}}
10 int find(const char *substr); // expected-note{{'find' declared here}}
11 static const int npos = -1; // expected-note{{'npos' declared here}}
14 typedef basic_string<char> string; // expected-note 2{{'string' declared here}}
17 namespace otherstd { // expected-note 2{{'otherstd' declared here}} \
18 // expected-note{{namespace 'otherstd' defined here}}
30 float area(float radius, // expected-note{{'radius' declared here}} in area()
36 namespace blargh = otherstd; // expected-note 3{{namespace 'blargh' defined here}}
52 struct Derived : public Base { // expected-note{{base class 'Base' specified here}}
53 int member; // expected-note 3{{'member' declared here}}
[all …]
/external/eigen/doc/
DInsideEigenExample.dox28 …ucing optimized code -- so that the complexity of Eigen, that we'll explain here, is really useful.
44 Obviously, the introduction of the temporary \a tmp here is useless. It has a very bad effect on pe…
51 …that Eigen also supports AltiVec and that all the discussion that we make here applies also to Alt…
77 …determined by the first 3. So you don't need to worry about them for now. Here, Matrix\<float, Dyn…
89 …see that there are many partial template specializations of DenseStorages here, treating separatel…
94 Here, the constructor called is DenseStorage::DenseStorage(int size, int rows, int columns)
97 Here is this constructor:
102 Here, the \a m_data member is the actual array of coefficients of the matrix. As you see, it is dyn…
126 Here, v and w are of type VectorXf, which is a typedef for a specialization of Matrix (as we explai…
150 …sm in C++ is by means of virtual functions. This is dynamic polymorphism. Here we don't want dynam…
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
DRewriteRuleXxxxStreamFixture.cs100 Assert.IsFalse(tokenTest.HasNext, "tokenTest has to give back false here."); in CheckRRTokenStreamBehaviourWhileEmpty1()
105 Assert.IsTrue(true, "Reset() shouldn't make any problems here."); in CheckRRTokenStreamBehaviourWhileEmpty1()
119 Assert.IsFalse(subtreeTest.HasNext, "HasNext has to give back false here."); in CheckRRSubtreeStreamBehaviourWhileEmpty1()
124 Assert.IsTrue(true, "Reset() shouldn't make any problems here."); in CheckRRSubtreeStreamBehaviourWhileEmpty1()
137 Assert.IsFalse(nodeTest.HasNext, "HasNext has to give back false here."); in CheckRRNodeStreamBehaviourWhileEmpty1()
142 Assert.IsTrue(true, "Reset() shouldn't make any problems here."); in CheckRRNodeStreamBehaviourWhileEmpty1()
199 Assert.IsTrue(tokenTest.HasNext, "HasNext should be true here (1)."); in CheckRRTokenStreamBehaviourWithElements()
206 Assert.IsFalse(tokenTest.HasNext, "HasNext should be false here (1)."); in CheckRRTokenStreamBehaviourWithElements()
209 Assert.IsTrue(tokenTest.HasNext, "HasNext should be true here (2)."); in CheckRRTokenStreamBehaviourWithElements()
216 Assert.IsFalse(tokenTest.HasNext, "HasNext should be false here (2)."); in CheckRRTokenStreamBehaviourWithElements()
[all …]
/external/clang/test/Modules/
Dsubmodules-merge-defs.cpp23 // expected-note@defs.h:1 +{{here}}
26 // expected-note@defs.h:2 +{{here}}
29 // expected-note@defs.h:4 +{{here}}
30 // expected-note@defs.h:17 +{{here}}
36 // expected-note@defs.h:23 +{{here}}
38 // expected-note@defs.h:25 +{{here}}
40 // expected-note@defs.h:26 +{{here}}
43 // expected-note@defs.h:28 +{{here}}
44 // expected-note@defs.h:29 +{{here}}
48 // expected-note@defs.h:32 +{{here}}
[all …]

12345678910>>...448