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

1 2 3 4 5 6 7 8 91011>>

  /art/test/001-Main/
info.txt 1 Import of a previous oat test. Empty main, just test starting up the runtime.
  /external/glide/library/src/main/java/com/bumptech/glide/load/
MultiTransformation.java 31 Resource<T> previous = resource; local
35 Resource<T> transformed = transformation.transform(previous, outWidth, outHeight);
36 if (transformed != previous && previous != resource && previous != null) {
37 previous.recycle();
39 previous = transformed;
43 Resource<T> transformed = transformation.transform(previous, outWidth, outHeight);
44 if (transformed != previous && previous != resource && previous != null)
    [all...]
  /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/
alias-redefinition.c 7 void fun1() {} // expected-note {{previous definition}}
11 void fun2(void) __attribute((alias("f2"))); // expected-note {{previous definition}}
15 void fun3(void) __attribute((alias("f3"))); // expected-note {{previous definition}}
24 void __attribute((alias("f5"))) fun5(void) {} // expected-error {{redefinition of 'fun5'}} // expected-note {{previous definition}}
27 int var1 __attribute((alias("v1"))); // expected-note {{previous definition}}
31 int var2 = 2; // expected-note {{previous definition}}
35 int var3 __attribute((alias("v3"))); // expected-note {{previous definition}}
39 int var4; // expected-note {{previous definition}}
43 int var5 __attribute((alias("v5"))); // expected-note {{previous definition}}
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}}
7 int outer5; // 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}}
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...]
  /external/clang/test/SemaCXX/
overload-decl.cpp 9 void f(int, Float); // expected-note {{previous declaration is here}}
13 void g(void); // expected-note {{previous declaration is here}}
20 void f(int); // expected-note {{previous declaration is here}}
25 void g(int); // expected-note {{previous declaration is here}}
26 void g(int, float); // expected-note {{previous declaration is here}}
29 static void g(float); // expected-note {{previous declaration is here}}
33 void h(); // expected-note {{previous declaration is here}} \
34 expected-note {{previous declaration is here}}
39 int main() {} // expected-note {{previous definition is here}}
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}}
  /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}}
  /external/chromium_org/device/hid/
hid_report_descriptor_item.cc 26 HidReportDescriptorItem* previous)
27 : previous_(previous), next_(NULL), parent_(NULL), shortData_(0) {
40 if (previous) {
41 DCHECK(!previous->next_);
42 previous->next_ = this;
43 switch (previous->tag()) {
45 parent_ = previous;
53 if (previous->parent()) {
54 parent_ = previous->parent()->parent();
58 parent_ = previous->parent()
    [all...]
  /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/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}}
  /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}}
  /external/chromium_org/third_party/cld/
OWNERS 4 # Previous OWNERS, still willing to do one-off reviews
  /external/chromium_org/third_party/cld_2/
OWNERS 4 # Previous OWNERS, still willing to do one-off reviews
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p4.cpp 3 void f0() { // expected-note {{previous definition is here}}

Completed in 2488 milliseconds

1 2 3 4 5 6 7 8 91011>>