HomeSort by relevance Sort by last modified time
    Searched full:specifier (Results 51 - 75 of 2789) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
DerivativeException.java 38 * @param specifier format specifier (to be translated)
41 public DerivativeException(final String specifier, final Object ... parts) {
42 this(new DummyLocalizable(specifier), parts);
47 * @param specifier format specifier (to be translated)
51 public DerivativeException(final Localizable specifier, final Object ... parts) {
52 super(specifier, parts);
IntegratorException.java 37 * @param specifier format specifier (to be translated)
42 public IntegratorException(final String specifier, final Object ... parts) {
43 super(specifier, parts);
48 * @param specifier format specifier (to be translated)
52 public IntegratorException(final Localizable specifier, final Object ... parts) {
53 super(specifier, parts);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
EventException.java 36 * @param specifier format specifier (to be translated)
41 public EventException(final String specifier, final Object ... parts) {
42 super(specifier, parts);
47 * @param specifier format specifier (to be translated)
51 public EventException(final Localizable specifier, final Object ... parts) {
52 super(specifier, parts);
  /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/OpenMP/
openmp_check.cpp 6 auto F = [&]() { // expected-error {{expected expression}} expected-error {{expected ';' at end of declaration}} expected-warning {{'auto' type specifier is a C++11 extension}}
13 F(); // expected-error {{C++ requires a type specifier for all declarations}}
  /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'?}}
crash-invalid-builtin.c 4 __builtin_isinf(...); // expected-warning {{type specifier missing, defaults to 'int'}} expected-error {{ISO C requires a named parameter before '...'}} // expected-error {{conflicting types for '__builtin_isinf'}} // expected-note {{'__builtin_isinf' is a builtin with type 'int ()'}}
non-null-warning.c 20 int *foo1(int * _Nullable x) { // expected-warning {{nullability specifier '_Nullable' conflicts with existing specifier '_Nonnull'}}
32 int *foo3(int * _Nonnull x) { // expected-warning {{nullability specifier '_Nonnull' conflicts with existing specifier '_Nullable'}}
  /external/clang/test/SemaCXX/
auto-cxx0x.cpp 4 auto int a; // expected-warning {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
5 int auto b; // expected-error{{cannot combine with previous 'int' declaration specifier}}
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}}
virtuals.cpp 8 void i() = 1; // expected-error {{initializer on function does not look like a pure-specifier}}
9 void j() = 0u; // expected-error {{initializer on function does not look like a pure-specifier}}
51 virtual virtual void func(); // expected-warning {{duplicate 'virtual' declaration specifier}}
56 // DR (filed but no number yet): reject meaningless pure-specifier on a friend declaration.
58 struct B { friend int A::f() = 0; }; // expected-error {{friend declaration cannot have a pure-specifier}}
61 friend int C::f() = 0; // expected-error {{friend declaration cannot have a pure-specifier}}
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.unused/
p1.cpp 4 struct [[maybe_unused maybe_unused]] S2 {}; // expected-error {{attribute 'maybe_unused' cannot appear multiple times in an attribute 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 '+'}}
  /external/clang/test/SemaObjCXX/Inputs/
nullability-consistency-5.h 9 void shouldwarn5(int *ptr); //expected-warning{{missing a nullability type specifier}}
  /external/clang/test/SemaObjCXX/Inputs/nullability-consistency-system/
nullability-consistency-system.h 5 // expected-warning@-2{{pointer is missing a nullability type 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}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p2.cpp 10 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
15 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
20 // expected-warning@-2 {{'register' storage class specifier is deprecated}}
28 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
32 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
41 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
45 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
49 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
54 // expected-warning@-2 {{'register' storage class specifier is deprecated}}
  /external/curl/tests/python_dependencies/impacket/
structure.py 19 i.e. struct.pack('Hl',1,2) is valid, but format specifier 'Hl' is not (you must use 2 dfferent fields)
36 s [string (array of chars), must be preceded with length in format specifier, padded with zeros]
37 p [pascal string (includes byte count), must be preceded with length in format specifier, padded with zeros]
185 # void specifier
189 # quote specifier
193 # code specifier
203 # address specifier
214 # length specifier
222 # array specifier
236 # "printf" string specifier
    [all...]
  /libcore/ojluni/src/main/java/java/util/
MissingFormatArgumentException.java 29 * Unchecked exception thrown when there is a format specifier which does not
47 * specifier.
50 * Format specifier which does not have a corresponding argument
59 * Returns the unmatched format specifier.
61 * @return The unmatched format specifier
68 return "Format specifier '" + s + "'";

Completed in 2067 milliseconds

1 23 4 5 6 7 8 91011>>