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

1 23 4 5 6 7 8 91011>>

  /external/bison/linux-lib/
config.h 351 /* Define if the copysignf function is declared in <math.h> and available in
355 /* Define if the copysignl function is declared in <math.h> and available in
359 /* Define if the copysign function is declared in <math.h> and available in
694 /* Define to 1 if acosf is declared even after undefining macros. */
697 /* Define to 1 if acosl is declared even after undefining macros. */
700 /* Define to 1 if asinf is declared even after undefining macros. */
703 /* Define to 1 if asinl is declared even after undefining macros. */
706 /* Define to 1 if atanf is declared even after undefining macros. */
709 /* Define to 1 if atanl is declared even after undefining macros. */
712 /* Define to 1 if atoll is declared even after undefining macros. *
    [all...]
  /external/clang/test/ASTMerge/
class-template.cpp 5 // CHECK: class-template1.cpp:7:14: error: non-type template parameter declared with incompatible types in different translation units ('int' vs. 'long')
6 // CHECK: class-template2.cpp:7:15: note: declared here with type 'long'
9 // CHECK: class-template2.cpp:10:10: note: template parameter declared here
11 // CHECK: class-template1.cpp:16:23: error: non-type template parameter declared with incompatible types in different translation units ('long' vs. 'int')
12 // CHECK: class-template2.cpp:16:23: note: declared here with type 'int'
15 // CHECK: class-template2.cpp:19:10: note: template parameter declared here
17 // CHECK: class-template2.cpp:25:20: error: external variable 'x0r' declared with incompatible types in different translation units ('X0<double> *' vs. 'X0<float> *')
18 // CHECK: class-template1.cpp:24:19: note: declared here with type 'X0<float> *'
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p17.cpp 4 ctor(); // expected-note{{implicitly declared private here}}
8 ~dtor(); // expected-note 3 {{implicitly declared private here}}
  /external/clang/test/CXX/special/class.dtor/
p3.cpp 7 A::~A() noexcept {} // expected-warning {{previously declared with an implicit exception specification}}
10 B::~B() {} // expected-warning {{previously declared with an explicit exception specification}}
  /external/clang/test/SemaObjC/
ivar-sem-check-2.m 4 id value2; // expected-note {{previously declared 'value2' here}}
20 @synthesize prop=value2; // expected-error {{property 'prop' attempting to use instance variable 'value2' declared in super class 'Super'}}
method-warn-unused-attribute.m 12 [a fee]; // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
13 [INTF c]; // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
property-ns-returns-not-retained-attr.m 10 @property (nonatomic, retain) id newName2 __attribute__((ns_returns_not_retained)); // expected-note {{roperty declared here}}
11 - (id) newName2; // expected-warning {{property declared as returning non-retained objects; getter returning retained objects}}
warn-implicit-atomic-property.m 7 @property (readwrite) int P2; // expected-note {{property declared here}}
8 @property int P3; // expected-note {{property declared here}}
arc-property-decl-attrs.m 40 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
41 @property(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'strong' and 'weak' are mutually exclusive}}
42 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
46 @property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
47 @property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'retain' and 'weak' are mutually exclusive}}
48 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
52 @property(copy) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
53 @property(copy) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'copy' and 'weak' are mutually exclusive}}
54 @property(copy) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
60 @property(assign) __autoreleasing id z; // expected-error {{unsafe_unretained property 'z' may not also be declared __autoreleasing}
    [all...]
  /external/clang/test/SemaOpenCL/
storageclass.cl 7 static int X = 5; // expected-error{{variables in function scope cannot be declared static}}
11 static void kernel bar() { // expected-error{{kernel functions cannot be declared static}}
  /external/clang/test/Sema/
attr-deprecated.c 3 int f() __attribute__((deprecated)); // expected-note 2 {{declared here}}
5 void g(); // expected-note {{declared here}}
7 extern int var __attribute__((deprecated)); // expected-note {{declared here}}
20 extern int var; // expected-note {{declared here}}
26 int old_fn(); // expected-note {{declared here}}
35 int x __attribute__((deprecated)); // expected-note 3 {{declared here}}
44 typedef struct foo foo_dep __attribute__((deprecated)); // expected-note 12 {{declared here}}
48 invalid_attribute)) bar_dep ; // expected-warning {{unknown attribute 'invalid_attribute' ignored}} expected-note 2 {{declared here}}
105 enum __attribute__((deprecated)) Test20 { // expected-note {{declared here}}
106 test20_a __attribute__((deprecated)), // expected-note {{declared here}
    [all...]
attr-availability-ios.c 3 void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); // expected-note {{'f0' declared here}}
5 void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{'f2' declared here}}
9 void f5(int) __attribute__((availability(ios,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{'f5' declared here}}
11 void f6(int) __attribute__((availability(ios,introduced=2.0))); // expected-note {{'f6' declared here}}
attr-deprecated-message.c 4 typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); // expected-note 3 {{'INT1' declared here}}
15 INT1 f1(void) __attribute__ ((deprecated("Please avoid f1"))); // expected-note {{'f1' declared here}}
18 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color' declared here}}
24 int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' declared here}}
uninit-variables-vectors.c 9 __m128 x, y, z, w, X; // expected-note {{variable 'x' is declared here}} expected-note {{variable 'y' is declared here}} expected-note {{variable 'w' is declared here}} expected-note {{variable 'z' is declared here}}
  /external/clang/test/SemaCXX/
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...]
PR8755.cpp 5 typedef int iterator; // expected-note{{declared here}}
  /external/clang/test/CXX/class.access/class.access.base/
p1.cpp 4 // If a class is declared to be a base class for another class using
12 protected: int prot; static int sprot; // expected-note 4 {{declared protected here}}
13 private: int priv; static int spriv; // expected-note 8 {{declared private here}}
52 // If a class is declared to be a base class for another class using
57 class Base { // expected-note 6{{member is declared here}}
59 int pub; // expected-note{{member is declared here}}
60 static int spub; // expected-note{{member is declared here}}
61 protected: int prot; static int sprot; // expected-note 4 {{declared protected here}}
62 private: int priv; static int spriv; // expected-note 8 {{declared private here}}
65 class Test : protected Base { // expected-note 6 {{declared protected here}} expected-note 8 {{constrained by protected inheritance here}
    [all...]
  /cts/tools/dex-tools/src/dex/structure/
DexClass.java 41 * Returns a list containing all fields declared by this {@code DexClass}.
43 * @return a list containing all fields declared by this {@code DexClass}
48 * Returns a list containing all methods declared by this {@code DexClass}.
50 * @return a list containing all methods declared by this {@code DexClass}
  /external/clang/test/CXX/class/class.local/
p2.cpp 6 struct B : private A {}; // expected-note{{declared private here}}
  /external/clang/test/CXX/class/class.mem/
p1b.cpp 15 void a2(B b = B()); // expected-error{{use of default argument to function 'B' that is declared later in class 'B'}}
24 B(int b = 42) { // expected-note{{default argument declared here}}
30 void b1(A a = A()); // expected-error{{use of default argument to function 'A' that is declared later in class 'A'}}
42 A(int a = 42); // expected-note{{default argument declared here}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p3.cpp 13 // been declared inline.
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p9.cpp 5 extern S f(); // expected-note {{'f' declared here}}
  /external/clang/test/PCH/
typo.m 3 // In header: expected-note{{declared here}}
typo2.cpp 12 // expected-note@7{{'Test' declared here}}
  /external/clang/test/Parser/
cxx0x-rvalue-reference.cpp 7 int & &&ar = a; // expected-error{{'ar' declared as a reference to a reference}}

Completed in 941 milliseconds

1 23 4 5 6 7 8 91011>>