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

1 2 3

  /external/clang/test/CodeGenCXX/
weak-extern-typeinfo.cpp 28 class V2 : public virtual V1 {
32 void V2::foo() { }
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...]
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; };
microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp 13 struct V2 {
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...]
thunks.cpp 50 struct V2 : virtual V1 { };
59 virtual V2 *f();
63 V2 *B::f() { return 0; }
  /external/eigen/test/eigen2/
eigen2_smallvectors.cpp 14 typedef Matrix<Scalar, 1, 2> V2;
21 V2 v2(x1, x2);
24 VERIFY_IS_APPROX(x1, v2.x());
27 VERIFY_IS_APPROX(x2, v2.y());
  /external/chromium_org/content/browser/dom_storage/
dom_storage_database.h 73 V2
86 // Creates the database table at V2. Returns true if the table was created
  /external/clang/lib/Analysis/
ThreadSafetyTIL.cpp 101 auto *V2 = dyn_cast<Variable>(D);
102 if (V2)
103 V = V2;
  /external/eigen/test/
smallvectors.cpp 15 typedef Matrix<Scalar, 1, 2> V2;
23 V2 v2(x1, x2);
26 VERIFY_IS_APPROX(x1, v2.x());
29 VERIFY_IS_APPROX(x2, v2.y());
  /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...]
IntrusiveRefCntPtrTest.cpp 25 VirtualRefCounted *V2 = new VirtualRefCounted(*V1);
26 IntrusiveRefCntPtr<VirtualRefCounted> R2 = V2;
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_OS_2.h 34 struct V2 : SkOTTableOS2_V2 { } v2; member in union:SkOTTableOS2::Version
48 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V2) == 96, sizeof_SkOTTableOS2__V2_not_96);
  /external/llvm/lib/Support/
FileUtilities.cpp 85 double V1 = 0.0, V2 = 0.0;
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'
StringMap.cpp 160 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength()));
161 (void)V2;
162 assert(V == V2 && "Didn't find key?");
  /external/skia/src/sfnt/
SkOTTable_OS_2.h 34 struct V2 : SkOTTableOS2_V2 { } v2; member in union:SkOTTableOS2::Version
48 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V2) == 96, sizeof_SkOTTableOS2__V2_not_96);
  /external/llvm/unittests/Support/
AlignOfTest.cpp 71 struct V2 { int x; virtual ~V2(); };
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/chromium_org/chrome/browser/sync_file_system/
remote_file_sync_service.h 80 V2,
  /external/clang/test/Layout/
ms-x86-aligned-tail-padding.cpp 31 struct V2 {
34 V2() : a(0xf0000011f0000011ll), a1(0xf0000011) {}
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/
const-eval.c 62 static struct a V2 = (struct a)(struct a){ 1, 2};
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 91 const Value *V2, const Module *M) {
97 V2->printAsOperand(os2, true, M);
129 const Value *V2, const Module *M) {
132 << " <-> " << *V2 << '\n';
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 50 Value *V2 = new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage, Init, "V2");
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/
MetadataTest.cpp 136 Value *const V2 = C2;
138 MDNode *n2 = MDNode::get(Context, V2);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 170 Value* V2 = dyn_cast<Value>(*I);
172 if (V2) {
173 if (IsIndirect(V2, Visited)) {
303 Value* V2 = dyn_cast<Value>(Users[i]);
305 if (V2) {
306 Propagate(V2, Name, IsIndirect);
  /external/clang/test/SemaCXX/
cxx1y-variable-templates_in_class.cpp 242 template<typename B> static const int V2;
246 template<typename A> template<typename B> const int S<A>::V2<B*> = 456;
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;
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/lib/Target/Hexagon/
HexagonSubtarget.h 42 V1, V2, V3, V4, V5
80 bool hasV2TOps () const { return HexagonArchVersion >= V2; }
81 bool hasV2TOpsOnly () const { return HexagonArchVersion == V2; }
91 bool isSubtargetV2() const { return HexagonArchVersion == V2;}

Completed in 1034 milliseconds

1 2 3