Searched defs:w1 (Results 1 - 25 of 91) sorted by relevance

1234

/external/chromium_org/ui/views/corewm/
H A Dwindow_util_unittest.cc55 // w1
65 views::Widget* w1 = CreateControlWidget(root_window(), local
67 w1->GetNativeView()->layer()->set_name("w1");
75 w1->GetRootView()->AddChildView(CreateViewWithLayer(
77 w1->GetRootView()->AddChildView(v2);
81 w1->GetRootView()->AddChildView(w2_host_view);
82 w1->GetRootView()->AddChildView(CreateViewWithLayer(
85 views::Widget* w2 = CreateControlWidget(w1->GetNativeView(),
95 ui::Layer* w1_layer = w1
[all...]
/external/dropbear/libtommath/
H A Dbn_mp_toom_sqr.c22 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; local
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) {
59 /* w1 = (a2 + 2(a1 + 2a0))**2 */
73 if ((res = mp_sqr(&tmp1, &w1)) != MP_OKAY) {
119 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) {
127 if ((res = mp_div_2(&w1, &w1)) != MP_OKAY) {
142 if ((res = mp_sub(&w1, &w2, &w1)) !
[all...]
H A Dbn_mp_toom_mul.c27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
31 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4,
82 /* w1 = (a2 + 2(a1 + 2a0))(b2 + 2(b1 + 2b0)) */
109 if ((res = mp_mul(&tmp1, &tmp2, &w1)) != MP_OKAY) {
175 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) {
183 if ((res = mp_div_2(&w1, &w1)) != MP_OKAY) {
198 if ((res = mp_sub(&w1, &w2, &w1)) !
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dweight.h132 bool operator()(const W &w1, const W &w2) const { argument
133 return (Plus(w1, w2) == w1) && w1 != w2;
H A Drandom-weight.h135 W1 w1 = generator1_(); local
137 return Weight(w1, w2);
/external/chromium/chrome/browser/history/
H A Dquery_parser_unittest.cc142 const std::string w1; member in struct:TestData2
157 EXPECT_EQ(data[i].w1, UTF16ToUTF8(results[0]));
/external/chromium_org/chrome/browser/history/
H A Dquery_parser_unittest.cc144 const std::string w1; member in struct:TestData2
159 EXPECT_EQ(data[i].w1, UTF16ToUTF8(results[0]));
/external/chromium_org/content/renderer/pepper/
H A Dpepper_graphics_2d_host_unittest.cc27 int w1; member in struct:content::__anon8049
75 gfx::Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
/external/chromium_org/ui/views/widget/
H A Dwindow_reorderer_unittest.cc71 scoped_ptr<Widget> w1(CreateControlWidget(parent_window,
73 SetWindowAndLayerName(w1->GetNativeView(), "w1");
74 w1->Show();
80 EXPECT_EQ("w1 w2", ChildWindowNamesAsString(*parent_window));
81 EXPECT_EQ("v w1 w2",
87 EXPECT_EQ("w2 w1", ChildWindowNamesAsString(*parent_window));
88 EXPECT_EQ("v w2 w1",
92 w1->GetNativeView()->SetProperty(kHostViewKey, host_view1);
94 EXPECT_EQ("w1 w
141 aura::Window* w1 = aura::test::CreateTestWindowWithId(0, local
[all...]
/external/openfst/src/include/fst/
H A Dlexicographic-weight.h61 LexicographicWeight(W1 w1, W2 w2) : PairWeight<W1, W2>(w1, w2) { argument
H A Dproduct-weight.h50 ProductWeight(W1 w1, W2 w2) : PairWeight<W1, W2>(w1, w2) {} argument
H A Dweight.h142 bool operator()(const W &w1, const W &w2) const { argument
143 return (Plus(w1, w2) == w1) && w1 != w2;
164 W2 operator()(W1 w1) const {
H A Dpower-weight.h99 inline PowerWeight<W, n> Plus(const PowerWeight<W, n> &w1, argument
103 w.SetValue(i, Plus(w1.Value(i), w2.Value(i)));
109 inline PowerWeight<W, n> Times(const PowerWeight<W, n> &w1, argument
113 w.SetValue(i, Times(w1.Value(i), w2.Value(i)));
119 inline PowerWeight<W, n> Divide(const PowerWeight<W, n> &w1, argument
124 w.SetValue(i, Divide(w1.Value(i), w2.Value(i), type));
148 inline W DotProduct(const PowerWeight<W, n> &w1, argument
152 w = Plus(w, Times(w1.Value(i), w2.Value(i)));
H A Drandom-weight.h196 W1 w1 = generator1_(); local
198 return Weight(w1, w2);
228 W1 w1 = generator1_(); local
230 return Weight(w1, w2);
/external/openfst/src/test/
H A Dweight-tester.h42 Weight w1 = weight_generator_(); local
47 VLOG(1) << "w1 = " << w1;
51 TestSemiring(w1, w2, w3);
53 TestDivision(w1, w2);
54 TestReverse(w1, w2);
55 TestEquality(w1, w2, w3);
56 TestIO(w1);
57 TestCopy(w1);
66 void TestSemiring(Weight w1, Weigh argument
77 CHECK(Plus(Weight::Zero(), w1) == w1); local
79 CHECK(Times(Weight::One(), w1) == w1); local
129 TestDivision(Weight w1, Weight w2) argument
156 TestReverse(Weight w1, Weight w2) argument
168 TestEquality(Weight w1, Weight w2, Weight w3) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java71 int appendSlot(int w0, int w1, int w2, int w3) argument
78 fastArray[newoffset+1] = w1;
96 chunk[slotpos+1] = w1;
217 * @param w1 int
221 void writeSlot(int position, int w0, int w1, int w2, int w3) argument
232 chunk[slotpos + 1] = w1;
/external/clang/test/Analysis/
H A Dinitializer.cpp123 Wrapper w1; local
124 clang_analyzer_eval(w1.value == 42); // expected-warning{{TRUE}}
/external/clang/test/Analysis/inlining/
H A Dcontainers.cpp44 void testWrappers(BeginOnlySet &w1, IteratorStructOnlySet &w2, argument
51 clang_analyzer_eval(w1.begin().impl.impl == w1.begin().impl.impl);
/external/clang/test/SemaCXX/
H A Ddefault-assignment-operator.cpp53 W w1, w2; variable
56 w1 = w2;
/external/dropbear/libtomcrypt/src/ciphers/
H A Dskipjack.c91 tmp = g_func(w1, &kp, skey->skipjack.key); \
92 w1 = tmp ^ w4 ^ x; \
97 tmp = g_func(w1, &kp, skey->skipjack.key); \
99 w3 = w1 ^ w2 ^ x; \
100 w1 = tmp1; w2 = tmp;
103 tmp = w1 ^ w2 ^ x; \
104 w1 = ig_func(w2, &kp, skey->skipjack.key); \
110 w3 = w4; w4 = w1; w1 = tmp;
149 unsigned w1,w local
213 unsigned w1,w2,w3,w4,tmp; local
[all...]
/external/chromium_org/ash/
H A Droot_window_controller_unittest.cc429 Widget* w1 = CreateTestWidget(gfx::Rect(0, 0, 100, 100)); local
430 w1->Maximize();
444 w1->Activate();
/external/chromium_org/ash/wm/
H A Dactivation_controller_unittest.cc59 aura::Window* w1() { return w1_.get(); } function in class:ash::test::GetTopmostWindowToActivateTest
205 scoped_ptr<aura::Window> w1(CreateTestWindowInShellWithDelegate(
207 ad1.SetWindow(w1.get());
212 generator.MoveMouseToCenterOf(w1.get());
214 EXPECT_TRUE(wm::IsActiveWindow(w1.get()));
220 w1->AddTransientChild(menu.get());
225 EXPECT_TRUE(wm::IsActiveWindow(w1.get()));
232 scoped_ptr<aura::Window> w1(CreateTestWindowInShellWithDelegate(
236 aura::Window* parent = w1->parent();
243 EXPECT_FALSE(wm::IsActiveWindow(w1
[all...]
H A Dframe_painter_unittest.cc319 scoped_ptr<Widget> w1(CreateTestWidget());
320 scoped_ptr<FramePainter> p1(CreateTestPainter(w1.get()));
321 w1->Show();
367 scoped_ptr<Widget> w1(CreateTestWidget());
368 scoped_ptr<FramePainter> p1(CreateTestPainter(w1.get()));
369 w1->Show();
395 scoped_ptr<Widget> w1(CreateTestWidget());
396 scoped_ptr<FramePainter> p1(CreateTestPainter(w1.get()));
397 w1->Show();
416 w1
727 Widget* w1 = new Widget; local
[all...]
H A Dtoplevel_window_event_handler_unittest.cc70 aura::Window* w1 = new aura::Window(d1); local
71 w1->SetType(aura::client::WINDOW_TYPE_NORMAL);
72 w1->set_id(1);
73 w1->Init(ui::LAYER_TEXTURED);
77 parent->AddChild(w1);
78 w1->SetBounds(gfx::Rect(0, 0, 100, 100));
79 w1->Show();
80 return w1;
102 scoped_ptr<aura::Window> w1(CreateWindow(HTCAPTION));
103 gfx::Size size = w1
[all...]
/external/chromium_org/ui/gfx/
H A Drect_unittest.cc47 int w1; member in struct:gfx::__anon14335
67 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
78 int w1; member in struct:gfx::__anon14336
109 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
124 int w1; member in struct:gfx::Test
158 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
182 int w1; member in struct:gfx::Test
210 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
439 int w1; member in struct:gfx::Test
468 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, test
483 float w1; member in struct:gfx::Test
533 float w1; member in struct:gfx::Test
596 float w1; member in struct:gfx::Test
[all...]

Completed in 756 milliseconds

1234