HomeSort by relevance Sort by last modified time
    Searched full:declared (Results 401 - 425 of 3935) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaObjC/
weak-receiver-warn.m 26 @property __weak Test* weak_prop; // expected-note {{property declared here}}
27 @property (weak, atomic) id weak_atomic_prop; // expected-note {{property declared here}}
28 - (__weak id) P; // expected-note {{method 'P' declared here}}
55 @property (weak) MyClass *parent; // expected-note 4 {{property declared here}}
73 @property (weak) id object; // expected-note 2 {{property 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 declared in a protocol}}
  /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/chromium_org/chrome/common/extensions/api/
page_actions.json 16 {"type": "string", "name": "pageActionId", "description": "An extension can have multiple page actions specified in the manifest, each with a unique identifier. This string identifies which page action you want to enable (and must match a page action id declared in the manifest)."},
24 "title": {"type": "string", "optional": true, "description": "Specifying <b>title</b> allows you to change the tooltip that appears when you hover over the page action icon in the OmniBox. This parameter is optional and if omitted then the page action <b>name</b> property declared in the manifest is used."},
36 {"type": "string", "name": "pageActionId", "description": "An extension can have multiple page actions specified in the manifest, each with a unique identifier. This string identifies which page action you want to disable (and must match a page action id declared in the manifest)."},
  /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}}
78 constexpr int main() { } // expected-error{{'main' is not allowed to be declared constexpr}}
  /external/clang/test/Parser/
MicrosoftExtensions.c 60 enum __declspec(deprecated) E2 { i, j, k }; // expected-note {{declared here}}
61 __declspec(deprecated) enum E3 { a, b, c } e; // expected-note {{declared here}}
100 __declspec(property(get=foo) deprecated) int t; // expected-note {{declared here}}
  /external/clang/test/Sema/
MicrosoftExtensions.c 93 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1' declared here}}
94 struct __declspec(deprecated) DS1 { int i; float f; }; // expected-note {{declared here}}
97 __declspec(deprecated(MY_TEXT)) void Dfunc1( void ) {} // expected-note {{'Dfunc1' 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}}
  /external/clang/test/SemaCXX/
extern-c.cpp 15 extern int test2_x; // expected-note {{declared with C language linkage here}}
34 extern int test4_b; // expected-note {{declared with C language linkage here}}
41 extern int test5_b; // expected-note {{declared with C language linkage here}}
lambda-expressions.cpp 48 int a = 0; // expected-note 5 {{declared}}
62 union { // expected-note {{declared}}
69 __block int e; // expected-note 3 {{declared}}
73 int f[10]; // expected-note {{declared}}
84 const int h = a; // expected-note {{declared}}
90 int &ref_i = i; // expected-note {{declared}}
  /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}}
  /external/clang/test/SemaTemplate/
dependent-names.cpp 155 void f(int&); // expected-note {{'f' should be declared prior to the call site}}
167 void f(char&); // expected-note {{'f' should be declared prior to the call site}}
193 int Multiply(int x, int y) { // expected-note {{should be declared prior to the call site}}
213 std::ostream& operator<<(std::ostream& out, ns::Data data) { // expected-note {{should be declared prior to the call site or in namespace 'PR10053::my_file2::ns'}}
235 std::ostream &print(std::ostream &out, int); // expected-note-re {{should be declared prior to the call site$}}
236 std::ostream &print(std::ostream &out, ns::Data); // expected-note {{should be declared prior to the call site or in namespace 'PR10053::my_file2_a::ns'}}
237 std::ostream &print(std::ostream &out, std::vector<ns2::Data>); // expected-note {{should be declared prior to the call site or in namespace 'PR10053::my_file2_a::ns2'}}
238 std::ostream &print(std::ostream &out, std::pair<ns::Data, ns2::Data>); // expected-note {{should be declared prior to the call site or in an associated namespace of one of its arguments}}
258 ns::Data operator!(ns::Data); // expected-note {{should be declared prior to the call site or in namespace 'PR10053::unary::ns'}}
354 struct A : public B { // expected-note{{'rdar12629723::X::A' declared here}
    [all...]
  /external/protobuf/gtest/test/
gtest_nc_test.py 75 [r'BarTest.*was not declared']),
78 [r'BarTest.*was not declared']),
81 [r'BarTest.*not declared']),
  /device/generic/goldfish/opengl/
Android.mk 44 # be imported by module B when it is declared.
47 # module that hasn't been declared yet anyway.
  /external/bison/m4/
signbit.m4 18 If signbit is not declared at all but exists as a library function, don't
20 If signbit is not declared at all but exists as a compiler built-in, don't
84 dnl Test whether copysignf() is declared.
101 [Define if the copysignf function is declared in <math.h> and available in libc.])
106 dnl Test whether copysign() is declared.
123 [Define if the copysign function is declared in <math.h> and available in libc.])
128 dnl Test whether copysignl() is declared.
145 [Define if the copysignl function is declared in <math.h> and available in libc.])
  /external/chromium/testing/gtest/test/
gtest_prod_test.cc 37 // Tests that private members can be accessed from a TEST declared as
49 // Tests that private members can be accessed from a TEST_F declared
  /external/chromium_org/crypto/
nss_util_internal.h 20 // declared in nss_util.h. Hence, they are declared here.
  /external/chromium_org/mojo/common/test/
multiprocess_test_base.h 29 // declared using |MOJO_MULTIPROCESS_TEST_CHILD_MAIN()| (below).
32 // Returns the exit code of the child process. Note that, though it's declared
  /external/chromium_org/testing/gtest/test/
gtest_prod_test.cc 37 // Tests that private members can be accessed from a TEST declared as
49 // Tests that private members can be accessed from a TEST_F declared
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/
SConscript 17 '_GDI32_', # prevent gl* being declared __declspec(dllimport) in MS headers
23 # prevent _glapi_* from being declared __declspec(dllimport)
  /external/chromium_org/v8/test/mjsunit/regress/
regress-799761.js 47 // const variables may be declared but never initialized, in which case
85 // const variables may be declared via 'eval'
  /external/clang/test/Analysis/
inline.c 26 // Test that inlining works when the declared function has less arguments
97 // Test inlining a forward-declared function.
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
p2.cpp 20 void f(); // expected-note 2 {{'f' declared here}}
53 g(x); // okay; calls locally-declared function, no ADL
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5.cpp 44 unsigned bitX : 4; // expected-note 4 {{bit-field is declared here}}
45 unsigned bitY : 4; // expected-note {{bit-field is declared here}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p5.cpp 19 // This function call operator is declared const (9.3.1) if and only
33 // It is neither virtual nor declared volatile.

Completed in 1416 milliseconds

<<11121314151617181920>>