HomeSort by relevance Sort by last modified time
    Searched full:previous (Results 1 - 25 of 7416) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/basic/basic.scope/basic.scope.local/
p4-0x.cpp 7 if (bool b = true) // expected-note 2{{previous definition}}
11 while (bool b = true) // expected-note {{previous definition}}
13 for (int c; // expected-note 2{{previous definition}}
16 switch (int n = 37 + 5) // expected-note {{previous definition}}
18 for (int a : arr) // expected-note {{previous definition}}
21 if (bool b = true) { // expected-note 2{{previous definition}}
26 while (bool b = true) { // expected-note {{previous definition}}
29 for (int c; // expected-note 2{{previous definition}}
33 switch (int n = 37 + 5) { // expected-note {{previous definition}}
36 for (int &a : arr) { // expected-note {{previous definition}
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
p7.cpp 3 namespace NIL {} // expected-note {{previous definition}}
5 inline namespace IL {} // expected-note {{previous definition}}
8 namespace {} // expected-note {{previous definition}}
11 inline namespace {} // expected-note {{previous definition}}
  /external/clang/test/Sema/
warn-missing-variable-declarations.c 3 int vbad1; // expected-warning{{no previous extern declaration for non-static variable 'vbad1'}}
6 int vbad2 = 10; // expected-warning{{no previous extern declaration for non-static variable 'vbad2'}}
10 } vbad3; // expected-warning{{no previous extern declaration for non-static variable 'vbad3'}}
13 int vbad4 = 10; // expected-warning{{no previous extern declaration for non-static variable 'vbad4'}}
attr-visibility.c 10 struct __attribute__((visibility("hidden"))) test4; // expected-note {{previous attribute is here}}
12 struct __attribute__((visibility("default"))) test4; // expected-error {{visibility does not match previous declaration}}
15 struct __attribute__((visibility("hidden"))) test5; // expected-note {{previous attribute is here}}
16 struct __attribute__((visibility("default"))) test5; // expected-error {{visibility does not match previous declaration}}
18 void test6() __attribute__((visibility("hidden"), // expected-note {{previous attribute is here}}
19 visibility("default"))); // expected-error {{visibility does not match previous declaration}}
21 extern int test7 __attribute__((visibility("default"))); // expected-note {{previous attribute is here}}
22 extern int test7 __attribute__((visibility("hidden"))); // expected-error {{visibility does not match previous declaration}}
array-declared-as-incorrect-type.c 6 extern int a2[]; // expected-note {{previous definition is here}}
12 extern int a4[][2]; // expected-note {{previous definition is here}}
15 extern int a5[1][2][3]; // expected-note {{previous definition is here}}
var-redecl.c 3 int outer1; // expected-note{{previous definition is here}}
4 extern int outer2; // expected-note{{previous definition is here}}
6 int outer4; // expected-note{{previous definition is here}}
8 int outer6(float); // expected-note{{previous definition is here}}
14 extern float outer3; // expected-note{{previous definition is here}}
16 extern int outer5; // expected-note{{previous definition is here}}
19 extern int outer8; // expected-note{{previous definition is here}}
22 extern int outer9; // expected-note{{previous definition is here}}
32 extern int outer13; // expected-note{{previous definition is here}}
35 extern int outer11; // expected-note{{previous definition is here}
    [all...]
predefined-function.c 7 int eli(float b); // expected-note {{previous declaration is here}} \
19 int bar(int i) // expected-note {{previous definition is here}}
28 int foobar(int); // note {{previous declaration is here}}
34 int wibble(); // expected-note {{previous declaration is here}}
  /frameworks/compile/slang/tests/P_redefine_RS_VERSION/
stderr.txt.expect 2 <built-in>:1:9: note: previous definition is here
  /external/llvm/test/MC/ELF/
elf_directive_previous.s 9 .previous
12 .previous
  /external/llvm/test/MC/MachO/
previous.s 9 .previous
12 .previous
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p4-neg.cpp 3 template<typename T> void f0(T) { } // expected-note{{previous}}
6 template<int I> void f0() { } // expected-note{{previous}}
12 void f0() { } // expected-note{{previous}}
20 typename MetaFun<T*>::type f0(const T&) { while (1) {} } // expected-note{{previous}}
26 // template<int I> void f0(A<I>) { } // Xpected-note{{previous}}
  /libcore/luni/src/main/java/java/util/
ListIterator.java 29 * {@code previous}. The object inserted will be the previous object.
51 * Returns whether there are previous elements to iterate.
53 * @return {@code true} if there are previous elements, {@code false}
55 * @see #previous
81 * Returns the previous object in the iteration.
83 * @return the previous object.
85 * if there are no previous elements.
88 public E previous(); method in interface:ListIterator
91 * Returns the index of the previous object in the iteration
    [all...]
  /external/clang/test/SemaCXX/
copy-constructor-error.cpp 14 foo(foo&, int); // expected-note {{previous}}
15 foo(int); // expected-note {{previous}}
16 foo(const foo&); // expected-note {{previous}}
26 inline A(A&, int); // expected-note {{previous}}
39 A(int, int, int); // expected-note {{previous}}
47 B(const B&, int); // expected-note {{previous}}
54 C(const C&, int); // expected-note {{previous}}
  /external/clang/test/SemaObjC/
check-dup-objc-decls-1.m 3 @interface Foo // expected-note {{previous definition is here}}
8 @class Bar; // expected-note {{previous definition is here}}
16 typedef int OBJECT; // expected-note {{previous definition is here}}
21 typedef int Gorf; // expected-note {{previous definition is here}}
23 @interface Gorf @end // expected-error {{redefinition of 'Gorf' as different kind of symbol}} expected-note {{previous definition is here}}
32 @interface A<P> @end // expected-note {{previous definition is here}}
35 @protocol PP<P> @end // expected-note {{previous definition is here}}
38 @interface A(Cat)<P> @end // expected-note {{previous definition is here}}
43 NSString * TestBaz; // expected-note {{previous definition is here}}
duplicate-ivar-in-class-extension.m 7 int iSuper; // expected-note {{previous declaration is here}}
19 int ivar; // expected-note {{previous declaration is here}}
24 int another_ivar; // expected-note {{previous declaration is here}}
duplicate-property-class-extension.m 16 @property (readwrite) char foo; // expected-error {{property has a previous declaration}}
17 @property (readwrite) char NewProperty; // expected-error {{property has a previous declaration}}
21 @property (readonly) char foo; // expected-error {{property has a previous declaration}}
22 @property (readwrite) char NewProperty; // expected-error {{property has a previous declaration}}
method-typecheck-2.m 4 - (void) doSomethingInProtocol: (float) x; // expected-note {{previous definition is here}}
5 + (void) doSomethingClassyInProtocol: (float) x; // expected-note {{previous definition is here}}
11 - (void) doSomething: (float) x; // expected-note {{previous definition is here}}
12 + (void) doSomethingClassy: (int) x; // expected-note {{previous definition is here}}
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
parameter-matching.cpp 8 template<typename ...T> struct X1t; // expected-note{{previous template type parameter pack declared here}}
9 template<typename T> struct X1t; // expected-error{{template type parameter conflicts with previous template type parameter pack}}
11 template<typename T> struct X2t; // expected-note{{previous template type parameter declared here}}
12 template<typename ...T> struct X2t; // expected-error{{template type parameter pack conflicts with previous template type parameter}}
17 template<template<typename ...T> class> struct X1t_intt; // expected-note{{previous template type parameter pack declared here}}
18 template<template<typename T> class> struct X1t_intt; // expected-error{{template type parameter conflicts with previous template type parameter pack}}
20 template<template<typename T> class> struct X2t_intt; // expected-note{{previous template type parameter declared here}}
21 template<template<typename ...T> class> struct X2t_intt; // expected-error{{template type parameter pack conflicts with previous template type parameter}}
23 template<int ...Values> struct X1nt; // expected-note{{previous non-type template parameter pack declared here}}
24 template<int Values> struct X1nt; // expected-error{{non-type template parameter conflicts with previous non-type template parameter pack}
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p11.cpp 5 template<class T1 = int, // expected-note{{previous default template argument defined here}}
9 template<template<class> class = Y1, // expected-note{{previous default template argument defined here}}
13 template<int N = 5, // expected-note{{previous default template argument defined here}}
  /external/clang/test/SemaObjCXX/
objc-extern-c.mm 3 @protocol P // expected-note {{previous}}
7 @interface I // expected-note {{previous}}
12 @interface I2(C) // expected-note {{previous}}
overload-1.mm 7 void f(id<Proto1> *) { } // expected-note {{previous definition is here}}
11 void f(Class<Proto1> *) { } // expected-note {{previous definition is here}}
17 void f(I<Proto1> *) { } // expected-note {{previous definition is here}}
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p3.cpp 2 void f(int) { } // expected-note {{previous definition is here}}
  /external/clang/test/Parser/
argument_redef.c 4 void foo(int A) { /* expected-note {{previous definition is here}} */
  /external/clang/test/SemaOpenCL/
warn-missing-prototypes.cl 3 void f() { } // expected-warning {{no previous prototype for function 'f'}}
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p15.cpp 9 C::C(int a, // expected-note {{previous definition}}
10 int b) // expected-note {{previous definition}}

Completed in 435 milliseconds

1 2 3 4 5 6 7 8 91011>>