Searched defs:v2 (Results 1 - 25 of 369) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/
H A Dlinkage-merge-sub.h8 static int v2; variable
/external/clang/test/Parser/
H A Dpragma-visibility2.c13 int v2; variable
14 // CHECK: @v2 = common global i32 0, align 4
/external/oprofile/libutil++/tests/
H A Dstring_filter_tests.cpp52 vector<string> v2; local
54 string_filter f6(v1, v2);
61 string_filter f7(v1, v2);
68 v2.push_back("no");
69 v2.push_back("no2");
71 string_filter f8(v1, v2);
79 string_filter f9(v1, v2);
/external/chromium_org/ui/views/
H A Dview_model_utils_unittest.cc26 View v1, v2, v3; local
29 model.Add(&v2, 1);
47 model, &v2, ViewModelUtils::HORIZONTAL, -10, 0));
49 model, &v2, ViewModelUtils::HORIZONTAL, 4, 0));
51 model, &v2, ViewModelUtils::HORIZONTAL, 12, 0));
70 model, &v2, ViewModelUtils::VERTICAL, 0, -10));
72 model, &v2, ViewModelUtils::VERTICAL, 0, 4));
74 model, &v2, ViewModelUtils::VERTICAL, 0, 12));
H A Dview_model_unittest.cc52 View v1, v2, v3; local
54 v2.set_id(1);
58 model.Add(&v2, 1);
68 View v1, v2, v3; local
70 v2.set_id(1);
74 model.Add(&v2, 1);
/external/clang/test/CXX/special/class.conv/class.conv.ctor/
H A Dp1.cpp20 void_type2 v2 = atom(); member in namespace:PR13003
/external/clang/test/CodeGen/
H A Dcxx-value-init.cpp5 float v2 = float(); variable
H A Dmmx-inline-asm.c9 __m64 v1, v2, v3, v4, v5, v6, v7; local
19 : "=&y" (v1), "=&y" (v2), "=&y" (v3),
H A Dvld_dup.c9 int32_t v2[4]; local
28 v3 = vld4_dup_s32(v2);
H A Daltivec.c11 // CHECK: @v2 = global <16 x i8> <i8 63, i8 -128, i8 0, i8 0, i8 64, i8 0, i8 0, i8 0, i8 64, i8 64, i8 0, i8 0, i8 64, i8 -128, i8 0, i8 0>
12 vector char v2 = (vector char)((vector float)(1.0f, 2.0f, 3.0f, 4.0f)); variable
H A Dvector-alignment.c8 double __attribute__((vector_size(32))) v2; variable
9 // CHECK: @v2 {{.*}}, align 32
/external/clang/test/SemaTemplate/
H A Dqualified-names-diag.cpp14 vector<Real> v2; local
15 v1 = v2; // expected-error{{no viable overloaded '='}}
/external/stlport/test/unit/
H A Dfib.h6 Fibonacci() : v1(0), v2(1) {}
10 int v2; member in class:Fibonacci
16 int r = v1 + v2;
17 v1 = v2;
18 v2 = r;
H A Dsetinter_test.cpp40 int v2[4] = { 10, 13, 17, 23 }; local
43 set_intersection((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
55 vector <int> v2(10);
56 __iota(v2.begin(), v2.end(), 7);
59 set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(inter));
H A Dsetunion_test.cpp40 int v2[4] = { 10, 13, 17, 23 }; local
43 set_union((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
58 vector <int> v2(10);
59 __iota(v2.begin(), v2.end(), 7);
62 set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
/external/chromium_org/ui/views/layout/
H A Dbox_layout_unittest.cc36 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
37 host_->AddChildView(v2);
42 EXPECT_EQ(gfx::Rect(10, 0, 10, 20), v2->bounds());
49 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
50 host_->AddChildView(v2);
55 EXPECT_EQ(gfx::Rect(0, 10, 20, 10), v2->bounds());
62 View* v2 = new StaticSizedView(gfx::Size(10, 20)); local
63 host_->AddChildView(v2);
68 EXPECT_EQ(gfx::Rect(25, 7, 10, 86), v2->bounds());
75 View* v2 local
97 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
111 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
125 View* v2 = new ProportionallySizedView(2); local
145 View* v2 = new StaticSizedView(gfx::Size(10, 10)); local
[all...]
/external/mdnsresponder/Clients/
H A DClientCommon.c59 int v2 = cstr[ 1] - '0'; local
60 int val = v0 * 100 + v1 * 10 + v2;
/external/chromium/chrome/browser/sync/sessions/
H A Dstatus_controller_unittest.cc83 std::vector<int64> v2; local
84 v2.push_back(1);
85 status.set_unsynced_handles(v2);
/external/chromium_org/cc/base/
H A Dscoped_ptr_vector_unittest.cc45 ScopedPtrVector<Data> v2; local
46 v2.push_back(Data::Create(3));
47 v2.push_back(Data::Create(4));
48 v2.push_back(Data::Create(5));
55 v.insert_and_take(it, v2);
65 EXPECT_EQ(3u, v2.size());
66 EXPECT_EQ(NULL, v2[0]);
67 EXPECT_EQ(NULL, v2[1]);
68 EXPECT_EQ(NULL, v2[2]);
/external/chromium_org/chrome/installer/util/
H A Dcompat_checks.cc27 bool ParseSEPVersion(const std::wstring& version, int* v0, int* v1, int* v2) { argument
36 if (!base::StringToInt(v[2], v2))
42 bool IsBadSEPVersion(int v0, int v1, int v2) { argument
47 if (v2 < 3001)
55 int v0, v1, v2; local
57 if (!ParseSEPVersion(ver_str, &v0, &v1, &v2))
59 return IsBadSEPVersion(v0, v1, v2);
/external/chromium_org/third_party/openssl/openssl/crypto/
H A Do_str.c103 int OPENSSL_memcmp(const void *v1,const void *v2,size_t n) argument
105 const unsigned char *c1=v1,*c2=v2;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsTriangle.cpp15 SkDVector v2 = pt - fPts[0]; local
20 double dot02 = v0.dot(v2);
22 double dot12 = v1.dot(v2);
/external/chromium_org/ui/views/corewm/
H A Dwindow_util_unittest.cc57 // +-- v2 (no layer)
69 views::View* v2 = new views::View(); local
70 v2->SetBounds(0, 1, 100, 101);
77 w1->GetRootView()->AddChildView(v2);
78 v2->AddChildView(v3);
79 v2->AddChildView(CreateViewWithLayer(gfx::Rect(0, 4, 100, 104), "v4"));
/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp7.cpp18 auto v2 = u"one"_w; // calls operator "" _w(u"one", 3) local
23 same_type<decltype(v2), std::string> test2;
/external/clang/test/PCH/
H A Dcxx-implicit-moves.cpp20 float test(float v1, float v2) { argument
21 NSSize s = NSMakeSize(v1, v2);

Completed in 631 milliseconds

1234567891011>>