HomeSort by relevance Sort by last modified time
    Searched refs:V2 (Results 1 - 25 of 243) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/annotation/
AnnotationValue.java 21 V2;
TestAnnotation3.java 26 V2;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
pic-and-nonpic-2b.s 2 .symver foo2,foo@@V2
got-vers-1b.s 2 .symver foo2,foo@@V2
reloc-estimate-1b.s 2 .symver foo2,foo@@V2
pic-and-nonpic-2.d 12 41000: 0c010406 jal 41018 <\.pic\.foo@@V2>
16 00041018 <\.pic\.foo@@V2>:
  /external/clang/test/CodeGenCXX/
weak-extern-typeinfo.cpp 28 class V2 : public virtual V1 {
32 void V2::foo() { }
vtt-layout.cpp 31 class V2 : public B1, public B2, public virtual V1 { int i; };
34 class C2 : public virtual V3, virtual V2 { int i; };
50 class V2 : public B1, public B2, public virtual V1 { int i; };
53 class C2 : public virtual V3, virtual V2 { int i; };
vtable-layout-abi-examples.cpp 210 struct V2 : virtual V1 {
211 int v2; member in struct:Test3::V2
232 // CHECK-7-NEXT: -- (Test3::V2, 32) vtable address --
236 // CHECK-8: Construction vtable for ('Test3::V2', 32) in 'Test3::C' (9 entries).
240 // CHECK-8-NEXT: 3 | Test3::V2 RTTI
241 // CHECK-8-NEXT: -- (Test3::V2, 32) vtable address --
242 // CHECK-8-NEXT: 4 | void Test3::V2::f()
245 // CHECK-8-NEXT: 7 | Test3::V2 RTTI
247 // CHECK-8-NEXT: 8 | void Test3::V2::f()
249 struct C : virtual V1, virtual V2 {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 147 const llvm::APSInt& V1, const llvm::APSInt& V2) {
154 return &getValue( V1 * V2 );
157 if (V2 == 0) // Avoid division by zero
159 return &getValue( V1 / V2 );
162 if (V2 == 0) // Avoid division by zero
164 return &getValue( V1 % V2 );
167 return &getValue( V1 + V2 );
170 return &getValue( V1 - V2 );
179 if (V2.isSigned() && V2.isNegative()
    [all...]
  /external/selinux/scripts/
Lindent 5 V2=`echo $RES | cut -d' ' -f3 | cut -d'.' -f2`
10 if [ $V2 -gt 2 ]; then
12 elif [ $V2 -eq 2 ]; then
  /external/llvm/unittests/ADT/
TinyPtrVectorTest.cpp 42 VectorT V2;
66 V2.clear();
67 appendValues(V2, Values2);
155 TypeParam Copy2(this->V2);
158 this->expectValues(this->V2, this->testArray(0));
166 this->V = this->V2;
168 this->expectValues(this->V2, this->testArray(0));
169 this->V = std::move(this->V2);
173 this->V = this->V2;
175 this->expectValues(this->V2, this->testArray(0))
    [all...]
  /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/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 34 struct V2 : SkOTTableOS2_V2 { } v2; member in union:SkOTTableOS2::Version
48 static_assert(sizeof(SkOTTableOS2::Version::V2) == 96, "sizeof_SkOTTableOS2__V2_not_96");
  /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,
47 Constant *V2);
  /external/guava/guava/src/com/google/common/collect/
Tables.java 332 public static <R, C, V1, V2> Table<R, C, V2> transformValues(
333 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
334 return new TransformedTable<R, C, V1, V2>(fromTable, function);
337 private static class TransformedTable<R, C, V1, V2>
338 extends AbstractTable<R, C, V2> {
340 final Function<? super V1, V2> function;
343 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
352 @Override public V2 get(Object rowKey, Object columnKey) {
367 @Override public V2 put(R rowKey, C columnKey, V2 value)
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btBoxCollision.h 240 const btVector3 & V2,
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]);
253 const btVector3 & V2,
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...]
gim_box_collision.h 208 const btVector3 & V2,
211 m_min[0] = GIM_MIN3(V1[0],V2[0],V3[0]);
212 m_min[1] = GIM_MIN3(V1[1],V2[1],V3[1]);
213 m_min[2] = GIM_MIN3(V1[2],V2[2],V3[2]);
215 m_max[0] = GIM_MAX3(V1[0],V2[0],V3[0]);
216 m_max[1] = GIM_MAX3(V1[1],V2[1],V3[1]);
217 m_max[2] = GIM_MAX3(V1[2],V2[2],V3[2]);
221 const btVector3 & V2,
225 m_min[0] = GIM_MIN3(V1[0],V2[0],V3[0]);
226 m_min[1] = GIM_MIN3(V1[1],V2[1],V3[1])
    [all...]
  /external/easymock/src/org/easymock/
MockControl.java 462 * @param <V2> returned value type
467 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value) {
481 * @param <V2> returned value type
487 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value,
504 * @param <V2> returned value type
510 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value,
525 * @param <V2> returned value type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };

Completed in 450 milliseconds

1 2 3 4 5 6 7 8 910