Searched defs:V1 (Results 1 - 25 of 80) sorted by relevance

1234

/external/clang/test/CodeGenCXX/
H A Dweak-extern-typeinfo.cpp24 class V1 : public virtual A { class in inherits:A
28 class V2 : public virtual V1 {
31 void V1::foo() { }
H A Dvtable-layout-abi-examples.cpp205 struct V1 { struct in namespace:Test3
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 --
H A Dvtt-layout.cpp28 class V1 : public A1, public A2 { int i; }; class in namespace:Test3
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; }; class in namespace:Test4
50 class V2 : public B1, public B2, public virtual V1 { int i; };
52 class C1 : public virtual V1 { int i; };
H A Dthunks.cpp49 struct V1 { }; struct in namespace:Test3
50 struct V2 : virtual V1 { };
53 virtual V1 *f();
/external/clang/test/Parser/
H A Dcxx0x-member-initializers.cpp26 struct V1 { struct
28 V1() : a(), b{} {} function in struct:V1
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_database.h72 V1, enumerator in enum:content::DOMStorageDatabase::SchemaVersion
/external/llvm/unittests/ADT/
H A DIntrusiveRefCntPtrTest.cpp21 VirtualRefCounted *V1 = new VirtualRefCounted; local
22 IntrusiveRefCntPtr<VirtualRefCounted> R1 = V1;
23 VirtualRefCounted *V2 = new VirtualRefCounted(*V1);
/external/skia/tests/
H A DClampRangeTest.cpp48 #define V1 1024 macro
63 int v = classify_value(fx, V0, V1);
77 int v = classify_value(fx, V0, V1);
87 range.init(fx, dx, count, V0, V1);
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_OS_2.h33 struct V1 : SkOTTableOS2_V1 { } v1; struct in union:SkOTTableOS2::Version
47 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V1) == 86, sizeof_SkOTTableOS2__V1_not_86);
/external/skia/src/sfnt/
H A DSkOTTable_OS_2.h33 struct V1 : SkOTTableOS2_V1 { } v1; struct in union:SkOTTableOS2::Version
47 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V1) == 86, sizeof_SkOTTableOS2__V1_not_86);
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp70 struct V1 { virtual ~V1(); }; struct in namespace:__anon22792
72 struct V3 : V1 { virtual ~V3(); };
81 V1::~V1() {}
127 [AlignOf<V1>::Alignment > 0]
167 EXPECT_LE(alignOf<S1>(), alignOf<V1>());
168 EXPECT_LE(alignOf<V1>(), alignOf<V2>());
169 EXPECT_LE(alignOf<V1>(), alignOf<V3>());
170 EXPECT_LE(alignOf<V1>(), alignO
[all...]
/external/bison/src/
H A Dreduce.c53 static bitset V1; variable
224 bitset_set (V1, rules[r].precsym->number);
409 V1 = bitset_create (nsyms, BITSET_FIXED);
447 return !bitset_test (V, i) && !bitset_test (V1, i);
466 bitset_free (V1);
/external/chromium_org/chrome/browser/sync_file_system/
H A Dremote_file_sync_service.h75 V1, enumerator in enum:sync_file_system::RemoteFileSyncService::BackendVersion
/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 );
180 if (Amt > V1.getBitWidth())
183 return &getValue( V1.operator<<( (unsigned) Amt ));
198 if (Amt > V1.getBitWidth())
201 return &getValue( V1
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/Sema/
H A Dconst-eval.c63 static const struct a V1 = (struct a){ 1, 2}; variable in typeref:struct:a
/external/guava/guava/src/com/google/common/collect/
H A DSortedMaps.java89 @Deprecated public static <K, V1, V2> SortedMap<K, V2> transformValues( argument
90 SortedMap<K, V1> fromMap, final Function<? super V1, V2> function) {
146 @Deprecated public static <K, V1, V2> SortedMap<K, V2> transformEntries( argument
147 final SortedMap<K, V1> fromMap,
148 EntryTransformer<? super K, ? super V1, V2> transformer) {
/external/llvm/lib/Support/
H A DFileUtilities.cpp86 double V1 = 0.0, V2 = 0.0; local
104 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd));
113 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd));
140 if (AbsTolerance < std::abs(V1-V2)) {
144 Diff = std::abs(V1/V2 - 1.0);
145 else if (V1)
146 Diff = std::abs(V2/V1 - 1.0);
152 << "Compared: " << V1 << " and " << V2 << '\n'
153 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
/external/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.h36 V1, V2, V3, V4, V5 enumerator in enum:llvm::HexagonSubtarget::HexagonArchEnum
/external/llvm/unittests/Analysis/
H A DScalarEvolutionTest.cpp49 Value *V1 = new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage, Init, "V1"); local
57 const SCEV *S1 = SE.getSCEV(V1);
77 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V1);
81 V2->replaceAllUsesWith(V1);
82 V1->replaceAllUsesWith(V0);
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp32 T *clone(T *V1) { argument
33 Value *V2 = V1->clone();
34 Orig.insert(V1);
/external/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp86 MVT::SimpleValueType V1 = LHSSrc->getType(0), V2 = RHSSrc->getType(0); local
87 if (MVT(V1).isVector() != MVT(V2).isVector())
90 if (MVT(V1).isFloatingPoint() != MVT(V2).isFloatingPoint())
/external/llvm/include/llvm/ADT/
H A DAPSInt.h298 inline bool operator==(int64_t V1, const APSInt& V2) { argument
299 return V2 == V1;
301 inline bool operator!=(int64_t V1, const APSInt& V2) { argument
302 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);
/external/llvm/include/llvm/Support/
H A DConstantFolder.h220 Constant *CreateShuffleVector(Constant *V1, Constant *V2, argument
222 return ConstantExpr::getShuffleVector(V1, V2, Mask);
H A DTargetFolder.h244 Constant *CreateShuffleVector(Constant *V1, Constant *V2, argument
246 return Fold(ConstantExpr::getShuffleVector(V1, V2, Mask));

Completed in 1465 milliseconds

1234