/frameworks/support/core-ui/tests/java/android/support/v4/view/ |
ViewPagerWithTabStripTest.java | 16 package android.support.v4.view; 25 import static android.support.v4.view.ViewPagerActions.clickBetweenTwoTitles; 26 import static android.support.v4.view.ViewPagerActions.scrollRight; 27 import static android.support.v4.view.ViewPagerActions.scrollToPage;
|
ViewPagerWithTitleStripTest.java | 16 package android.support.v4.view; 25 import static android.support.v4.view.ViewPagerActions.clickBetweenTwoTitles; 26 import static android.support.v4.view.ViewPagerActions.scrollRight; 27 import static android.support.v4.view.ViewPagerActions.scrollToPage;
|
/frameworks/support/fragment/java/android/support/v4/app/ |
FragmentContainer.java | 1 package android.support.v4.app;
|
FragmentManagerNonConfig.java | 18 package android.support.v4.app;
|
/frameworks/support/fragment/tests/java/android/support/v4/app/ |
FragmentManagerNonConfigTest.java | 17 package android.support.v4.app; 24 import android.support.v4.app.test.NonConfigOnStopActivity;
|
HostCallbacks.java | 16 package android.support.v4.app;
|
TargetTracking.java | 16 package android.support.v4.app;
|
/frameworks/support/fragment/tests/java/android/support/v4/app/test/ |
NonConfigOnStopActivity.java | 17 package android.support.v4.app.test; 19 import android.support.v4.app.Fragment;
|
/frameworks/support/media-compat/api23/android/support/v4/media/ |
MediaBrowserServiceCompatApi23.java | 17 package android.support.v4.media; 23 import android.support.v4.media.MediaBrowserServiceCompatApi21.ResultWrapper;
|
MediaDescriptionCompatApi23.java | 16 package android.support.v4.media;
|
/frameworks/support/media-compat/api23/android/support/v4/media/session/ |
MediaControllerCompatApi23.java | 17 package android.support.v4.media.session;
|
/toolchain/binutils/binutils-2.25/gold/testsuite/ |
large.c | 30 int v4[0x10000] = { 1 }; variable 41 assert (v4[0] == 1 && v4[0xffff] == 0); 47 assert (&v1 < v3 && &v1 < v4 && &v1 < v5); 48 assert (&v2 < v3 && &v2 < v4 && &v2 < v5); 49 assert (&v6 < v3 && &v6 < v4 && &v6 < v5); 50 assert (&v7 < v3 && &v7 < v4 && &v7 < v5); 54 assert (v3 < v4); 56 assert (v5 < v4);
|
/external/robolectric/v3/ |
shadows-support-v4-3.1-SNAPSHOT.jar | |
/cts/tests/tests/view/src/android/view/cts/ |
View_FocusHandlingTest.java | 59 View v4 = activity.findViewById(R.id.view4); local 64 assertNotNull(v4); 70 assertFalse(v4.isFocusable()); 75 v4.setFocusable(true); 80 assertTrue(v4.isFocusable()); 91 v4.setNextFocusLeftId(R.id.view3); 92 v4.setNextFocusUpId(R.id.view2); 104 assertEquals(R.id.view2, v4.getNextFocusUpId()); 105 assertEquals(R.id.view3, v4.getNextFocusLeftId()); 112 assertSame(v4, v2.focusSearch(View.FOCUS_DOWN)) [all...] |
/external/clang/test/CodeGen/ |
altivec.c | 14 // CHECK: @v4 = global <4 x i32> <i32 16909060, i32 0, i32 0, i32 0> 15 vector int v4 = (vector char){1, 2, 3, 4}; variable
|
mangle-windows.c | 73 void __vectorcall v4(int a) {} function 74 // CHECK: define x86_vectorcallcc void @"\01v4@@4"( 75 // X64: define x86_vectorcallcc void @"\01v4@@8"(
|
vector-alignment.c | 32 double __attribute__((vector_size(1024))) v4; variable 33 // SSE: @v4 {{.*}}, align 16 34 // AVX: @v4 {{.*}}, align 32 35 // AVX512: @v4 {{.*}}, align 64
|
/external/clang/test/PCH/ |
check-deserializations.cpp | 29 namespace v4 { constexpr X DND = {}; } namespace in namespace:vars
|
/external/clang/test/Sema/ |
altivec-init.c | 3 typedef int v4 __attribute((vector_size(16))); typedef 8 v4 b; 10 b = (v4)(5, 6, 7, 8, 9); // expected-warning {{excess elements in vector initializer}} 11 b = (v4)(5, 6, 8, 8.0f); 30 void __attribute__((__overloadable__)) f(v4 a) 40 v4 vGCC;
|
vector-assign.c | 12 v2f v4; local 17 v1 = v4; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' values) from 'v2f' (vector of 2 'float' values)}} 22 v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned int' values) from 'v2f' (vector of 2 'float' values)}} 27 v3 = v4; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type 'v2f' (vector of 2 'float' values)}} 30 v4 = v1; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' values) from 'v2s' (vector of 2 'int' values)}} 31 v4 = v2; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' values) from 'v2u' (vector of 2 'unsigned int' values)}} 32 v4 = v3; // expected-error {{assigning to 'v2f' (vector of 2 'float' values) from incompatible type 'v1s' (vector of 1 'int' value)}} 33 v4 = v5; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' values) from 'v4ss' (vector of 4 'short' values)}} 38 v5 = v4; // expected-warning {{incompatible vector types assigning to 'v4ss' (vector of 4 'short' values) from 'v2f'}}
|
/external/clang/test/SemaCXX/ |
type-convert-construct.cpp | 12 int v4 = int(); local
|
/external/clang/test/SemaTemplate/ |
instantiate-deeply.cpp | 13 a v4 = v3 * v3; local 14 field += v2 + v4;
|
/external/llvm/test/MC/Hexagon/ |
v60-vmem.s | 80 #CHECK: 29b8d5c4 { if (p2) vmemu(r24++#-3) = v4 } 82 if (p2) vmemu(r24++#-3)=v4 348 #CHECK: 28f8d17a if(!p2) vmem(r24+#1):nt = v4.new } 350 v4 = v8 define 351 if(!p2)vmem(r24+#1):nt=v4.new 354 #CHECK: 2924c322 vmem(r4++#3) = v4.new } 356 v4 = v3 define 357 vmem(r4++#3)=v4.new
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/detail/ |
endpoint.hpp | 117 asio::detail::sockaddr_in4_type v4; member in union:asio::ip::detail::endpoint::data_union
|
/external/valgrind/none/tests/x86-linux/ |
sigcontext.c | 47 int v2, v3, v4; local 67 : "=a" (ret), "=d" (v2), "=S" (v3), "=D" (v4) 69 printf("v2=%x v3=%x v4=%x\n", v2, v3, v4); 82 : "=a" (ret), "=d" (v2), "=S" (v3), "=D" (v4) 84 printf("v2=%x v3=%x v4=%x\n", v2, v3, v4);
|