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

<<11121314151617181920>>

  /external/clang/test/Sema/
implicit-decl.c 6 extern int printf(__const char *__restrict __format, ...); // expected-note{{'printf' declared here}}
27 extern int sformatf(char *str, __const char *__restrict __format, ...); // expected-note{{'sformatf' declared here}}
invalid-decl.c 16 ytype globals_size; // expected-error {{field 'globals_size' declared as a function}}
27 FunctionType fun; // expected-error {{field 'fun' declared as a function}}
knr-def-call.c 15 void f2(x) float x; { } // expected-warning{{promoted type 'double' of K&R function parameter is not compatible with the parameter type 'float' declared in a previous prototype}}
26 register char *s, c; // expected-warning{{promoted type 'char *' of K&R function parameter is not compatible with the parameter type 'const char *' declared in a previous prototype}}
stdcall-fastcall.c 10 void __attribute__((fastcall)) foo4(void); // expected-error{{function declared 'fastcall' here was previously declared 'stdcall'}}
unused-expr.c 28 sqrt(A); // expected-warning {{ignoring return value of function declared with const attribute}}
79 t5f(); // expected-warning {{ignoring return value of function declared with warn_unused_result}}
91 fn1(); // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
92 fn2(92, 21); // expected-warning {{ignoring return value of function declared with pure attribute}}
93 fn3(42); // expected-warning {{ignoring return value of function declared with const attribute}}
94 __builtin_fabsf(0); // expected-warning {{ignoring return value of function declared with const attribute}}
95 (void)0, fn1(); // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
104 fn4(); // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
  /external/clang/test/SemaCUDA/
function-target.cu 25 __global__ void d1g(void); // expected-note {{'d1g' declared here}}
37 __global__ void hd1g(void); // expected-note {{'hd1g' declared here}}
  /external/clang/test/SemaCXX/
new-array-size-conv.cpp 6 operator int () const { return ValueLength; } // expected-note 3{{conversion to integral type 'int' declared here}}
13 operator E() const; // expected-note{{conversion to enumeration type 'E' declared here}}
  /external/clang/test/SemaObjC/
compare-qualified-id.m 8 @protocol NSCopying - (id)copyWithZone:(NSZone *)zone; @end // expected-note {{method 'copyWithZone:' declared here}}
15 @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey; @end // expected-note {{receiver is instance of class declared here}}
continuation-class-property.m 36 @property (readonly) NSRect foo; // expected-note {{property declared here}}
37 @property (readonly, strong) NSString *bar; // expected-note {{property declared here}}
incomplete-implementation.m 4 - Meth; // expected-note 2 {{method 'Meth' declared here}}
18 - Meth; // expected-note{{method 'Meth' declared here}}
property-in-class-extension.m 40 - (NSObject *)warn; // expected-note {{method 'warn' declared here}}
41 - (void)setWarn : (NSObject *)val; // expected-note {{method 'setWarn:' declared here}}
  /external/valgrind/main/drd/tests/
fp_race.stderr.exp 5 declared at fp_race.c:24, in frame #? of thread 1
14 declared at fp_race.c:24, in frame #? of thread 1
hg03_inherit.stderr.exp 7 declared at hg03_inherit.c:11, in frame #? of thread 3
13 declared at hg03_inherit.c:11, in frame #? of thread 3
hg04_race.stderr.exp 7 declared at hg04_race.c:6, in frame #? of thread 2
17 declared at hg04_race.c:6, in frame #? of thread 2
hg05_race2.stderr.exp 7 declared at hg05_race2.c:24, in frame #? of thread 1
17 declared at hg05_race2.c:24, in frame #? of thread 1
rwlock_race.stderr.exp 6 declared at rwlock_race.c:18, in frame #? of thread x
12 declared at rwlock_race.c:18, in frame #? of thread x
rwlock_race.stderr.exp2 7 declared at rwlock_race.c:17, in frame #? of thread 3
13 declared at rwlock_race.c:17, in frame #? of thread 3
sem_as_mutex.stderr.exp 5 declared at sem_as_mutex.c:25, in frame #? of thread 1
14 declared at sem_as_mutex.c:25, in frame #? of thread 1
sem_open.stderr.exp 5 declared at sem_open.c:25, in frame #? of thread 1
14 declared at sem_open.c:25, in frame #? of thread 1
  /external/valgrind/main/memcheck/tests/
dw4.stderr.exp 12 a global variable declared at dw4.c:42
18 declared at dw4.c:46, in frame #1 of thread 1
  /libcore/luni/src/main/java/java/lang/reflect/
GenericDeclaration.java 27 * Returns the declared type parameters in declaration order. If there are
30 * @return the declared type parameters in declaration order
  /ndk/sources/host-tools/sed-4.2.1/m4/
unlocked-io.m4 12 dnl Use only those *_unlocked macros or functions that are declared
13 dnl (because some of them were declared in Solaris 2.5.1 but were removed
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3.cpp 4 auto a = a; // expected-error{{variable 'a' declared with 'auto' type cannot appear in its own initializer}}
5 auto *b = b; // expected-error{{variable 'b' declared with 'auto' type cannot appear in its own initializer}}
6 const auto c = c; // expected-error{{variable 'c' declared with 'auto' type cannot appear in its own initializer}}
7 if (auto d = d) {} // expected-error {{variable 'd' declared with 'auto' type cannot appear in its own initializer}}
8 auto e = ({ auto f = e; 0; }); // expected-error {{variable 'e' declared with 'auto' type cannot appear in its own initializer}}
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp 7 template<int *ip> struct IP { // expected-note 5 {{template parameter is declared here}}
17 std::nullptr_t nonconst_np; // expected-note{{declared here}}
35 template<int X::*pm> struct PM { // expected-note 2 {{template parameter is declared here}}
46 template<int (X::*pmf)(int)> struct PMF { // expected-note 2 {{template parameter is declared here}}
58 template<std::nullptr_t np> struct NP { // expected-note 2{{template parameter is declared here}}
  /external/clang/test/SemaTemplate/
nested-name-spec-template.cpp 105 void nt() // expected-note{{function template 'nt' declared here}}
110 void f(T*); // expected-note{{function template 'f' declared here}}
113 void f(T*, T*); // expected-note{{function template 'f' declared here}}
120 template<typename T> void f(); // expected-note{{function template 'f' declared here}}
133 struct s; // expected-note{{template is declared here}}

Completed in 440 milliseconds

<<11121314151617181920>>