HomeSort by relevance Sort by last modified time
    Searched full:here (Results 401 - 425 of 18871) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaCXX/
typo-correction.cpp 39 struct Derived : public BaseType { // expected-note {{base class 'BaseType' specified here}}
40 static int base_type; // expected-note {{'base_type' declared here}}
52 class some_name {}; // expected-note {{'some_name' declared here}}
54 namespace SomeName {} // expected-note {{namespace 'SomeName' defined here}}
65 double FieldA; // expected-note{{'FieldA' declared here}}
72 typedef char* another_str; // expected-note{{'another_str' declared here}}
73 namespace AnotherStd { // expected-note{{'AnotherStd' declared here}}
82 template<typename ...TypeNames> struct count { // expected-note{{parameter pack 'TypeNames' declared here}}
88 class StreamOut {}; // expected-note 2 {{'StreamOut' declared here}}
89 long stream_count; // expected-note 2 {{'stream_count' declared here}}
    [all...]
attr-regparm.cpp 8 void __attribute__((regparm(3))) f2(); // expected-note{{previous declaration is here}}
9 void f3(); // expected-note{{previous declaration is here}}
deleted-operator.cpp 10 // FIXME: We get a ridiculous number of "built-in candidate" notes here...
17 void operator delete(void*) = delete; // expected-note {{deleted here}}
instantiate-blocks.cpp 28 foo(100, 'a'); // expected-note {{in instantiation of function template specialization 'foo<int, char>' requested here}}
30 noret((float)0.0, double(0.0)); // expected-note {{in instantiation of function template specialization 'noret<float, double>' requested here}}
pragma-visibility.cpp 3 namespace test1 __attribute__((visibility("hidden"))) { // expected-note{{surrounding namespace with visibility attribute starts here}}
10 } // expected-note{{surrounding namespace with visibility attribute ends here}}
  /external/clang/test/Parser/
cxx11-user-defined-literals.cpp 6 #line 1 "foo"_bar // expected-error {{user-defined suffix cannot be used here}}
7 # 1 "foo"_bar 1 // expected-error {{user-defined suffix cannot be used here}}
8 #ident "foo"_bar // expected-error {{user-defined suffix cannot be used here}}
9 _Pragma("foo"_bar) // expected-error {{user-defined suffix cannot be used here}}
10 #pragma comment(lib, "foo"_bar) // expected-error {{user-defined suffix cannot be used here}}
11 _Pragma("comment(lib, \"foo\"_bar)") // expected-error {{user-defined suffix cannot be used here}}
12 #pragma message "hi"_there // expected-error {{user-defined suffix cannot be used here}} expected-warning {{hi}}
13 #pragma push_macro("foo"_bar) // expected-error {{user-defined suffix cannot be used here}}
14 #if __has_warning("-Wan-island-to-discover"_bar) // expected-error {{user-defined suffix cannot be used here}}
18 extern "C++"_x {} // expected-error {{user-defined suffix cannot be used here}} expected-error {{unknown linkage language}
    [all...]
objc-quirks.m 3 // FIXME: This is a horrible error message here. Fix.
8 @interface A // expected-note {{class started here}}
  /development/samples/training/NsdChat/
proguard.cfg 4 # Add project specific ProGuard rules here.
13 # Add any project specific keep options here:
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
RewriteRuleXxxxStreamFixture.cs 100 Assert.IsFalse(tokenTest.HasNext, "tokenTest has to give back false here.");
105 Assert.IsTrue(true, "Reset() shouldn't make any problems here.");
119 Assert.IsFalse(subtreeTest.HasNext, "HasNext has to give back false here.");
124 Assert.IsTrue(true, "Reset() shouldn't make any problems here.");
137 Assert.IsFalse(nodeTest.HasNext, "HasNext has to give back false here.");
142 Assert.IsTrue(true, "Reset() shouldn't make any problems here.");
199 Assert.IsTrue(tokenTest.HasNext, "HasNext should be true here (1).");
206 Assert.IsFalse(tokenTest.HasNext, "HasNext should be false here (1).");
209 Assert.IsTrue(tokenTest.HasNext, "HasNext should be true here (2).");
216 Assert.IsFalse(tokenTest.HasNext, "HasNext should be false here (2).")
    [all...]
  /external/chromium/webkit/glue/plugins/
plugin_list.h 8 // This file is here to keep NativeClient compiling. PluginList was moved to
11 // definitions here to keep it compiling until it can be updated to use the
  /external/clang/test/ASTMerge/
class.cpp 6 // CHECK: class1.cpp:6:9: note: field 'y' has type 'float' here
7 // CHECK: class2.cpp:6:7: note: field 'y' has type 'int' here
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
p2.cpp 9 typedef int A; // expected-note {{declared here}}
18 template <class> class A; // expected-note {{declared here}}
  /external/clang/test/CXX/class/class.base/class.base.init/
p5-0x.cpp 11 E() : a(1), // expected-note{{previous initialization is here}}
22 F() : a(1), // expected-note{{previous initialization is here}}
  /external/clang/test/CXX/dcl.decl/dcl.init/
p5.cpp 15 int& x; // expected-note {{declared here}}
17 S s; // expected-note {{implicit default constructor for 'S' first required here}}
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p8.cpp 36 template struct X1<int>; // expected-note {{here}}
40 template struct X1<char>; // expected-note {{here}}
  /external/clang/test/Modules/
decldef.mm 5 // in other file: expected-note{{previous definition is here}}
11 // in other file: expected-note{{previous definition is here}}
  /external/clang/test/PCH/
functions.c 7 // expected-note{{'f1' declared here}}
9 // expected-note{{passing argument to parameter here}}
typo.cpp 2 // In header: expected-note{{'boost::function' declared here}}
5 // In header: expected-note{{'boost::graph::adjacency_list' declared here}}
  /external/clang/test/Sema/
pragma-arc-cf-code-audited.c 10 #pragma clang arc_cf_code_audited begin // expected-note {{#pragma entered here}}
11 #pragma clang arc_cf_code_audited begin // expected-error {{already inside '#pragma clang arc_cf_code_audited'}} expected-note {{#pragma entered here}}
uninit-variables.c 8 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
24 ++x; // expected-warning{{variable 'x' is uninitialized when used here}}
30 x = y; // expected-warning{{variable 'y' is uninitialized when used here}}
36 x += 2; // expected-warning{{variable 'x' is uninitialized when used here}}
44 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
48 int x = x; // expected-note{{variable 'x' is declared here}}
51 // Warn with "may be uninitialized" here (not "is uninitialized"), since the
53 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
72 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
80 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
    [all...]
  /external/clang/test/SemaObjC/
bad-property-synthesis-crash.m 7 // expected-note {{previous definition is here}}
16 @synthesize what; // expected-note 2 {{'what' declared here}}
category-1.m 7 @interface MyClass1 (Category1) <p1> // expected-warning {{cannot find protocol definition for 'p1'}} expected-note {{previous definition is here}}
16 @interface MyClass1 (Category4) @end // expected-note {{previous definition is here}}
19 @interface MyClass1 (Category7) @end // expected-note {{previous definition is here}}
20 @interface MyClass1 (Category8) @end // expected-note {{previous definition is here}}
34 @class MyClass2; // expected-note{{forward declaration of class here}}
47 @interface XCRemoteComputerManager(x) // expected-note {{previous definition is here}}
56 @implementation XCRemoteComputerManager(x) // expected-note {{previous definition is here}}
65 -(void) im0; // expected-note {{method 'im0' declared here}}
comptypes-a.m 21 - compareThis:(int)a withThat:(id)b; // expected-note {{previous definition is here}} \
22 // expected-note {{previous definition is here}}
custom-atomic-property.m 4 @property (assign) Foo *myProp; // expected-note {{property declared here}} expected-note {{property declared here}}
property-impl-misuse.m 12 @dynamic X; // expected-note {{previous declaration is here}}
14 @synthesize Y; // expected-note {{previous use is here}}

Completed in 345 milliseconds

<<11121314151617181920>>