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

<<11121314151617181920>>

  /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...]
ms-delayed-default-template-args.cpp 60 // unique undeclared identifiers so typo correction doesn't find types declared
88 // expected-note@-1 {{template parameter is declared here}}
  /external/clang/test/Sema/
dllexport.c 50 __declspec(dllexport) static int StaticGlobal; // expected-error{{'StaticGlobal' must have external linkage when declared 'dllexport'}}
53 __declspec(dllexport) __thread int ThreadLocalGlobal; // expected-error{{'ThreadLocalGlobal' cannot be thread local when declared 'dllexport'}}
57 __declspec(dllexport) int LocalVarDecl; // expected-error{{'LocalVarDecl' must have external linkage when declared 'dllexport'}}
58 __declspec(dllexport) int LocalVarDef = 1; // expected-error{{'LocalVarDef' must have external linkage when declared 'dllexport'}}
60 __declspec(dllexport) static int StaticLocalVar; // expected-error{{'StaticLocalVar' must have external linkage when declared 'dllexport'}}
110 __declspec(dllexport) static int staticFunc(); // expected-error{{'staticFunc' must have external linkage when declared 'dllexport'}}
callingconv.c 66 void __attribute__((stdcall)) typedef_fun(int x) { } // expected-error {{function declared 'stdcall' here was previously declared without calling convention}}
  /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/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 8 void f(X); // expected-note 2 {{'N::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.
  /external/clang/test/CXX/special/class.inhctor/
p4.cpp 13 A(X<2>) {} // expected-note {{declared private here}}
18 using A::A; // expected-error {{private constructor}} expected-note {{implicitly declared protected here}}
  /external/clang/test/OpenMP/
parallel_if_messages.cpp 10 struct S1; // expected-note {{declared here}}
12 template <class T, class S> // expected-note {{declared here}}
target_if_messages.cpp 10 struct S1; // expected-note {{declared here}}
12 template <class T, class S> // expected-note {{declared here}}
task_final_messages.cpp 10 struct S1; // expected-note {{declared here}}
12 template <class T, class S> // expected-note {{declared here}}
task_if_messages.cpp 10 struct S1; // expected-note {{declared here}}
12 template <class T, class S> // expected-note {{declared here}}
  /external/clang/test/SemaCXX/
i-c-e-cxx.cpp 19 const int t=t; // expected-note {{declared here}} expected-note {{read of object outside its lifetime}}
65 const int nonconst = 1.0; // expected-note {{declared here}}
ms-interface.cpp 4 // expected-error@+1 {{user-declared constructor is not permitted within an interface type}}
6 // expected-error@+1 {{user-declared destructor is not permitted within an interface type}}
typedef-redecl.cpp 16 typedef int Y2; // expected-note{{declared here}}
59 typedef T f(T t) { return t; } // expected-error {{function definition declared 'typedef'}}
  /external/clang/test/SemaObjC/
arc-objcbridge-related-attribute.m 4 typedef struct __attribute__((objc_bridge_related(NSColor,colorWithCGColor:,CGColor))) CGColor *CGColorRef; // expected-note 5 {{declared here}}
8 @interface NSColor // expected-note 5 {{declared here}}
arc-system-header.m 31 // This is actually okay to use if declared in a system header.
47 // expected-note@arc-system-header.h:41 2 {{property 'prop' is declared unavailable here}}
atomoic-property-synnthesis-rules.m 110 @property int Get; // expected-note {{property declared here}} \
112 @property int Set; // expected-note {{property declared here}} \
132 @property(readonly) int Get_ReadWriteInExt; // expected-note {{property declared here}} \
134 @property(readonly) int Set_ReadWriteInExt; // expected-note {{property declared here}} \
145 @property int Get_LateSynthesize; // expected-note {{property declared here}} \
147 @property int Set_LateSynthesize; // expected-note {{property declared here}} \
165 @property(readonly) int Get_ReadWriteInExt_LateSynthesize; // expected-note {{property declared here}} \
167 @property(readonly) int Set_ReadWriteInExt_LateSynthesize; // expected-note {{property declared here}} \
property.m 5 int IVAR; // expected-note{{instance variable is declared here}}
60 @property int treeController; // expected-note {{property declared here}}
  /external/clang/test/SemaObjCXX/
arc-unavailable-for-weakref.mm 5 @interface NSOptOut1072 // expected-note {{class is declared here}}
8 @interface sub : NSOptOut1072 @end // expected-note 2 {{class is declared here}}
  /external/google-breakpad/src/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/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

Completed in 1938 milliseconds

<<11121314151617181920>>