/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/annotation/ |
AnnotationValue.java | 20 V1,
|
Annotated.java | 19 @TestAnnotation(AnnotationValue.V1)
|
Annotated2.java | 19 @TestAnnotation2(AnnotationValue.V1)
|
Annotated3.java | 21 @TestAnnotation3(Value.V1)
|
TestAnnotation3.java | 25 V1,
|
/external/clang/test/CodeGenCXX/ |
weak-extern-typeinfo.cpp | 24 class V1 : public virtual A { 28 class V2 : public virtual V1 { 31 void V1::foo() { }
|
microsoft-abi-rtti.cpp | 17 struct V1 : X1 {}; 18 struct W1 : virtual V1 {}; 19 struct Y1 : W1, virtual V1 {} y1; 69 // CHECK-DAG: @"\01??_R2Y1@@8" = linkonce_odr constant [7 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@Y1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* null], comdat 74 // CHECK-DAG: @"\01??_R2W1@@8" = linkonce_odr constant [4 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* null], comdat 75 // CHECK-DAG: @"\01??_R1A@A@3FA@V1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUV1@@@8" to i8*), i32 1, i32 0, i32 0, i32 4, i32 80, %rtti.ClassHierarchyDescriptor* @"\01??_R3V1@@8" }, comdat 78 // CHECK-DAG: @"\01??_R2V1@@8" = linkonce_odr constant [3 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@X1@@8", %rtti.BaseClassDescriptor* null], comdat 79 // CHECK-DAG: @"\01??_R1A@?0A@EA@V1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUV1@@@8" to i8*), i32 1, i32 0, i32 -1, i32 0, i32 64, %rtti.ClassHierarchyDescriptor* @"\01??_R3V1@@8" }, comdat [all...] |
vtt-layout.cpp | 28 class V1 : public A1, public A2 { int i; }; 31 class V2 : public B1, public B2, public virtual V1 { int i; }; 33 class C1 : public virtual V1 { int i; }; 43 // (making A2 a virtual base of V1) 47 class V1 : public A1, public virtual A2 { int i; }; 50 class V2 : public B1, public B2, public virtual V1 { int i; }; 52 class C1 : public virtual V1 { int i; };
|
vtable-layout-abi-examples.cpp | 205 struct V1 { 206 int v1; member in struct:Test3::V1 210 struct V2 : virtual V1 { 225 // CHECK-7-NEXT: -- (Test3::V1, 16) vtable address -- 246 // CHECK-8-NEXT: -- (Test3::V1, 16) vtable address -- 249 struct C : virtual V1, virtual V2 { 271 // CHECK-9-NEXT: -- (Test3::V1, 24) vtable address -- 292 // CHECK-10-NEXT: -- (Test3::V1, 24) vtable address -- 313 // CHECK-11-NEXT: -- (Test3::V1, 24) vtable address --
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
mips16-pic-4b.s | 4 # Define a MIPS16 function f1@@V1. 7 .symver _f1,f1@@V1
|
/external/selinux/scripts/ |
Lindent | 4 V1=`echo $RES | cut -d' ' -f3 | cut -d'.' -f1` 7 if [ $V1 -gt 2 ]; then 9 elif [ $V1 -eq 2 ]; then
|
/external/clang/lib/StaticAnalyzer/Core/ |
BasicValueFactory.cpp | 147 const llvm::APSInt& V1, const llvm::APSInt& V2) { 154 return &getValue( V1 * V2 ); 159 return &getValue( V1 / V2 ); 164 return &getValue( V1 % V2 ); 167 return &getValue( V1 + V2 ); 170 return &getValue( V1 - V2 ); 184 if (Amt >= V1.getBitWidth()) 187 return &getValue( V1.operator<<( (unsigned) Amt )); 202 if (Amt >= V1.getBitWidth()) 205 return &getValue( V1.operator>>( (unsigned) Amt )) [all...] |
/libcore/ojluni/src/main/java/sun/security/x509/ |
CertificateVersion.java | 46 public static final int V1 = 0; 67 int version = V1; 90 version = V1; 102 if (version == V1 || version == V2 || version == V3) 117 version = V1; 130 version = V1; 143 version = V1; 163 if (version == V1) { 208 version = V1;
|
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/ |
p6.cpp | 10 template<int V1, int V2> void f0(A0<V1, V2>) { } // expected-error{{redefinition}}
|
/external/clang/test/Parser/ |
cxx0x-member-initializers.cpp | 26 struct V1 { 28 V1() : a(), b{} {}
|
/external/easymock/src/org/easymock/ |
MockControl.java | 461 * @param <V1> mocked method return type
467 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value) {
480 * @param <V1> mocked method return type
487 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value,
503 * @param <V1> mocked method return type
510 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, [all...] |
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/ |
CacheBuilder.java | 352 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() { 353 return (Weigher<K1, V1>) MoreObjects.firstNonNull(weigher, OneWeigher.INSTANCE); 490 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> removalListener( 491 RemovalListener<? super K1, ? super V1> listener) { 496 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this; 503 <K1 extends K, V1 extends V> RemovalListener<K1, V1> getRemovalListener() [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/ |
TBSRequest.java | 18 private static final ASN1Integer V1 = new ASN1Integer(0); 38 this.version = V1; 49 this.version = V1; 72 version = V1; 77 version = V1; 139 * version [0] EXPLICIT Version DEFAULT v1, 153 if (!version.equals(V1) || versionSet)
|
/external/guava/guava/src/com/google/common/cache/ |
CacheBuilder.java | 457 * instance, this method returns {@code CacheBuilder<K1, V1>}. From this point on, either the 475 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> weigher( 476 Weigher<? super K1, ? super V1> weigher) { 485 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this; 499 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() { 500 return (Weigher<K1, V1>) MoreObjects.firstNonNull(weigher, OneWeigher.INSTANCE); [all...] |
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/ |
Mesh.cpp | 17 Triangle::Triangle(int id, cv::Point3f V0, cv::Point3f V1, cv::Point3f V2) 19 id_ = id; v0_ = V0; v1_ = V1; v2_ = V2;
|
/external/skia/src/sfnt/ |
SkOTTable_OS_2.h | 33 struct V1 : SkOTTableOS2_V1 { } v1; member in union:SkOTTableOS2::Version 47 static_assert(sizeof(SkOTTableOS2::Version::V1) == 86, "sizeof_SkOTTableOS2__V1_not_86");
|
/external/clang/test/CodeGen/ |
sse41-builtins.c | 9 __m128i test_mm_blend_epi16(__m128i V1, __m128i V2) { 12 return _mm_blend_epi16(V1, V2, 42); 15 __m128d test_mm_blend_pd(__m128d V1, __m128d V2) { 18 return _mm_blend_pd(V1, V2, 2); 21 __m128 test_mm_blend_ps(__m128 V1, __m128 V2) { 24 return _mm_blend_ps(V1, V2, 6); 27 __m128i test_mm_blendv_epi8(__m128i V1, __m128i V2, __m128i V3) { 30 return _mm_blendv_epi8(V1, V2, V3); 33 __m128d test_mm_blendv_pd(__m128d V1, __m128d V2, __m128d V3) { 36 return _mm_blendv_pd(V1, V2, V3) [all...] |
/external/llvm/lib/IR/ |
ConstantFold.h | 36 Constant *V1, Constant *V2); 40 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2, 46 Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
|
/external/llvm/unittests/ADT/ |
IntrusiveRefCntPtrTest.cpp | 23 VirtualRefCounted *V1 = new VirtualRefCounted; 24 IntrusiveRefCntPtr<VirtualRefCounted> R1 = V1; 25 VirtualRefCounted *V2 = new VirtualRefCounted(*V1);
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/ |
btBoxCollision.h | 239 btAABB(const btVector3 & V1, 243 m_min[0] = BT_MIN3(V1[0],V2[0],V3[0]); 244 m_min[1] = BT_MIN3(V1[1],V2[1],V3[1]); 245 m_min[2] = BT_MIN3(V1[2],V2[2],V3[2]); 247 m_max[0] = BT_MAX3(V1[0],V2[0],V3[0]); 248 m_max[1] = BT_MAX3(V1[1],V2[1],V3[1]); 249 m_max[2] = BT_MAX3(V1[2],V2[2],V3[2]); 252 btAABB(const btVector3 & V1, 257 m_min[0] = BT_MIN3(V1[0],V2[0],V3[0]); 258 m_min[1] = BT_MIN3(V1[1],V2[1],V3[1]) [all...] |