HomeSort by relevance Sort by last modified time
    Searched full:declared (Results 26 - 50 of 3775) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.ref/
p5.cpp 21 & // expected-error {{declared as a reference to a reference}}
43 * // expected-error {{declared as a pointer to a reference}}
51 * // expected-error {{declared as a pointer to a reference}}
56 * // expected-error {{declared as a pointer to a reference}}
61 * // expected-error {{declared as a pointer to a reference}}
65 * // expected-error {{declared as a pointer to a reference}}
79 [ // expected-error {{declared as array of references}}
86 [ // expected-error {{declared as array of references}}
96 [ // expected-error {{declared as array of references}}
103 [ // expected-error {{declared as array of references}
    [all...]
  /external/clang/test/SemaObjC/
forward-protocol-incomplete-impl-warn.m 7 - (void)invalidate; // expected-note {{method 'invalidate' declared here}}
8 @property int Prop; // expected-note {{property declared here}}
18 @implementation IBImageCatalogDocument // expected-warning {{auto property synthesis will not synthesize property 'Prop' declared in protocol 'DVTInvalidation'}} \
property-category-4.m 10 @property (readwrite, retain) id selectedObjects; // expected-note {{property declared here}}
11 @property (readwrite, retain) id d_selectedObjects; // expected-note {{property declared here}}
15 @synthesize selectedObjects = _selectedObjects; // expected-error {{property declared in category 'CAT' cannot be implemented in class implementation}}
16 @dynamic d_selectedObjects; // expected-error {{property declared in category 'CAT' cannot be implemented in class implementation}}
98 @property (readonly) int p; // no warning for this property - a getter is declared in another category
99 @property (readonly) int p1; // expected-note {{property declared here}}
100 @property (readonly) int p2; // no warning for this property - a getter is declared in this category
109 @property (readonly) float anotherFloat; // expected-note {{property declared here}}
110 @property (readonly) float Float; // no warning for this property - a getter is declared in this protocol
circular-container.m 46 NSMutableArray *_array; // expected-note {{'_array' declared here}}
47 NSMutableDictionary *_dictionary; // expected-note {{'_dictionary' declared here}}
48 NSMutableSet *_set; // expected-note {{'_set' declared here}}
49 NSCountedSet *_countedSet; // expected-note {{'_countedSet' declared here}}
50 NSMutableOrderedSet *_orderedSet; // expected-note {{'_orderedSet' declared here}}
64 - (void)checkNSMutableArray:(NSMutableArray *)a { // expected-note {{'a' declared here}}
68 - (void)checkNSMutableDictionary:(NSMutableDictionary *)d { // expected-note {{'d' declared here}}
72 - (void)checkNSMutableSet:(NSMutableSet *)s { // expected-note {{'s' declared here}}
76 - (void)checkNSCountedSet:(NSCountedSet *)s { // expected-note {{'s' declared here}}
80 - (void)checkNSMutableOrderedSet:(NSMutableOrderedSet *)s { // expected-note {{'s' declared here}
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p8.cpp 5 template<class T> friend class A<T*>; // expected-error{{partial specialization cannot be declared as a friend}}
  /external/clang/test/Modules/Inputs/
redecl-merge-bottom-prefix.h 1 // A class that is declared in the 'bottom' module, then loaded from
  /external/clang/test/Sema/
block-return-2.c 4 ^ (void) __attribute__((noreturn)) { }(); // expected-error {{block declared 'noreturn' should not return}}
warn-sizeof-arrayarg.c 8 // expected-note {{declared here}} \
9 // expected-note {{declared here}} \
10 // expected-note {{declared here}} \
11 // expected-note {{declared here}}
  /external/clang/test/SemaCXX/
attr-regparm.cpp 14 void __attribute__((regparm(2))) X0::f2() { } // expected-error{{function declared with regparm(2) attribute was previously declared with the regparm(3) attribute}}
15 void __attribute__((regparm(2))) X0::f3() { } // expected-error{{function declared with regparm(2) attribute was previously declared without the regparm attribute}}
constructor-recovery.cpp 4 virtual C() = 0; // expected-error{{constructor cannot be declared 'virtual'}}
illegal-member-initialization.cpp 17 int &value; // expected-note{{declared here}}
18 const int cvalue; // expected-note{{declared here}}
19 B& b; // expected-note{{declared here}}
20 const B cb; // expected-note{{declared here}}
function-overload-typo-crash.cpp 4 void min(); //expected-note {{'min' declared here}}
7 template <typename T> void max(T); //expected-note {{'max' declared here}}
14 template <typename T> void somefunc(T*, T*); //expected-note {{'somefunc' declared here}}
15 template <typename T> void somefunc(const T[]); //expected-note {{'somefunc' declared here}}
16 template <typename T1, typename T2> void somefunc(T1*, T2*); //expected-note {{'somefunc' declared here}}
17 template <typename T1, typename T2> void somefunc(T1*, const T2[]); //expected-note 2 {{'somefunc' declared here}}
decl-microsoft-call-conv.cpp 16 void __stdcall free_func_default(); // expected-error {{function declared 'stdcall' here was previously declared without calling convention}}
17 void __fastcall free_func_default(); // expected-error {{function declared 'fastcall' here was previously declared without calling convention}}
20 void __stdcall free_func_cdecl(); // expected-error {{function declared 'stdcall' here was previously declared 'cdecl'}}
21 void __fastcall free_func_cdecl(); // expected-error {{function declared 'fastcall' here was previously declared 'cdecl'}}
24 void __cdecl free_func_stdcall(); // expected-error {{function declared 'cdecl' here was previously declared 'stdcall'}
    [all...]
  /external/libxml2/test/VC/
ElementValid4 7 <doc> This <b>seems</b> Ok <a/> but this <c>was not declared</c></doc>
ElementValid5 7 <doc><a/><b> but this</b><c>was not declared</c><b>seems</b></doc>
  /external/libxml2/test/WFC/
EntityDeclared5 6 <a> violates [ WFC: Entity Declared ] </a>
  /external/clang/test/ASTMerge/
function.c 6 // CHECK: function2.c:3:6: error: external function 'f1' declared with incompatible types in different translation units ('void (Int, double)' vs. 'void (int, float)')
7 // CHECK: function1.c:2:6: note: declared here with type 'void (int, float)'
8 // CHECK: function2.c:5:6: error: external function 'f3' declared with incompatible types in different translation units ('void (int)' vs. 'void (void)')
9 // CHECK: function1.c:4:6: note: declared here with type 'void (void)'
12 // expected-error@Inputs/function2.c:3 {{external function 'f1' declared with incompatible types}}
13 // expected-note@Inputs/function1.c:2 {{declared here}}
14 // expected-error@Inputs/function2.c:5 {{external function 'f3' declared with incompatible types}}
15 // expected-note@Inputs/function1.c:4 {{declared here}}
var.c 5 // CHECK: var2.c:2:9: error: external variable 'x1' declared with incompatible types in different translation units ('double *' vs. 'float **')
6 // CHECK: var1.c:2:9: note: declared here with type 'float **'
7 // CHECK: var2.c:3:5: error: external variable 'x2' declared with incompatible types in different translation units ('int' vs. 'double')
9 // CHECK: var1.h:1:8: note: declared here with type 'double'
10 // CHECK: error: external variable 'xarray3' declared with incompatible types in different translation units ('int [17]' vs. 'int [18]')
11 // CHECK: var1.c:7:5: note: declared here with type 'int [18]'
  /external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/basic.stc.dynamic.deallocation/
p1.cpp 8 void operator delete(void *); // expected-error {{'operator delete' cannot be declared inside a namespace}}
12 static void operator delete(void *, int, int); // expected-error {{'operator delete' cannot be declared static in global scope}}
  /external/clang/test/CXX/class/class.local/
p1.cpp 7 int x; // expected-note{{'x' declared here}}
11 int g() { return x; } // expected-error{{reference to local variable 'x' declared in enclosing function 'f'}}
p3.cpp 24 void f3(int a) { // expected-note{{'a' declared here}}
27 int f() { return a; } // expected-error{{reference to local variable 'a' declared in enclosing function 'f3'}}
  /external/clang/test/CXX/drs/
dr412.cpp 14 inline void* operator new(size_t) BAD_ALLOC; // expected-error {{cannot be declared 'inline'}}
15 inline void* operator new[](size_t) BAD_ALLOC; // expected-error {{cannot be declared 'inline'}}
16 inline void operator delete(void*) NOEXCEPT; // expected-error {{cannot be declared 'inline'}}
17 inline void operator delete[](void*) NOEXCEPT; // expected-error {{cannot be declared 'inline'}}
19 inline void operator delete(void*, size_t) NOEXCEPT; // expected-error {{cannot be declared 'inline'}}
20 inline void operator delete[](void*, size_t) NOEXCEPT; // expected-error {{cannot be declared 'inline'}}
  /external/clang/test/Analysis/
vla.c 8 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has zero size}}
13 int vla[x]; // expected-warning{{Declared variable-length array (VLA) uses a garbage value as its size}}
18 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has negative size}}
35 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has negative size}}
45 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has negative size}}
60 int vla[x - 2]; // expected-warning{{Declared variable-length array (VLA) has negative size}}
70 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has negative size}}
  /cts/tools/signature-tools/src/signature/model/
IClassDefinition.java 81 * Returns the declared interfaces this class definition implements . If no
82 * interfaces are declared, an empty set is returned.
84 * @return the declared interfaces for this class definition
96 * Returns all declared methods of this class definition.
98 * @return all declared methods of this class definition
103 * Returns all declared constructors of this class definition.
105 * @return all declared constructors of this class definition
110 * Returns all declared fields of this class definition.
112 * @return all declared fields of this class definition
117 * Returns all declared enumeration constant definitions of this clas
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p10.cpp 3 int GlobalVar; // expected-note {{declared here}}
19 int variable; // expected-note {{declared here}}
28 int local; // expected-note{{declared here}}
29 static int local_static; // expected-note{{'local_static' declared here}}
33 (void)[local, // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}

Completed in 792 milliseconds

12 3 4 5 6 7 8 91011>>