OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:specifier
(Results
26 - 50
of
842
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
OptimizationException.java
40
* @param
specifier
format
specifier
(to be translated)
45
public OptimizationException(String
specifier
, Object ... parts) {
46
this(new DummyLocalizable(
specifier
), parts);
52
* @param
specifier
format
specifier
(to be translated)
56
public OptimizationException(Localizable
specifier
, Object ... parts) {
57
super(
specifier
, parts);
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
templateid.cpp
3
// elaborated-type-
specifier
:
4
// class-key '::'? nested-name-
specifier
? 'template'? simple-template-id
/external/clang/test/Sema/
format-strings-non-iso.c
17
printf("%S", L"foo"); // expected-warning{{'S' conversion
specifier
is not supported by ISO C}}
18
printf("%C", L'x'); // expected-warning{{'C' conversion
specifier
is not supported by ISO C}}
20
// Combining 'L' with an integer conversion
specifier
.
21
printf("%Li", (long long)42); // expected-warning{{using length modifier 'L' with conversion
specifier
'i' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
22
printf("%Lo", (long long)42); // expected-warning{{using length modifier 'L' with conversion
specifier
'o' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
23
printf("%Lu", (long long)42); // expected-warning{{using length modifier 'L' with conversion
specifier
'u' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
24
printf("%Lx", (long long)42); // expected-warning{{using length modifier 'L' with conversion
specifier
'x' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
25
printf("%LX", (long long)42); // expected-warning{{using length modifier 'L' with conversion
specifier
'X' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
c89.c
42
test7; /* expected-warning {{declaration
specifier
missing, defaulting to 'int'}} */
44
void test8(int, x); /* expected-warning {{declaration
specifier
missing, defaulting to 'int'}} */
47
int a(sometype, y) {return 0;} /* expected-warning {{declaration
specifier
missing, defaulting to 'int'}} \
96
const const int c_i; /* expected-warning {{duplicate 'const' declaration
specifier
}} */
98
volatile vol_int volvol_i; /* expected-warning {{duplicate 'volatile' declaration
specifier
}} */
99
typedef volatile vol_int volvol_int; /* expected-warning {{duplicate 'volatile' declaration
specifier
}} */
104
const CI mine1[5][5]; /* expected-warning {{duplicate 'const' declaration
specifier
}} */
107
const array_of_CI mine2; /* expected-warning {{duplicate 'const' declaration
specifier
}} */
invalid-struct-init.c
5
_efree((p)); // expected-error{{type name requires a
specifier
or qualifier}} \
6
expected-warning {{type
specifier
missing, defaults to 'int'}}
pragma-section-invalid.c
3
// expected-error@+1 {{argument to 'section' attribute is not valid for this target: mach-o section
specifier
requires a segment and section separated by a comma}}
format-strings-gnu.c
20
// expected-warning@-4 {{length modifier 'L' results in undefined behavior or no effect with 'd' conversion
specifier
}}
23
// expected-warning@-6 {{length modifier 'L' results in undefined behavior or no effect with 'd' conversion
specifier
}}
28
printf("%Z\n", quiteLong); // expected-warning{{invalid conversion
specifier
'Z'}}
34
printf("%Lc", 'a'); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 'c' conversion
specifier
}}
35
printf("%Ls", "a"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion
specifier
}}
47
printf("%Ls", "hello"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion
specifier
}}
57
scanf("%Ls", "hello"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion
specifier
}}
/external/clang/test/SemaCXX/
auto-cxx98.cpp
3
auto int a; // expected-warning {{'auto' storage class
specifier
is redundant and incompatible with C++11}}
4
int auto b; // expected-warning {{'auto' storage class
specifier
is redundant and incompatible with C++11}}
PR10458.cpp
5
for (auto &i : arr) { // expected-warning {{'auto' type
specifier
is a C++11 extension}} expected-warning {{range-based for loop is a C++11 extension}}
PR9459.cpp
6
template<typename>struct ts{}ap() // expected-error {{expected ';' after struct}} expected-error {{requires a type
specifier
}}
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p3.cpp
11
// FIXME: Add test for "If the inline
specifier
is used in a friend declaration,
/external/clang/test/Lexer/
unicode-strings.c
10
// expected-warning@17 {{'char16_t' type
specifier
is incompatible with C++98}}
11
// expected-warning@18 {{'char32_t' type
specifier
is incompatible with C++98}}
12
// expected-warning@20 {{'char16_t' type
specifier
is incompatible with C++98}}
13
// expected-warning@21 {{'char32_t' type
specifier
is incompatible with C++98}}
/external/clang/test/Parser/
access-spec-attrs.cpp
4
public __attribute__((unavailable)): // expected-error {{access
specifier
can only have annotation attributes}}
objc-interfaces.m
6
- (int*) foo2 __attribute__((deprecated)) : (int) x1 __attribute__((deprecated)); // expected-error {{expected ';' after method prototype}} expected-error {{method type
specifier
must start with '-' or '+'}}
typeof.c
8
int typeof (int) aIntInt; // expected-error{{cannot combine with previous 'int' declaration
specifier
}}
10
int int ttt; // expected-error{{cannot combine with previous 'int' declaration
specifier
}}
cxx-class.cpp
47
// check that we don't consume the token after the access
specifier
54
// consume the token after the access
specifier
if it's a semicolon
98
struct A::B; // expected-error {{forward declaration of struct cannot have a nested name
specifier
}}
99
union N::C; // expected-error {{forward declaration of union cannot have a nested name
specifier
}}
144
~A::A() { n = 0; } // expected-error {{'~' in destructor name should be after nested name
specifier
}} expected-note {{previous}}
148
DtorErrors::~B::B() {} // expected-error {{'~' in destructor name should be after nested name
specifier
}}
151
a.~A::A(); // expected-error {{'~' in destructor name should be after nested name
specifier
}}
152
b->~DtorErrors::~B::B(); // expected-error {{'~' in destructor name should be after nested name
specifier
}}
156
~C::C() {} // expected-error {{incomplete}} expected-error {{'~' in destructor name should be after nested name
specifier
}}
159
~D::D() throw(X) {} // expected-error {{'~' in destructor name should be after nested name
specifier
}}
[
all
...]
cxx0x-decl.cpp
29
int *const const p = 0; // expected-error {{duplicate 'const' declaration
specifier
}}
30
const const int *q = 0; // expected-error {{duplicate 'const' declaration
specifier
}}
33
void f() const const; // expected-error {{duplicate 'const' declaration
specifier
}}
109
constexpr constexpr int f(); // expected-warning {{duplicate 'constexpr' declaration
specifier
}}
110
constexpr int constexpr a = 0; // expected-warning {{duplicate 'constexpr' declaration
specifier
}}
113
friend constexpr int constexpr friend f(); // expected-warning {{duplicate 'friend' declaration
specifier
}} \
114
// expected-warning {{duplicate 'constexpr' declaration
specifier
}}
/external/clang/test/SemaTemplate/
elaborated-type-specifier.cpp
25
enum T::foo; // expected-error{{nested name
specifier
for a declaration cannot depend on a template parameter}}
26
enum T::bar { // expected-error{{nested name
specifier
for a declaration cannot depend on a template parameter}}
33
class T::bar; // expected-error{{nested name
specifier
for a declaration cannot depend on a template parameter}}
34
class T::bar { int x; }; // expected-error{{nested name
specifier
for a declaration cannot depend on a template parameter}}
/libcore/luni/src/main/java/java/util/
MissingFormatWidthException.java
32
* format
specifier
.
35
* the specified format
specifier
.
45
* Returns the format
specifier
associated with the exception.
47
* @return the format
specifier
associated with the exception.
/ndk/tests/device/test-stlport_shared-exception/jni/
template1.cpp
1
// Test whether exception
specifier
dependent on template parameter
/ndk/tests/device/test-stlport_static-exception/jni/
template1.cpp
1
// Test whether exception
specifier
dependent on template parameter
/external/wpa_supplicant_8/src/eap_common/
eap_gpsk_common.c
21
* @
specifier
: CSuite/
Specifier
24
int eap_gpsk_supported_ciphersuite(int vendor, int
specifier
)
27
specifier
== EAP_GPSK_CIPHER_AES)
31
specifier
== EAP_GPSK_CIPHER_SHA256)
150
WPA_PUT_BE16(pos, csuite_specifier); /* CSuite/
Specifier
*/
263
* @
specifier
: CSuite/
Specifier
279
int
specifier
,
290
vendor,
specifier
);
[
all
...]
/external/clang/lib/Parse/
ParseTentative.cpp
39
/// 'namespace' identifier = qualified-namespace-
specifier
';'
42
/// 'using' typename[opt] '::'[opt] nested-name-
specifier
47
/// 'using' 'namespace' '::'[opt] nested-name-
specifier
[opt]
76
/// decl-
specifier
-seq init-declarator-list[opt] ';'
81
/// attribute-
specifier
-seqopt type-
specifier
-seq declarator
100
// We don't have to parse all of the decl-
specifier
-seq part. There's only
101
// an ambiguity if the first decl-
specifier
is
102
// simple-type-
specifier
/typename-
specifier
followed by a '(', which ma
[
all
...]
/external/clang/test/CXX/dcl.decl/dcl.meaning/
p1.cpp
34
// with a nested-name-
specifier
.
37
struct NS::X; // expected-error {{forward declaration of struct cannot have a nested name
specifier
}} expected-warning {{extra qualification}}
38
template<typename T> struct NS::Y; // expected-error {{forward declaration of struct cannot have a nested name
specifier
}} expected-warning {{extra qualification}}
/external/clang/test/CXX/except/except.spec/
p1.cpp
58
void g2(bool b) noexcept(b); // expected-error {{argument to noexcept
specifier
must be a constant expression}} expected-note {{read of non-const variable 'b'}} expected-note {{here}}
77
static int f() noexcept(1/X) { return 10; } // expected-error{{argument to noexcept
specifier
must be a constant expression}} expected-note{{division by zero}}
81
int (*p)() noexcept(1/X); // expected-error{{argument to noexcept
specifier
must be a constant expression}} expected-note{{division by zero}}
Completed in 223 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>