/external/apache-harmony/support/src/test/java/tests/support/ |
Support_ListTest.java | 57 "ListTest - c) add with index failed--affected previous elements", 65 assertTrue("ListTest - c) set failed--affected previous elements", list 75 "ListTest - c) remove with index failed--affected previous elements", 94 "ListTest - e) addAll with index failed--affected previous elements", 165 assertTrue("list iterator previous(): " + i, li.previous() == list 181 li.previous(); 185 assertTrue("list iterator previous() exception", exception); 197 Object previous = li.previous(); local [all...] |
/libcore/support/src/test/java/tests/support/ |
Support_ListTest.java | 57 "ListTest - c) add with index failed--affected previous elements", 65 assertTrue("ListTest - c) set failed--affected previous elements", list 75 "ListTest - c) remove with index failed--affected previous elements", 94 "ListTest - e) addAll with index failed--affected previous elements", 165 assertTrue("list iterator previous(): " + i, li.previous() == list 181 li.previous(); 185 assertTrue("list iterator previous() exception", exception); 197 Object previous = li.previous(); local [all...] |
/developers/build/prebuilts/gradle/PdfRendererBasic/Application/src/main/res/values/ |
strings.xml | 21 <string name="previous">Previous</string>
|
/developers/samples/android/ui/graphics/PdfRendererBasic/Application/src/main/res/values/ |
strings.xml | 21 <string name="previous">Previous</string>
|
/development/samples/browseable/PdfRendererBasic/res/values/ |
strings.xml | 21 <string name="previous">Previous</string>
|
/external/clang/test/CXX/basic/basic.def.odr/ |
p1-var.cpp | 8 int i; // expected-note {{previous}} 20 int l = 1; // expected-note {{previous}}
|
/external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/ |
p2.cpp | 22 void* operator new(std::size_t) throw(std::bad_alloc); // expected-note{{previous declaration}} 24 void operator delete(void*) throw(); // expected-note{{previous declaration}}
|
/external/clang/test/CXX/class/class.base/class.base.init/ |
p5-0x.cpp | 11 E() : a(1), // expected-note{{previous initialization is here}} 22 F() : a(1), // expected-note{{previous initialization is here}}
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.unnamed/ |
p1.cpp | 29 class Test3 {}; // expected-note {{previous definition}} 37 class Test4 {}; // expected-note {{previous definition}}
|
/external/clang/test/CXX/except/except.spec/ |
p3.cpp | 24 extern void (*r5)() throw(int); // expected-note {{previous declaration}} 28 extern void f5() throw(int); // expected-note {{previous declaration}} 32 extern void (*r7)() throw(int); // expected-note {{previous declaration}} 53 extern void (*r12)() noexcept; // expected-note {{previous declaration}} 61 extern void (*r14)() noexcept(true); // expected-note {{previous declaration}} 73 extern void (*r17)(); // expected-note {{previous declaration}} 90 extern void (*r20)() throw(); // expected-note {{previous declaration}} 93 extern void (*r21)() throw(int); // expected-note {{previous declaration}}
|
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/ |
p6.cpp | 8 template<int X, int Y> void f0(A0<X, Y>) { } // expected-note{{previous}} 12 template<int X, int Y> void f1(A0<0, (X + Y)>) { } // expected-note{{previous}}
|
/external/clang/test/CXX/temp/temp.decls/temp.friend/ |
p4.cpp | 6 // expected-note{{previous definition}} 17 // expected-note{{previous definition}}
|
/external/clang/test/PCH/ |
reloc.c | 13 // expected-note@libroot/usr/include/reloc.h:13{{previous definition}} 14 // expected-note@libroot/usr/include/reloc2.h:14{{previous definition}}
|
/external/clang/test/Parser/ |
typeof.c | 8 int typeof (int) aIntInt; // expected-error{{cannot combine with previous 'int' declaration specifier}} 10 int int ttt; // expected-error{{cannot combine with previous 'int' declaration specifier}}
|
/external/clang/test/Sema/ |
attr-section.c | 18 void __attribute__((section("foo,zed"))) test2(void); // expected-note {{previous attribute is here}} 19 void __attribute__((section("bar,zed"))) test2(void) {} // expected-warning {{section does not match previous declaration}}
|
/external/clang/test/SemaCXX/ |
attr-regparm.cpp | 8 void __attribute__((regparm(3))) f2(); // expected-note{{previous declaration is here}} 9 void f3(); // expected-note{{previous declaration is here}}
|
condition.cpp | 24 if (int x=0) { // expected-note 2 {{previous definition is here}} 29 while (int x=0) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}} 30 while (int x=0) { int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}} 31 for (int x; int x=0; ) ; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}} 32 for (int x; ; ) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}} 33 for (; int x=0; ) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}} 34 for (; int x=0; ) { int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}} 35 switch (int x=0) { default: int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
|
warn-missing-prototypes.cpp | 3 void f() { } // expected-warning {{no previous prototype for function 'f'}} 6 void f() { } // expected-warning {{no previous prototype for function 'f'}}
|
/external/clang/test/SemaObjC/ |
comptypes-a.m | 21 - compareThis:(int)a withThat:(id)b; // expected-note {{previous definition is here}} \ 22 // expected-note {{previous definition is here}}
|
/external/clang/test/SemaTemplate/ |
canonical-expr-type-0x.cpp | 7 void f0(T x, decltype(f(N, x)) y) { } // expected-note{{previous}} 19 N<sizeof...(T)> f1() {} // expected-note{{previous}}
|
/external/guava/guava-tests/test/com/google/common/collect/ |
AbstractSequentialIteratorTest.java | 61 protected Integer computeNext(Integer previous) { 62 return (previous == 1 << 30) ? null : previous * 2; 107 protected Integer computeNext(Integer previous) { 108 return (previous == last) ? null : previous * 2; 116 protected T computeNext(T previous) { 125 protected Object computeNext(Object previous) {
|
/external/llvm/test/MC/ARM/ |
eh-directive-fnstart-diagnostics.s | 6 @ There should be some diagnostics when the previous .fnstart is not closed 24 @ CHECK: error: .fnstart starts before the end of previous one
|
/frameworks/base/docs/html-intl/intl/ja/training/monitoring-device-state/ |
manifest-receivers.jd | 7 previous.title=?????????? 8 previous.link=connectivity-monitoring.html
|
/frameworks/base/docs/html-intl/intl/zh-cn/training/monitoring-device-state/ |
manifest-receivers.jd | 7 previous.title=??????????? 8 previous.link=connectivity-monitoring.html
|
/developers/build/prebuilts/gradle/BasicRenderScript/Application/src/main/res/values/ |
attrs.xml | 7 necessary to support previous API levels.
|