Searched refs:one (Results 51 - 75 of 1174) sorted by relevance

1234567891011>>

/external/toybox/tests/
H A Dcksum.test13 touch one two
14 testing "on multiple files" "cksum one two" "4294967295 0 one\n4294967295 0 two\n" "" ""
15 rm -f one two
H A Dxargs.test9 "one two three four\n" "" "one two\tthree \nfour\n\n"
12 "" "one \ntwo\n three"
13 testing "-n 2" "xargs -n 2" "one two\nthree\n" "" "one \ntwo\n three"
14 testing "-n exact match" "xargs -n 3" "one two three\n" "" "one two three"
15 testing "xargs2" "xargs -n2" "one two\nthree four\nfive\n" "" \
16 "one two three four five"
18 "one\ntw
[all...]
H A Dcp.test10 testing "not enough arguments [fail]" "cp one 2>/dev/null || echo yes" \
63 touch one two
65 "cp one two missing 2>/dev/null || echo yes" "yes\n" "" ""
72 "cp random one two 2>/dev/null || echo yes" "yes\n" "" ""
74 "cp random one dir && cmp random dir/random && cmp one dir/one && echo yes" \
76 rm one two random
79 mkdir -p one/two/three/four
80 touch one/tw
[all...]
/external/v8/tools/clang/plugins/tests/
H A Dmissing_ctor.cpp17 MissingInCPPOK one; local
H A Dmissing_ctor_dllexport.cpp17 MissingInCPPOK one; local
/external/mockito/src/test/java/org/mockitousage/matchers/
H A DVerificationAndStubbingUsingMatchersTest.java19 private IMethods one; field in class:VerificationAndStubbingUsingMatchersTest
25 one = mock(IMethods.class);
32 when(one.simpleMethod(2)).thenReturn("2");
36 assertEquals(null, one.simpleMethod(1));
37 assertEquals("2", one.simpleMethod(2));
53 doThrow(new RuntimeException()).when(one).oneArg(true);
57 one.oneArg(true);
61 one.simpleMethod(100);
67 verify(one).oneArg(eq(true));
68 verify(one)
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dint128_unittest.cc45 uint128 one(1);
55 EXPECT_LT(one, two);
56 EXPECT_GT(two, one);
57 EXPECT_LT(one, big);
58 EXPECT_LT(one, big);
59 EXPECT_EQ(one, one_2arg);
60 EXPECT_NE(one, two);
61 EXPECT_GT(big, one);
73 EXPECT_EQ(one, one | on
434 constexpr uint128 one = 1; local
[all...]
/external/clang/test/CodeGenCXX/
H A Dcopy-in-cplus-object.cpp19 TestObject one; local
20 int (^V)() = ^{ return one.version(); };
H A Dcp-blocks-linetables.cpp17 zero, one, two, three, four enumerator in enum:numbers
28 __block enum numbers x = one;
44 if (x != one)
58 if (res != one)
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dfpe.cc23 volatile int one = 1; local
26 sink = one / zero;
/external/llvm/test/MC/AsmParser/
H A Ddirective-err.s20 .error "This is my error. There are many like it, but this one is mine."
21 // CHECK: error: This is my error. There are many like it, but this one is mine.
23 .ifc one, two
H A Ddirective-warning.s23 .ifc one, two
/external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/
H A Dop_+.pass.cpp41 D10 one(1);
42 static_assert( (std::is_same< decltype(+one), decltype(zero-one) >::value), "");
43 static_assert( (std::is_same< decltype(zero+one), D1>::value), "");
44 static_assert( (std::is_same< decltype(+one), D1>::value), "");
/external/skia/tests/
H A DPathOpsInverseTest.cpp10 SkPath one, two; local
15 one.reset();
16 one.setFillType((SkPath::FillType) oneFill);
17 one.addRect(0, 0, 6, 6, (SkPath::Direction) oneDir);
25 testPathOp(reporter, one, two, (SkPathOp) op, "inverseTest");
/external/skqp/tests/
H A DPathOpsInverseTest.cpp10 SkPath one, two; local
15 one.reset();
16 one.setFillType((SkPath::FillType) oneFill);
17 one.addRect(0, 0, 6, 6, (SkPath::Direction) oneDir);
25 testPathOp(reporter, one, two, (SkPathOp) op, "inverseTest");
/external/clang/tools/scan-build-py/tests/functional/src/build/
H A DMakefile11 $(OBJDIR)/clean-one.o: $(SRCDIR)/clean-one.c
12 $(CC) $(CFLAGS) -c -o $@ $(SRCDIR)/clean-one.c
17 $(OBJDIR)/emit-one.o: $(SRCDIR)/emit-one.c
18 $(CC) $(CFLAGS) -c -o $@ $(SRCDIR)/emit-one.c
23 $(OBJDIR)/broken-one.o: $(SRCDIR)/broken-one.c
24 $(CC) $(CFLAGS) -c -o $@ $(SRCDIR)/broken-one.c
29 $(PROGRAM): $(OBJDIR)/main.o $(OBJDIR)/clean-one
[all...]
/external/guice/extensions/servlet/test/com/google/inject/servlet/
H A DContinuingHttpServletRequestTest.java88 private static void assertCookieArraysEqual(Cookie[] one, Cookie[] two) { argument
89 assertEquals(one.length, two.length);
90 for (int i = 0; i < one.length; i++) {
91 Cookie cookie = one[i];
96 private static void assertCookieEquality(Cookie one, Cookie two) { argument
97 assertEquals(one.getName(), two.getName());
98 assertEquals(one.getComment(), two.getComment());
99 assertEquals(one.getDomain(), two.getDomain());
100 assertEquals(one.getPath(), two.getPath());
101 assertEquals(one
[all...]
/external/libese/libese/tests/
H A Dsg_unittests.cpp63 uint8_t one[] = {'H', 'E', 'L'}; local
68 .base = one,
69 .len = sizeof(one),
87 copied = ese_sg_to_buf(sg, 3, sizeof(one) + sizeof(two) - 2, sizeof(dst),
90 (sizeof(one) + sizeof(two) - 2));
97 uint8_t one[3]; local
102 .base = one,
103 .len = sizeof(one),
117 EXPECT_EQ(copied, sizeof(one) + sizeof(two) + sizeof(three));
118 EXPECT_EQ(one[
[all...]
/external/python/cpython2/Lib/distutils/tests/
H A Dtest_dep_util.py38 one = os.path.join(sources, 'one')
42 self.write_file(one)
46 self.assertEqual(newer_pairwise([one, two], [three, four]),
47 ([one],[three]))
53 one = os.path.join(sources, 'one')
60 self.write_file(one)
63 self.assertTrue(newer_group([one, two, three], old_file))
64 self.assertFalse(newer_group([one, tw
[all...]
/external/python/cpython3/Lib/distutils/tests/
H A Dtest_dep_util.py37 one = os.path.join(sources, 'one')
41 self.write_file(one)
45 self.assertEqual(newer_pairwise([one, two], [three, four]),
46 ([one],[three]))
52 one = os.path.join(sources, 'one')
59 self.write_file(one)
62 self.assertTrue(newer_group([one, two, three], old_file))
63 self.assertFalse(newer_group([one, tw
[all...]
/external/python/cpython3/Lib/test/test_importlib/
H A Dtest_namespace_pkgs.py76 import foo.one namespace
77 self.assertEqual(foo.one.attr, 'portion1 foo one')
84 import foo.one namespace
92 # Make sure only 'foo.one' can be imported
93 import foo.one namespace
94 self.assertEqual(foo.one.attr, 'portion1 foo one')
111 import foo.one namespace
113 self.assertEqual(foo.one
121 import foo.one namespace
131 import foo.one namespace
138 import foo.one namespace
145 import foo.one namespace
154 import foo.one namespace
166 import foo.one namespace
178 import foo.one namespace
190 import foo.one namespace
203 import foo.one namespace
214 import parent.child.one namespace
231 import parent.child.one namespace
272 import foo.one namespace
294 import foo.one namespace
307 import foo.one namespace
[all...]
/external/libcxxabi/test/
H A Dtest_vector1.pass.cpp78 void *one, *two, *three; local
81 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, NULL, NULL );
85 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, NULL );
90 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, my_construct, my_destruct );
94 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, my_destruct );
99 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, NULL, NULL );
103 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, NULL );
108 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, my_construct, my_destruct );
112 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, my_destruct );
122 void *one, *tw local
164 void *one, *two, *three; local
223 void *one, *two, *three; local
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_location.py8 baseInput="int one;\nint two;\n"
17 one = get_cursor(tu, 'one')
20 assert one is not None
23 assert_location(one.location,line=1,column=5,offset=4)
28 one = get_cursor(tu, 'one')
31 assert one is not None
34 assert_location(one.location,line=2,column=5,offset=5)
39 one
[all...]
/external/clang/test/Lexer/
H A Dpragma-region.c27 #pragma region one
/external/fdlibm/
H A De_atanh.c36 static const double one = 1.0, huge = 1e300; variable
38 static double one = 1.0, huge = 1e300; variable
64 t = 0.5*ieee_log1p(t+t*x/(one-x));
66 t = 0.5*ieee_log1p((x+x)/(one-x));

Completed in 1119 milliseconds

1234567891011>>