Searched defs:V2 (Results 1 - 25 of 86) sorted by relevance

1234

/external/clang/test/CodeGenCXX/
H A Dweak-extern-typeinfo.cpp28 class V2 : public virtual V1 { class in inherits:V1
32 void V2::foo() { }
H A Dvtable-layout-abi-examples.cpp210 struct V2 : virtual V1 { struct in namespace:Test3
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 {
278 // CHECK-9-NEXT: -- (Test3::V2, 4
[all...]
H A Dvtt-layout.cpp31 class V2 : public B1, public B2, public virtual V1 { int i; }; class in namespace:Test3
34 class C2 : public virtual V3, virtual V2 { int i; };
50 class V2 : public B1, public B2, public virtual V1 { int i; }; class in namespace:Test4
53 class C2 : public virtual V3, virtual V2 { int i; };
H A Dmicrosoft-abi-vtables-virtual-inheritance-vtordisps.cpp13 struct V2 { struct
15 virtual ~V2();
25 struct V3 : Z, V2 {
28 struct V4 : Z, V1, V2 {
88 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::B' (2 entries).
136 // CHECK-LABEL: VFTable for 'V2' in 'V4' in 'simple::C' (2 entries).
162 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::B' in 'simple::D' (2 entries).
186 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::E' in 'simple::F' (2 entries).
208 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::E' in 'simple::F' in 'simple::G' (2 entries).
302 struct D : virtual V2 {
[all...]
H A Dthunks.cpp50 struct V2 : virtual V1 { }; struct in namespace:Test3
59 virtual V2 *f();
63 V2 *B::f() { return 0; }
/external/eigen/test/eigen2/
H A Deigen2_smallvectors.cpp14 typedef Matrix<Scalar, 1, 2> V2; typedef
21 V2 v2(x1, x2);
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_database.h73 V2 enumerator in enum:content::DOMStorageDatabase::SchemaVersion
86 // Creates the database table at V2. Returns true if the table was created
/external/eigen/test/
H A Dsmallvectors.cpp15 typedef Matrix<Scalar, 1, 2> V2; typedef
23 V2 v2(x1, x2);
/external/llvm/unittests/ADT/
H A DIntrusiveRefCntPtrTest.cpp25 VirtualRefCounted *V2 = new VirtualRefCounted(*V1); local
26 IntrusiveRefCntPtr<VirtualRefCounted> R2 = V2;
H A DTinyPtrVectorTest.cpp42 VectorT V2; member in class:__anon26463::TinyPtrVectorTest
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, thi
[all...]
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_OS_2.h34 struct V2 : SkOTTableOS2_V2 { } v2; struct in union:SkOTTableOS2::Version
48 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V2) == 96, sizeof_SkOTTableOS2__V2_not_96);
/external/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp101 auto *V2 = dyn_cast<Variable>(D); local
102 if (V2)
103 V = V2;
/external/skia/src/sfnt/
H A DSkOTTable_OS_2.h34 struct V2 : SkOTTableOS2_V2 { } v2; struct in union:SkOTTableOS2::Version
48 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V2) == 96, sizeof_SkOTTableOS2__V2_not_96);
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp71 struct V2 { int x; virtual ~V2(); }; struct in namespace:__anon26520
73 struct V4 : virtual V2 { int y; virtual ~V4(); };
76 struct V7 : virtual V2, virtual V6 { virtual ~V7(); };
82 V2::~V2() {}
128 [AlignOf<V2>::Alignment > 0]
168 EXPECT_LE(alignOf<V1>(), alignOf<V2>());
246 EXPECT_EQ(alignOf<V2>(), alignOf<AlignedCharArrayUnion<V2> >());
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp147 const llvm::APSInt& V1, const llvm::APSInt& V2) {
154 return &getValue( V1 * V2 );
157 return &getValue( V1 / V2 );
160 return &getValue( V1 % V2 );
163 return &getValue( V1 + V2 );
166 return &getValue( V1 - V2 );
175 if (V2.isSigned() && V2.isNegative())
178 uint64_t Amt = V2.getZExtValue();
193 if (V2
146 evalAPSInt(BinaryOperator::Opcode Op, const llvm::APSInt& V1, const llvm::APSInt& V2) argument
262 getPersistentSValPair(const SVal& V1, const SVal& V2) argument
[all...]
/external/clang/test/Layout/
H A Dms-x86-aligned-tail-padding.cpp31 struct V2 { struct
34 V2() : a(0xf0000011f0000011ll), a1(0xf0000011) {} function in struct:V2
280 struct G : virtual V2, virtual V3 {
291 // CHECK-NEXT: 8 | struct V2 (virtual base)
304 // CHECK-X64-NEXT: 16 | struct V2 (virtual base)
/external/clang/test/Sema/
H A Dconst-eval.c62 static struct a V2 = (struct a)(struct a){ 1, 2}; variable in typeref:struct:a
/external/llvm/lib/Support/
H A DFileUtilities.cpp85 double V1 = 0.0, V2 = 0.0; local
104 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd));
122 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd));
139 if (AbsTolerance < std::abs(V1-V2)) {
142 if (V2)
143 Diff = std::abs(V1/V2 - 1.0);
145 Diff = std::abs(V2/V1 - 1.0);
151 << "Compared: " << V1 << " and " << V2 << '\n'
152 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
H A DStringMap.cpp160 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); local
161 (void)V2;
162 assert(V == V2 && "Didn't find key?");
/external/llvm/unittests/Analysis/
H A DScalarEvolutionTest.cpp50 Value *V2 = new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage, Init, "V2"); local
58 const SCEV *S2 = SE.getSCEV(V2);
78 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V2);
81 V2->replaceAllUsesWith(V1);
/external/llvm/unittests/IR/
H A DMetadataTest.cpp136 Value *const V2 = C2; local
138 MDNode *n2 = MDNode::get(Context, V2);
/external/clang/test/CodeGen/
H A Dsse-builtins.c241 __m128d test_blend_pd(__m128d V1, __m128d V2) { argument
244 return _mm_blend_pd(V1, V2, 1);
247 __m128 test_blend_ps(__m128 V1, __m128 V2) { argument
250 return _mm_blend_ps(V1, V2, 5);
253 __m128i test_blend_epi16(__m128i V1, __m128i V2) { argument
256 return _mm_blend_epi16(V1, V2, 42);
/external/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_in_class.cpp242 template<typename B> static const int V2; member in struct:in_class_template::definition_after_outer_instantiation::S
246 template<typename A> template<typename B> const int S<A>::V2<B*> = 456; member in class:in_class_template::definition_after_outer_instantiation::S
255 static_assert(S<int>::V2<int*> == 456, ""); // FIXME expected-error {{}}
256 static_assert(S<int>::V2<int&> == 789, ""); // expected-error {{}}
258 template<typename A> template<typename B> const int S<A>::V2<B&> = 789; member in class:in_class_template::definition_after_outer_instantiation::S
259 static_assert(S<int>::V2<int&> == 789, ""); // FIXME expected-error {{}}
264 static_assert(S<char>::V2<int*> == 456, "");
265 static_assert(S<char>::V2<int&> == 789, "");
/external/llvm/include/llvm/ADT/
H A DAPSInt.h292 inline bool operator==(int64_t V1, const APSInt& V2) { argument
293 return V2 == V1;
295 inline bool operator!=(int64_t V1, const APSInt& V2) { argument
296 return V2 != V1;
H A DEquivalenceClasses.h215 member_iterator unionSets(const ElemTy &V1, const ElemTy &V2) { argument
216 iterator V1I = insert(V1), V2I = insert(V2);

Completed in 2115 milliseconds

1234