OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:here
(Results
276 - 300
of
32334
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/oauth/core/src/main/java/net/oauth/
consumer.properties.sample
3
ma.gnolia.consumerKey: - Your key
here
-
4
ma.gnolia.consumerSecret: - Your secret
here
-
9
twitter.consumerKey: - Your key
here
-
10
twitter.consumerSecret: - Your secret
here
-
11
twitter.callbackURL: - Your URL
here
-
/external/clang/test/ASTMerge/
enum.c
6
// CHECK: enum1.c:11:3: note: enumerator 'E2Enumerator2' with value 3
here
7
// CHECK: enum2.c:11:3: note: enumerator 'E2Enumerator2' with value 4
here
9
// CHECK: enum1.c:13:3: note: declared
here
with type 'enum E2'
11
// CHECK: enum1.c:18:3: note: enumerator 'E3Enumerator2' with value 3
here
12
// CHECK: enum2.c:18:3: note: enumerator 'E3Enumerator' with value 3
here
14
// CHECK: enum1.c:20:3: note: declared
here
with type 'enum E3'
16
// CHECK: enum1.c:26:3: note: enumerator 'E4Enumerator3' with value 2
here
17
// CHECK: enum2.c:23:6: note: no corresponding enumerator
here
19
// CHECK: enum1.c:27:3: note: declared
here
with type 'enum E4'
21
// CHECK: enum2.c:33:3: note: enumerator 'E5Enumerator4' with value 3
here
[
all
...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
p2.cpp
15
// expected-note{{in instantiation of function template specialization 'recurse_until_fail<char [7]>' requested
here
}} \
16
// expected-note{{in instantiation of function template specialization 'recurse_until_fail<double, char [7]>' requested
here
}}
20
recurse_until_fail(1, 3.14159, "string"); // expected-note{{in instantiation of function template specialization 'recurse_until_fail<int, double, char [7]>' requested
here
}}
/external/clang/test/SemaCXX/
extern-c.cpp
15
extern int test2_x; // expected-note {{declared with C language linkage
here
}}
24
extern int test3_b; // expected-note {{previous definition is
here
}}
34
extern int test4_b; // expected-note {{declared with C language linkage
here
}}
41
extern int test5_b; // expected-note {{declared with C language linkage
here
}}
101
int lookup_in_global_f; // expected-note {{
here
}}
107
void lookup_in_global_g(int); // expected-note {{
here
}}
113
extern "C" int different_kind_1; // expected-note {{
here
}}
114
extern "C" void different_kind_2(); // expected-note {{
here
}}
158
int global_var_vs_extern_c_fn_1; // expected-note {{
here
}}
161
extern "C" void global_var_vs_extern_c_fn_2(); // expected-note {{
here
}}
[
all
...]
warn-dangling-field.cpp
12
int &x, *y; // expected-note {{reference member declared
here
}} \
13
// expected-note {{pointer member declared
here
}}
22
const X &x; // expected-note {{reference member declared
here
}}
32
T x; // expected-note {{reference member declared
here
}}
40
const X &x; // expected-note {{
here
}}
45
S5 s5; // expected-note {{
here
}}
/external/clang/test/SemaObjC/
alias-test-1.m
5
@class class2; // expected-note {{previous declaration is
here
}}
8
typedef int I; // expected-note {{previous declaration is
here
}}
16
typedef int alias2; // expected-note {{previous declaration is
here
}}
class-conforming-protocol-1.m
8
- (INTF*) METH1; // expected-note {{previous declaration is
here
}}
11
- (INTF<P2,P1>*) METH2; // expected-note {{previous declaration is
here
}}
14
- (INTF<P2,P1,P3>*) METH3; // expected-note {{previous declaration is
here
}}
duplicate-property-class-extension.m
6
@property (readwrite) char bar; // expected-note {{property declared
here
}}
10
@property (readwrite) char foo; // expected-note 2 {{property declared
here
}}
11
@property (readwrite) char NewProperty; // expected-note 2 {{property declared
here
}}
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
6
- (int) int_meth; // expected-note {{method 'int_meth' declared
here
}}
7
+ (int) cls_meth; // expected-note {{method 'cls_meth' declared
here
}}
8
+ (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:' declared
here
}}
22
- (int) int_meth; // expected-note {{method 'int_meth' declared
here
}}
23
+ (int) cls_meth; // expected-note {{method 'cls_meth' declared
here
}}
24
+ (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:' declared
here
}}
/external/clang/test/CXX/class.derived/class.abstract/
p16.cpp
4
virtual void a(); // expected-note{{overridden virtual function is
here
}}
5
virtual void b() = delete; // expected-note{{overridden virtual function is
here
}}
23
virtual E &operator=(const E &); // expected-note {{
here
}}
26
virtual H &operator=(H&&); // expected-note {{
here
}}
32
virtual ~D(); // expected-note 2{{
here
}}
37
// No move ctor
here
, because it would be deleted.
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp
36
void immediately_enclosing(int i) { // expected-note{{'i' declared
here
}}
45
[]() { // expected-note{{lambda expression begins
here
}}
50
void f1(int i) { // expected-note{{declared
here
}}
64
void work(int n) { // expected-note{{declared
here
}}
66
int j = 40; // expected-note{{declared
here
}}
67
auto m3 = [this,m] { // expected-note 3{{lambda expression begins
here
}}
/external/clang/test/Sema/
attr-unavailable-message.c
4
int foo(int) __attribute__((__unavailable__("USE IFOO INSTEAD"))); // expected-note {{function has been explicitly marked unavailable
here
}}
5
double dfoo(double) __attribute__((__unavailable__("NO LONGER"))); // expected-note 2 {{function has been explicitly marked unavailable
here
}}
37
a = 1, // expected-note {{declared
here
}}
38
b __attribute__((deprecated())) = 2, // expected-note {{declared
here
}}
42
enum fee { // expected-note {{declaration has been explicitly marked unavailable
here
}}
43
r = 1, // expected-note {{declaration has been explicitly marked unavailable
here
}}
/external/valgrind/main/none/tests/ppc32/
lsw.stdout.exp
2
here
is
17
here
is a
32
HERE
IS A S
47
here
is
50
here
is a stringH
53
HERE
IS A S
/external/valgrind/main/none/tests/ppc64/
lsw.stdout.exp
2
here
is
17
here
is a
32
HERE
IS A S
47
here
is
50
here
is a stringH
53
HERE
IS A S
/developers/samples/android/media/MediaRecorder/MediaRecorder/src/main/res/values/
styles.xml
11
backward-compatibility can go
here
.
17
<!-- All customizations that are NOT specific to a particular API-level can go
here
. -->
/developers/samples/android/ui/views/HorizontalPaging/HorizontalPaging/src/main/res/values/
styles.xml
11
backward-compatibility can go
here
.
17
<!-- All customizations that are NOT specific to a particular API-level can go
here
. -->
/development/tutorials/MoarRam/res/values/
styles.xml
11
backward-compatibility can go
here
.
17
<!-- All customizations that are NOT specific to a particular API-level can go
here
. -->
/external/chromium_org/chrome_frame/
frame_w_controls.html
22
Here
's an edit field: <input type="text"><br>
23
Here
's another: <input type="text"><br>
/external/chromium_org/third_party/WebKit/ManualTests/
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/chromium_org/tools/telemetry/telemetry/core/chrome/
cros_browser_finder_unittest.py
7
#
Here
, we should mock the cros_interface module (assuming its working) and
9
# of its work to the CRI, the test code
here
is going to be comparatively
/external/clang/test/Analysis/
misc-ps-region-store-i386.m
4
//
Here
is a case where a pointer is treated as integer, invalidated as an
12
//
Here
we have a pointer to integer cast.
misc-ps-region-store-x86_64.m
4
//
Here
is a case where a pointer is treated as integer, invalidated as an
12
//
Here
we have a pointer to integer cast.
/external/clang/test/CXX/class/class.local/
p1-0x.cpp
4
int x = 3; // expected-note{{'x' declared
here
}}
11
int x = 3; // expected-note{{'x' declared
here
}}
/external/clang/test/CXX/class/class.static/class.static.data/
p4.cpp
13
static const int i = 0; // expected-note{{previous definition is
here
}}
18
static const int i = 0; // expected-note{{previous definition is
here
}}
Completed in 508 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>