OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:here
(Results
176 - 200
of
18871
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/CXX/temp/temp.param/
p1.cpp
9
class T = A, // expected-note{{previous default template argument defined
here
}}
11
class X0 {}; // expected-note{{template is declared
here
}}
/external/clang/test/CXX/temp/temp.spec/temp.inst/
p1.cpp
23
ScopedEnum2<void*> se2; // expected-note {{
here
}}
34
ScopedEnum1<double>::E e2 = decltype(e2)::e; // expected-note {{in instantiation of enumeration 'ScopedEnum::ScopedEnum1<double>::E' requested
here
}}
53
return E::e; // expected-note {{
here
}}
55
int test2 = g<int>(); // expected-note {{
here
}}
67
UnscopedEnum1<int> ue1; // expected-note {{
here
}}
74
UnscopedEnum2<void*> ue2; // expected-note {{
here
}}
91
int test1 = f<int>(); // expected-note {{
here
}}
100
int test2 = g<int>(); // expected-note {{
here
}}
/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
/external/clang/test/PCH/
cxx-trailing-return.cpp
7
typedef auto f() -> int; // expected-note {{
here
}}
8
typedef int g(); // expected-note {{
here
}}
/external/clang/test/Preprocessor/
extension-warning.c
8
// But we should warn
here
10
TY(1) x; // FIXME: And we should warn
here
/external/clang/test/Sema/
attr-decl-after-definition.c
6
void foo(){} // expected-note {{previous definition is
here
}}
16
int bar = 0; // expected-note {{previous definition is
here
}}
attr-sentinel.c
7
void foo1 (int x, ...) ATTR; // expected-note 3 {{function has been explicitly marked sentinel
here
}}
8
void foo5 (int x, ...) __attribute__ ((__sentinel__(1))); // expected-note {{function has been explicitly marked sentinel
here
}}
9
void foo6 (int x, ...) __attribute__ ((__sentinel__(5))); // expected-note {{function has been explicitly marked sentinel
here
}}
10
void foo7 (int x, ...) __attribute__ ((__sentinel__(0))); // expected-note {{function has been explicitly marked sentinel
here
}}
12
void foo12 (int x, ... ) ATTR; // expected-note {{function has been explicitly marked sentinel
here
}}
45
void (*b) (int arg, const char * format, ...) __attribute__ ((__sentinel__)); // expected-note {{function has been explicitly marked sentinel
here
}}
46
void (*z) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (2))); // expected-note {{function has been explicitly marked sentinel
here
}}
49
void (*y) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (5))); // expected-note {{function has been explicitly marked sentinel
here
}}
c11-typedef-redef.c
12
typedef int vla[N]; // expected-note{{previous definition is
here
}}
16
typedef vla2 vla3; // expected-note{{previous definition is
here
}}
/external/clang/test/SemaCXX/
fntype-decl.cpp
5
fn f; // expected-note {{previous declaration is
here
}}
13
int h(int x) { // expected-note {{previous definition is
here
}}
warn-char-subscripts.cpp
18
t1<char>(); // expected-note {{in instantiation of function template specialization 't1<char>' requested
here
}}
19
t2<char>(); // expected-note {{in instantiation of function template specialization 't2<char>' requested
here
}}
missing-namespace-qualifier-typo-corrections.cpp
3
namespace fizbin { class Foobar {}; } // expected-note 2 {{'fizbin::Foobar' declared
here
}} \
4
// expected-note {{'Foobar' declared
here
}}
9
namespace barstool { int toFoobar() { return 1; } } // expected-note 3 {{'barstool::toFoobar' declared
here
}}
16
namespace baztool { bool toFoobar() { return true; } } // expected-note{{'fizbin::baztool' declared
here
}}
17
namespace nested { bool moreFoobar() { return true; } } // expected-note{{'fizbin::nested::moreFoobar' declared
here
}}
18
namespace nested { bool lessFoobar() { return true; } } // expected-note{{'fizbin::nested' declared
here
}} \
19
// expected-note{{'fizbin::nested::lessFoobar' declared
here
}}
20
class dummy { // expected-note 2 {{'fizbin::dummy' declared
here
}}
22
static bool moreFoobar() { return false; } // expected-note{{'moreFoobar' declared
here
}}
25
void Check() { // expected-note{{'Check' declared
here
}}
[
all
...]
/external/clang/test/SemaObjC/
DoubleMethod.m
8
- (void) method; // expected-note {{previous declaration is
here
}}
13
- (void) method {;} // expected-note {{previous declaration is
here
}}
alias-test-2.m
4
@interface Super @end // expected-note {{previous definition is
here
}}
6
@interface MyWpModule @end // expected-note {{previous definition is
here
}}
class-conforming-protocol-2.m
9
- (void)setDelegate:(id <NSWindowDelegate>)anObject; // expected-note {{previous definition is
here
}}
10
- (id <IBStringsTableWindowDelegate>) delegate; // expected-note {{previous definition is
here
}}
gc-attributes.m
6
void f0(__strong A**); // expected-note{{passing argument to parameter
here
}}
15
void f1(__weak A**); // expected-note{{passing argument to parameter
here
}}
ivar-sem-check-1.m
11
struct T { // expected-note {{previous definition is
here
}}
15
int kaka; // expected-note {{previous declaration is
here
}}
ivar-sem-check-2.m
4
id value2; // expected-note {{previously declared 'value2'
here
}}
18
@synthesize value; // expected-note {{previous use is
here
}}
property-category-4.m
10
@property (readwrite, retain) id selectedObjects; // expected-note {{property declared
here
}}
11
@property (readwrite, retain) id d_selectedObjects; // expected-note {{property declared
here
}}
warn-implicit-atomic-property.m
7
@property (readwrite) int P2; // expected-note {{property declared
here
}}
8
@property int P3; // expected-note {{property declared
here
}}
/external/clang/test/SemaTemplate/
instantiate-default-assignment-operator.cpp
8
struct A { RefPtr<int> a; }; // expected-note {{instantiation of member function 'RefPtr<int>::operator=' requested
here
}}
9
struct B : RefPtr<float> { }; // expected-note {{in instantiation of member function 'RefPtr<float>::operator=' requested
here
}}
temp_explicit_cxx0x.cpp
4
template<typename T> struct X0 { }; // expected-note{{
here
}}
14
template<typename T> struct X2 { }; // expected-note{{
here
}}
/external/linux-tools-perf/
CREDITS
1
Most of the infrastructure that 'perf' uses
here
has been reused
6
Here
is an (incomplete!) list of main contributors to those files
/external/qemu/distrib/sdl-1.2.12/
BUGS
2
Bugs are now managed in the SDL bug tracker,
here
:
15
Bug reports are welcome
here
, but we really appreciate if you use Bugzilla, as
/external/webkit/Source/WebCore/manual-tests/
show-modal-dialog-test.html
10
<p>Type text
here
to be sent to the modal window and press the button:
14
<p>Text will appear
here
from the modal window: <input name="fromModal">
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p5.cpp
10
void f() throw (auto); // expected-error{{'auto' not allowed
here
}}
14
operator auto(); // expected-error{{'auto' not allowed
here
}}
42
(void)typeid(auto); // expected-error{{'auto' not allowed
here
}}
43
(void)sizeof(auto); // expected-error{{'auto' not allowed
here
}}
44
(void)__alignof(auto); // expected-error{{'auto' not allowed
here
}}
49
(void)dynamic_cast<auto&>(n); // expected-error{{'auto' not allowed
here
}}
50
(void)static_cast<auto*>(&n); // expected-error{{'auto' not allowed
here
}}
51
(void)reinterpret_cast<auto*>(&n); // expected-error{{'auto' not allowed
here
}}
52
(void)const_cast<auto>(n); // expected-error{{'auto' not allowed
here
}}
53
(void)*(auto*)(&n); // expected-error{{'auto' not allowed
here
}}
[
all
...]
Completed in 299 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>