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

<<11121314151617181920>>

  /external/clang/test/SemaObjC/
related-result-type-inference.m 89 - (Unrelated *)initBlah; // expected-warning{{method is expected to return an instance of its class type 'B', but is declared to return 'Unrelated *'}}
96 - (Unrelated *)initBlah { // expected-warning{{method is expected to return an instance of its class type 'C', but is declared to return 'Unrelated *'}}
110 + (Unrelated *)newBlarg { // expected-warning{{method is expected to return an instance of its class type 'D', but is declared to return 'Unrelated *'}}
114 + (Unrelated *)alloc { // expected-warning{{method is expected to return an instance of its class type 'D', but is declared to return 'Unrelated *'}}
125 - (int)initBlah; // expected-warning{{protocol method is expected to return an instance of the implementing class, but is declared to return 'int'}}
153 - (id)_ABC_init __attribute__((objc_method_family(init))); // expected-note {{method '_ABC_init' declared here}}
default-synthesize.m 108 @property int p; // expected-note 2 {{property declared here}}
130 @property (nonatomic, strong) NSString *requiredString; // expected-note {{property declared here}}
139 @implementation MyClass // expected-warning {{auto property synthesis will not synthesize property 'requiredString' declared in protocol 'MyProtocol'}}
  /external/valgrind/memcheck/tests/
varinfo3.stderr.exp 6 a global variable declared at varinfo3.c:35
13 a global variable declared at varinfo3.c:36
20 a global variable declared at varinfo3.c:37
27 a global variable declared at varinfo3.c:38
42 declared at varinfo3.c:51, in frame #2 of thread 1
57 declared at varinfo3.c:53, in frame #2 of thread 1
varinfo3.stderr.exp-ppc64 6 a global variable declared at varinfo3.c:35
13 a global variable declared at varinfo3.c:36
20 a global variable declared at varinfo3.c:37
27 a global variable declared at varinfo3.c:38
42 declared at varinfo3.c:51, in frame #2 of thread 1
57 declared at varinfo3.c:53, in frame #2 of thread 1
  /external/webrtc/src/system_wrappers/interface/
data_log_impl.h 86 // The implementation of the CreateLog() method declared in data_log.h.
90 // The implementation of the StaticInstance() method declared in data_log.h.
94 // The implementation of the ReturnLog() method declared in data_log.h. See
98 // The implementation of the AddTable() method declared in data_log.h. See
102 // The implementation of the AddColumn() method declared in data_log.h. See
115 // The implementation of the NextRow() method declared in data_log.h. See
  /external/selinux/secilc/docs/
cil_type_statements.xml 80 <para>Associates a previously declared <literal><link linkend="typealias">typealias</link></literal> identifier to a previously declared <literal><link linkend="type">type</link></literal> identifier.</para>
102 <para>A single previously declared <literal><link linkend="typealias">typealias</link></literal> identifier.</para>
110 <para>A single previously declared <literal><link linkend="type">type</link></literal> identifier.</para>
166 <para>Allows the association of one or more previously declared <literal><link linkend="type">type</link></literal>, <literal><link linkend="typealias">typealias</link></literal> or <literal><link linkend="typeattribute">typeattribute</link></literal> identifiers to a <literal><link linkend="typeattribute">typeattribute</link></literal> identifier. Expressions may be used to refine the associations as shown in the examples.</para>
188 <para>A single previously declared <literal><link linkend="typeattribute">typeattribute</link></literal> identifier.</para>
196 <para>Zero or more previously declared <literal><link linkend="type">type</link></literal>, <literal><link linkend="typealias">typealias</link></literal> or <literal><link linkend="typeattribute">typeattribute</link></literal> identifiers.</para>
197 <para>Note that there must be at least one <literal>type_id</literal> or <literal>expr</literal> parameter declared.</para>
267 <para>A single previously declared <literal><link linkend="type">type</link></literal> or <literal><link linkend="typealias">typealias</link></literal> identifier that is the parent domain.</para>
275 <para>A single previously declared <literal><link linkend="type">type</link></literal> or <literal><link linkend="typealias">typealia (…)
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p5.cpp 48 template<X const *Ptr> struct A2; // expected-note{{template parameter is declared here}}
66 template <int *> struct zed {}; // expected-note 2{{template parameter is declared here}}
81 template <int& N> struct S0 { }; // expected-note 3 {{template parameter is declared here}}
82 template <const int& N> struct S1 { }; // expected-note 2 {{template parameter is declared here}}
83 template <volatile int& N> struct S2 { }; // expected-note 2 {{template parameter is declared here}}
128 template <int& i> struct foo {}; // expected-note{{template parameter is declared here}}
141 template<int (*)(int)> struct X0 { }; // expected-note 3{{template parameter is declared here}}
158 template<int (&)(int)> struct X0 { }; // expected-note 4{{template parameter is declared here}}
184 template<int (Y::*)(int)> struct X0 {}; // expected-note{{template parameter is declared here}}
198 template<int Y::*> struct X0 {}; // expected-note{{template parameter is declared here}
    [all...]
  /external/clang/test/Parser/
cxx-template-decl.cpp 72 template<typename T, // expected-note{{template parameter is declared here}}
76 template<typename T> // expected-note{{template parameter is declared here}}
79 template<typename T> // expected-note{{template parameter is declared here}}
83 template<int Size> // expected-note{{template parameter is declared here}}
97 template<typename T, // expected-note{{template parameter is declared here}}
101 template<typename T, // expected-note{{template parameter is declared here}}
106 template<template<typename> class T> struct shadow8 { // expected-note{{template parameter is declared here}}
  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 39 struct B // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
44 union C // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
50 typedef int D; // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
51 struct F; // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
58 struct B2 // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
63 union C2 // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
69 typedef int D2; // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
70 struct F2; // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
391 // expected-note@+2 {{'SealedType' declared here}}
function-redecl.cpp 31 void typocorrection(); // expected-note {{'typocorrection' declared here}}
40 void Bar(); // expected-note {{'Bar' declared here}}
49 void typocorrection(const int); // expected-note {{'typocorrection' declared here}}
108 void BeEvil(); // expected-note {{'BeEvil' declared here}}
112 bool isGood(); // expected-note {{'Bar::Foo::isGood' declared here}}
virtual-base-used.cpp 9 // expected-note@+2 3 {{declared private here}}
11 class NoDestroy { ~NoDestroy(); }; // expected-note 3 {{declared private here}}
63 // expected-note@+3 {{'H' declared here}}
  /external/clang/test/Sema/
block-misc.c 187 void (^const blockA)(void) = ^{ }; // expected-note {{variable 'blockA' declared const here}}
205 int vla[n]; // expected-note {{declared here}}
206 int (*vm)[n] = 0; // expected-note {{declared here}}
216 int a[7]; // expected-note {{declared here}}
217 __block int b[10]; // expected-note {{declared here}}
inline.c 9 static int staticVar; // expected-note + {{'staticVar' declared here}}
10 static int staticFunction(); // expected-note + {{'staticFunction' declared here}}
11 static struct { int x; } staticStruct; // expected-note + {{'staticStruct' declared here}}
  /development/samples/TicTacToeMain/
_index.html 11 which is declared in the library project. </p>
25 targeted at the <code>GameActivity</code> component declared in the TicTacToeLib
63 <img alt="Screenshot of an Activity declared in a library project" src="../images/TicTacToeLib.png" />
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 54 * a constant from ones declared in this class
86 * a constant from ones declared in this class
120 * a constant from ones declared in this class
164 * a constant from ones declared in this class
224 * a constant from ones declared in this class
331 * a constant from ones declared in this class
511 * a constant from ones declared in this class
651 * a constant from ones declared in this class
681 * a constant from ones declared in this class
711 * a constant from ones declared in this clas
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
JDWPClassTypeTestCase.java 124 int declared = reply.getNextValueAsInt(); local
125 FieldInfo[] fields = new FieldInfo[declared];
126 for (int i = 0; i < declared; i++) {
  /external/clang/test/CXX/basic/basic.start/basic.start.main/
p2.cpp 49 static int main() { // expected-error {{'main' is not allowed to be declared static}}
54 inline int main() { // expected-error {{'main' is not allowed to be declared inline}}
80 constexpr int main() { } // expected-error{{'main' is not allowed to be declared constexpr}}
  /external/clang/test/OpenMP/
parallel_firstprivate_messages.cpp 10 struct S1; // expected-note {{declared here}} expected-note{{forward declaration of 'S1'}}
35 S4(const S4 &s4); // expected-note {{implicitly declared private here}}
42 S5(const S5 &s5):a(s5.a) { } // expected-note {{implicitly declared private here}}
parallel_for_copyin_messages.cpp 10 struct S1; // expected-note {{declared here}}
28 S4 &operator=(const S4 &s4); // expected-note {{implicitly declared private here}}
36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}}
parallel_for_simd_copyin_messages.cpp 10 struct S1; // expected-note {{declared here}}
28 S4 &operator=(const S4 &s4); // expected-note {{implicitly declared private here}}
36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}}
parallel_private_messages.cpp 10 struct S1; // expected-note {{declared here}} expected-note{{forward declaration of 'S1'}}
30 S4(); // expected-note {{implicitly declared private here}}
36 S5():a(0) {} // expected-note {{implicitly declared private here}}
task_firstprivate_messages.cpp 10 struct S1; // expected-note {{declared here}} expected-note{{forward declaration of 'S1'}}
37 S4(const S4 &s4); // expected-note 2 {{implicitly declared private here}}
45 S5(const S5 &s5) : a(s5.a) {} // expected-note 2 {{implicitly declared private here}}
task_private_messages.cpp 10 struct S1; // expected-note {{declared here}} expected-note{{forward declaration of 'S1'}}
32 S4(); // expected-note {{implicitly declared private here}}
39 S5() : a(0) {} // expected-note {{implicitly declared private here}}
teams_firstprivate_messages.cpp 10 struct S1; // expected-note {{declared here}} expected-note{{forward declaration of 'S1'}}
37 S4(const S4 &s4); // expected-note {{implicitly declared private here}}
44 S5(const S5 &s5) : a(s5.a) {} // expected-note {{implicitly declared private here}}
  /external/clang/test/SemaObjCXX/
arc-0x.mm 39 __autoreleasing id p; // expected-note 2 {{'p' declared here}}
46 __autoreleasing id &p = v; // expected-note 2 {{'p' declared here}}
52 __autoreleasing id v; // expected-note {{'v' declared here}}

Completed in 1746 milliseconds

<<11121314151617181920>>