OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:appear
(Results
1 - 25
of
9493
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/libxml2/result/
ent_738805.xml.rde
9
something should
appear
after colon: something
10
something should
appear
after colon: something
11
something should
appear
after colon: something
12
something should
appear
after colon: something
ent_738805.xml
10
&a; should
appear
after colon: &a;
11
&b; should
appear
after colon: &a;
12
&a; should
appear
after colon: &b;
13
&b; should
appear
after colon: &b;
ent_738805.xml.rdr
11
1 3 #text 0 1 should
appear
after colon:
16
1 3 #text 0 1 should
appear
after colon:
21
1 3 #text 0 1 should
appear
after colon:
26
1 3 #text 0 1 should
appear
after colon:
/external/libxml2/result/noent/
ent_738805.xml
10
something should
appear
after colon: something
11
something should
appear
after colon: something
12
something should
appear
after colon: something
13
something should
appear
after colon: something
/external/libxml2/test/
ent_738805.xml
11
&a; should
appear
after colon: &a;
12
&b; should
appear
after colon: &a;
13
&a; should
appear
after colon: &b;
14
&b; should
appear
after colon: &b;
/external/clang/test/SemaObjCXX/
objc-decls-inside-namespace.mm
5
@protocol P; //expected-error{{Objective-C declarations may only
appear
in global scope}}
7
@class Bar; //expected-error{{Objective-C declarations may only
appear
in global scope}}
9
@compatibility_alias Foo Bar; //expected-error{{Objective-C declarations may only
appear
in global scope}}
11
@interface A //expected-error{{Objective-C declarations may only
appear
in global scope}}
14
@implementation A //expected-error{{Objective-C declarations may only
appear
in global scope}}
17
@protocol P //expected-error{{Objective-C declarations may only
appear
in global scope}}
20
@interface A(C) //expected-error{{Objective-C declarations may only
appear
in global scope}}
23
@implementation A(C) //expected-error{{Objective-C declarations may only
appear
in global scope}}
26
@interface B @end //expected-error{{Objective-C declarations may only
appear
in global scope}}
27
@implementation B //expected-error{{Objective-C declarations may only
appear
in global scope}
[
all
...]
/external/clang/test/Parser/
objc-missing-impl.m
2
@end // expected-error {{'@end' must
appear
in an Objective-C context}}
c11-noreturn.c
9
_Noreturn char c1; // expected-error {{'_Noreturn' can only
appear
on functions}}
10
char _Noreturn c2; // expected-error {{'_Noreturn' can only
appear
on functions}}
12
typedef _Noreturn int g(); // expected-error {{'_Noreturn' can only
appear
on functions}}
14
_Noreturn int; // expected-error {{'_Noreturn' can only
appear
on functions}} expected-warning {{does not declare anything}}
15
_Noreturn struct S; // expected-error {{'_Noreturn' can only
appear
on functions}}
16
_Noreturn enum E { e }; // expected-error {{'_Noreturn' can only
appear
on functions}}
cxx0x-attributes.cpp
40
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
attr_after_class_name_definition [[]] [[]] [[]]{}; // expected-error {{an attribute list cannot
appear
here}}
82
alignas(float) [[]] final // expected-error {{an attribute list cannot
appear
here}}
83
alignas(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}}
90
class C final [[deprecated(l]] {}); // expected-error {{use of undeclared identifier}} expected-error {{expected ']'}} expected-error {{an attribute list cannot
appear
here}} expected-error {{expected unqualified-id}}
91
class D final alignas ([l) {}]{}); // expected-error {{expected ',' or ']' in lambda capture list}} expected-error {{an attribute list cannot
appear
here}}
94
[[]] struct no_init_declarators; // expected-error {{an attribute list cannot
appear
here}
[
all
...]
cxx11-base-spec-attributes.cpp
7
struct E : public [[]] virtual A {}; // expected-error {{an attribute list cannot
appear
here}}
8
struct F : virtual [[]] public A {}; // expected-error {{an attribute list cannot
appear
here}}
pragma-fp-contract.c
5
/* expected-error@+1 {{'#pragma fp_contract' can only
appear
at file scope or at the start of a compound statement}} */
missing-end-4.m
8
@end // expected-error {{'@end' must
appear
in an Objective-C context}}
15
@end // expected-error {{'@end' must
appear
in an Objective-C context}}
20
@end // expected-error {{'@end' must
appear
in an Objective-C context}}
25
@end // expected-error {{'@end' must
appear
in an Objective-C context}}
30
@end // expected-error {{'@end' must
appear
in an Objective-C context}}
/frameworks/compile/slang/tests/F_root_compute_too_many_args/
stderr.txt.expect
1
root_compute_too_many_args.rs:6:20: error: In compute kernel root(), parameter 'extra1' cannot
appear
after any of the special parameters ('context', 'x', 'y', 'z').
2
root_compute_too_many_args.rs:6:37: error: In compute kernel root(), parameter 'extra2' cannot
appear
after any of the special parameters ('context', 'x', 'y', 'z').
/external/kernel-headers/original/uapi/asm-arm/asm/
byteorder.h
5
* that byte accesses
appear
as:
7
* and word accesses (data or instruction)
appear
as:
10
* When in big endian mode, byte accesses
appear
as:
12
* and word accesses (data or instruction)
appear
as:
/external/clang/test/Preprocessor/
macro_paste_bad.c
10
#define a a ## ## // expected-error {{'##' cannot
appear
at end of macro expansion}}
11
#define b() b ## ## // expected-error {{'##' cannot
appear
at end of macro expansion}}
12
#define c c ## // expected-error {{'##' cannot
appear
at end of macro expansion}}
13
#define d() d ## // expected-error {{'##' cannot
appear
at end of macro expansion}}
16
#define e ## ## e // expected-error {{'##' cannot
appear
at start of macro expansion}}
17
#define f() ## ## f // expected-error {{'##' cannot
appear
at start of macro expansion}}
18
#define g ## g // expected-error {{'##' cannot
appear
at start of macro expansion}}
19
#define h() ## h // expected-error {{'##' cannot
appear
at start of macro expansion}}
20
#define i ## // expected-error {{'##' cannot
appear
at start of macro expansion}}
21
#define j() ## // expected-error {{'##' cannot
appear
at start of macro expansion}
[
all
...]
/external/llvm/test/MC/Mips/
module-directive-bad.s
6
# CHECK: :[[@LINE-1]]:13: error: .module directive must
appear
before any code
10
# CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must
appear
before any code
14
# CHECK: :[[@LINE-1]]:13: error: .module directive must
appear
before any code
18
# CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must
appear
before any code
22
# CHECK: :[[@LINE-1]]:13: error: .module directive must
appear
before any code
26
# CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must
appear
before any code
30
# CHECK: :[[@LINE-1]]:13: error: .module directive must
appear
before any code
34
# CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must
appear
before any code
38
# CHECK: :[[@LINE-1]]:13: error: .module directive must
appear
before any code
42
# CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must
appear
before any cod
[
all
...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p8.cpp
7
(void)[foo, foo] () {}; // expected-error {{'foo' can
appear
only once}}
8
(void)[this, this] () {}; // expected-error {{'this' can
appear
only once}}
28
(void)[i, i]{ }; // expected-error{{'i' can
appear
only once in a capture list}}
29
(void)[i(0), i(1)]{ }; // expected-error{{'i' can
appear
only once in a capture list}}
30
(void)[i, i(1)]{ }; // expected-error{{'i' can
appear
only once in a capture list}}
31
(void)[i(0), i]{ }; // expected-error{{'i' can
appear
only once in a capture list}}
/external/valgrind/none/tests/
ioctl_moans.stderr.exp
2
This could cause spurious value errors to
appear
.
5
This could cause spurious value errors to
appear
.
8
This could cause spurious value errors to
appear
.
11
This could cause spurious value errors to
appear
.
14
This could cause spurious value errors to
appear
.
17
This could cause spurious value errors to
appear
.
20
This could cause spurious value errors to
appear
.
23
This could cause spurious value errors to
appear
.
26
This could cause spurious value errors to
appear
.
29
This could cause spurious value errors to
appear
[
all
...]
/external/clang/test/Lexer/
cxx1y_digit_separators.cpp
15
int b = 0'xff; // expected-error {{digit separator cannot
appear
at end of digit sequence}} expected-error {{suffix 'xff' on integer}}
20
int g = 123'ms; // expected-error {{digit separator cannot
appear
at end of digit sequence}}
24
int z = 0'123'_foo; //'; // expected-error {{cannot
appear
at end of digit seq}}
31
float a = 1'e1; // expected-error {{digit separator cannot
appear
at end of digit sequence}}
33
float c = 1.'0e1; // expected-error {{digit separator cannot
appear
at start of digit sequence}}
34
float d = 1.0'e1; // expected-error {{digit separator cannot
appear
at end of digit sequence}}
35
float e = 1e'1; // expected-error {{digit separator cannot
appear
at start of digit sequence}}
36
float f = 1e1'ms; // expected-error {{digit separator cannot
appear
at end of digit sequence}}
37
float g = 0.'0; // expected-error {{digit separator cannot
appear
at start of digit sequence}}
39
float i = 0x.'0p0; // expected-error {{digit separator cannot
appear
at start of digit sequence}
[
all
...]
/external/clang/test/SemaCXX/
inline.cpp
5
struct c {inline int a;}; // expected-error{{'inline' can only
appear
on functions}}
/external/clang/test/FixIt/
fixit-cxx11-attributes.cpp
9
attr_after_class_name_decl [[]] [[]]; // expected-error {{an attribute list cannot
appear
here}}
14
attr_after_class_name_definition [[]] [[]] [[]]{}; // expected-error {{an attribute list cannot
appear
here}}
20
alignas(float) [[]] final // expected-error {{an attribute list cannot
appear
here}}
21
alignas(float) [[]] [[]] alignas(float): base{}; // expected-error {{an attribute list cannot
appear
here}}
28
[[]] [[]] alignas(16) final // expected-error {{an attribute list cannot
appear
here}}
29
[[]] [[]] alignas(16) [[]]{}; // expected-error {{an attribute list cannot
appear
here}}
39
class with_base_spec : public [[a]] // expected-error {{an attribute list cannot
appear
here}} expected-warning {{unknown}}
42
virtual [[b]] base1, // expected-error {{an attribute list cannot
appear
here}} expected-warning {{unknown}}
45
virtual [[c]] // expected-error {{an attribute list cannot
appear
here}} expected-warning {{unknown}}
48
public [[d]] base2 {}; // expected-error {{an attribute list cannot
appear
here}} expected-warning {{unknown}
[
all
...]
/external/e2fsprogs/lib/ss/
mit-sipb-copyright.h
9
appear
in all copies and that both that copyright notice and
10
this permission notice
appear
in supporting documentation,
/external/tcpdump/
lane.h
9
* permission notice
appear
in all copies of the software,
11
* thereof, that both notices
appear
in supporting
/ndk/sources/cxx-stl/stlport/stlport/
rope
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/ndk/sources/cxx-stl/stlport/stlport/stl/
msl_string.h
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
Completed in 397 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>