Home
last modified time | relevance | path

Searched refs:f1 (Results 1 – 25 of 3215) sorted by relevance

12345678910>>...129

/third_party/boost/tools/quickbook/test/unit/
Dsource_map_test.cpp32 quickbook::file_ptr f1 = builder.release(); in simple_map_tests() local
33 BOOST_TEST(f1->source().empty()); in simple_map_tests()
39 quickbook::file_ptr f1 = builder.release(); in simple_map_tests() local
40 BOOST_TEST_EQ(f1->source(), source); in simple_map_tests()
42 f1->position_of(f1->source().begin()), in simple_map_tests()
45 f1->position_of(f1->source().begin() + 2), in simple_map_tests()
48 f1->position_of(f1->source().begin() + (line1_end - line1)), in simple_map_tests()
51 f1->position_of(f1->source().begin() + (line2 - line1)), in simple_map_tests()
54 f1->position_of(f1->source().end()), in simple_map_tests()
61 quickbook::file_ptr f1 = builder.release(); in simple_map_tests() local
[all …]
/third_party/boost/libs/fiber/test/
Dtest_shared_future_post.cpp110 boost::fibers::shared_future< int > f1; in test_shared_future_create() local
111 boost::fibers::shared_future< int > f2 = f1; in test_shared_future_create()
112 BOOST_CHECK( ! f1.valid() ); in test_shared_future_create()
119 boost::fibers::shared_future< int > f1 = p.get_future(); in test_shared_future_create() local
120 boost::fibers::shared_future< int > f2 = f1; in test_shared_future_create()
121 BOOST_CHECK( f1.valid() ); in test_shared_future_create()
129 boost::fibers::shared_future< int& > f1; in test_shared_future_create_ref() local
130 boost::fibers::shared_future< int& > f2 = f1; in test_shared_future_create_ref()
131 BOOST_CHECK( ! f1.valid() ); in test_shared_future_create_ref()
138 boost::fibers::shared_future< int& > f1 = p.get_future(); in test_shared_future_create_ref() local
[all …]
Dtest_shared_future_dispatch.cpp110 boost::fibers::shared_future< int > f1; in test_shared_future_create() local
111 boost::fibers::shared_future< int > f2 = f1; in test_shared_future_create()
112 BOOST_CHECK( ! f1.valid() ); in test_shared_future_create()
119 boost::fibers::shared_future< int > f1 = p.get_future(); in test_shared_future_create() local
120 boost::fibers::shared_future< int > f2 = f1; in test_shared_future_create()
121 BOOST_CHECK( f1.valid() ); in test_shared_future_create()
129 boost::fibers::shared_future< int& > f1; in test_shared_future_create_ref() local
130 boost::fibers::shared_future< int& > f2 = f1; in test_shared_future_create_ref()
131 BOOST_CHECK( ! f1.valid() ); in test_shared_future_create_ref()
138 boost::fibers::shared_future< int& > f1 = p.get_future(); in test_shared_future_create_ref() local
[all …]
Dtest_future_post.cpp109 boost::fibers::future< int > f1; in test_future_create() local
110 BOOST_CHECK( ! f1.valid() ); in test_future_create()
120 boost::fibers::future< int& > f1; in test_future_create_ref() local
121 BOOST_CHECK( ! f1.valid() ); in test_future_create_ref()
131 boost::fibers::future< void > f1; in test_future_create_void() local
132 BOOST_CHECK( ! f1.valid() ); in test_future_create_void()
143 boost::fibers::future< int > f1 = p1.get_future(); in test_future_move() local
144 BOOST_CHECK( f1.valid() ); in test_future_move()
147 boost::fibers::future< int > f2( std::move( f1) ); in test_future_move()
148 BOOST_CHECK( ! f1.valid() ); in test_future_move()
[all …]
Dtest_future_dispatch.cpp109 boost::fibers::future< int > f1; in test_future_create() local
110 BOOST_CHECK( ! f1.valid() ); in test_future_create()
120 boost::fibers::future< int& > f1; in test_future_create_ref() local
121 BOOST_CHECK( ! f1.valid() ); in test_future_create_ref()
131 boost::fibers::future< void > f1; in test_future_create_void() local
132 BOOST_CHECK( ! f1.valid() ); in test_future_create_void()
143 boost::fibers::future< int > f1 = p1.get_future(); in test_future_move() local
144 BOOST_CHECK( f1.valid() ); in test_future_move()
147 boost::fibers::future< int > f2( std::move( f1) ); in test_future_move()
148 BOOST_CHECK( ! f1.valid() ); in test_future_move()
[all …]
/third_party/typescript/tests/baselines/reference/
DprivacyImportParseErrors.js6 export function f1() { function
16 export function f1() {
24 export function f1();
32 export function f1();
42 export var m1_im1_private_v3_public = m1_im1_private.f1;
43 export var m1_im1_private_v4_public = m1_im1_private.f1();
46 var m1_im1_private_v3_private = m1_im1_private.f1;
47 var m1_im1_private_v4_private = m1_im1_private.f1();
53 export var m1_im2_private_v3_public = m1_im2_private.f1;
54 export var m1_im2_private_v4_public = m1_im2_private.f1();
[all …]
DprivacyImport.js6 export function f1() { function
16 export function f1() {
42 export var m1_im1_private_v3_public = m1_im1_private.f1;
43 export var m1_im1_private_v4_public = m1_im1_private.f1();
46 var m1_im1_private_v3_private = m1_im1_private.f1;
47 var m1_im1_private_v4_private = m1_im1_private.f1();
53 export var m1_im2_private_v3_public = m1_im2_private.f1;
54 export var m1_im2_private_v4_public = m1_im2_private.f1();
57 var m1_im2_private_v3_private = m1_im2_private.f1;
58 var m1_im2_private_v4_private = m1_im2_private.f1();
[all …]
DprivacyGloImportParseErrors.js6 export function f1() { function
16 export function f1() {
24 export function f1();
32 export function f1();
42 export var m1_im1_private_v3_public = m1_im1_private.f1;
43 export var m1_im1_private_v4_public = m1_im1_private.f1();
46 var m1_im1_private_v3_private = m1_im1_private.f1;
47 var m1_im1_private_v4_private = m1_im1_private.f1();
53 export var m1_im2_private_v3_public = m1_im2_private.f1;
54 export var m1_im2_private_v4_public = m1_im2_private.f1();
[all …]
DprivacyImportParseErrors.types11 export function f1() {
12 >f1 : () => c1
32 export function f1() {
33 >f1 : () => c1
50 export function f1();
51 >f1 : () => any
66 export function f1();
67 >f1 : () => any
96 export var m1_im1_private_v3_public = m1_im1_private.f1;
98 >m1_im1_private.f1 : () => m1_im1_private.c1
[all …]
DprivacyImport.symbols11 export function f1() {
12 >f1 : Symbol(f1, Decl(privacyImport.ts, 3, 9))
32 export function f1() {
33 >f1 : Symbol(f1, Decl(privacyImport.ts, 13, 9))
48 // export function f1();
56 // export function f1();
79 export var m1_im1_private_v3_public = m1_im1_private.f1;
81 >m1_im1_private.f1 : Symbol(m1_im1_private.f1, Decl(privacyImport.ts, 3, 9))
83 >f1 : Symbol(m1_im1_private.f1, Decl(privacyImport.ts, 3, 9))
85 export var m1_im1_private_v4_public = m1_im1_private.f1();
[all …]
DprivacyImport.types11 export function f1() {
12 >f1 : () => c1
32 export function f1() {
33 >f1 : () => c1
48 // export function f1();
56 // export function f1();
80 export var m1_im1_private_v3_public = m1_im1_private.f1;
82 >m1_im1_private.f1 : () => m1_im1_private.c1
84 >f1 : () => m1_im1_private.c1
86 export var m1_im1_private_v4_public = m1_im1_private.f1();
[all …]
DgenericRestParameters3.js2 declare let f1: (x: string, ...args: [string] | [number, boolean]) => void;
12 f1("foo", "abc");
13 f1("foo", 10, true);
14 f1("foo", ...t1);
15 f1("foo", ...t2);
16 f1("foo", ...t3);
17 f1("foo", ...t4);
18 f1("foo", 10); // Error
19 f1("foo"); // Error
21 f2 = f1;
[all …]
DprivacyGloImport.js6 export function f1() { function
16 export function f1() {
42 export var m1_im1_private_v3_public = m1_im1_private.f1;
43 export var m1_im1_private_v4_public = m1_im1_private.f1();
46 var m1_im1_private_v3_private = m1_im1_private.f1;
47 var m1_im1_private_v4_private = m1_im1_private.f1();
53 export var m1_im2_private_v3_public = m1_im2_private.f1;
54 export var m1_im2_private_v4_public = m1_im2_private.f1();
57 var m1_im2_private_v3_private = m1_im2_private.f1;
58 var m1_im2_private_v4_private = m1_im2_private.f1();
[all …]
DprivacyGloImportParseErrors.types11 export function f1() {
12 >f1 : () => c1
32 export function f1() {
33 >f1 : () => c1
50 export function f1();
51 >f1 : () => any
66 export function f1();
67 >f1 : () => any
96 export var m1_im1_private_v3_public = m1_im1_private.f1;
98 >m1_im1_private.f1 : () => m1_im1_private.c1
[all …]
DnewNamesInGlobalAugmentations1.symbols1 === tests/cases/compiler/f1.d.ts ===
5 >M : Symbol(M, Decl(f1.d.ts, 0, 10))
6 >M1 : Symbol(M1, Decl(f1.d.ts, 2, 17))
9 >x : Symbol(x, Decl(f1.d.ts, 3, 14))
12 >global : Symbol(global, Decl(f1.d.ts, 4, 1))
15 ….es2015.symbol.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --), Decl(f1.d.ts, 5, 16))
18 >observable : Symbol(SymbolConstructor.observable, Decl(f1.d.ts, 6, 33))
21 >Cls : Symbol(Cls, Decl(f1.d.ts, 8, 5))
22 >x : Symbol(Cls.x, Decl(f1.d.ts, 9, 15))
25 >a : Symbol(a, Decl(f1.d.ts, 10, 9))
[all …]
/third_party/pulseaudio/src/tests/
Dformat-test.c36 pa_format_info *f1 = NULL, *f2 = NULL; in START_TEST() local
42 INIT(f1); INIT(f2); in START_TEST()
43 f1->encoding = PA_ENCODING_AC3_IEC61937; in START_TEST()
44 pa_format_info_set_prop_int(f1, PA_PROP_FORMAT_RATE, 32000); in START_TEST()
47 fail_unless(!pa_format_info_is_compatible(f1, f2)); in START_TEST()
50 REINIT(f1); REINIT(f2); in START_TEST()
51 f1->encoding = PA_ENCODING_AC3_IEC61937; in START_TEST()
52 pa_format_info_set_prop_int_array(f1, PA_PROP_FORMAT_RATE, rates1, PA_ELEMENTSOF(rates1)); in START_TEST()
55 fail_unless(pa_format_info_is_compatible(f1, f2)); in START_TEST()
56 fail_unless(pa_format_info_is_compatible(f2, f1)); in START_TEST()
[all …]
/third_party/boost/libs/flyweight/test/
Dtest_basic_template.hpp53 Flyweight f1(*it); in test_basic_template() local
55 Flyweight c1(f1); in test_basic_template()
59 BOOST_TEST(f1.get_key()==*it); in test_basic_template()
60 BOOST_TEST((f1==f2)==(f1.get()==v2.data())); in test_basic_template()
61 BOOST_TEST(f1==c1); in test_basic_template()
67 BOOST_TEST(f1==cr1); in test_basic_template()
78 f1=((void)0,f1); /* self assignment warning */ in test_basic_template()
79 BOOST_TEST(f1==f1); in test_basic_template()
84 c1=f1; in test_basic_template()
85 BOOST_TEST(c1==f1); in test_basic_template()
[all …]
/third_party/typescript/tests/cases/compiler/
DprivacyImportParseErrors.ts6 export function f1() { function
16 export function f1() { function
24 export function f1(); function
32 export function f1(); function
42 export var m1_im1_private_v3_public = m1_im1_private.f1;
43 export var m1_im1_private_v4_public = m1_im1_private.f1();
46 var m1_im1_private_v3_private = m1_im1_private.f1;
47 var m1_im1_private_v4_private = m1_im1_private.f1();
53 export var m1_im2_private_v3_public = m1_im2_private.f1;
54 export var m1_im2_private_v4_public = m1_im2_private.f1();
[all …]
DprivacyImport.ts7 export function f1() { function
17 export function f1() { function
43 export var m1_im1_private_v3_public = m1_im1_private.f1;
44 export var m1_im1_private_v4_public = m1_im1_private.f1();
47 var m1_im1_private_v3_private = m1_im1_private.f1;
48 var m1_im1_private_v4_private = m1_im1_private.f1();
54 export var m1_im2_private_v3_public = m1_im2_private.f1;
55 export var m1_im2_private_v4_public = m1_im2_private.f1();
58 var m1_im2_private_v3_private = m1_im2_private.f1;
59 var m1_im2_private_v4_private = m1_im2_private.f1();
[all …]
DprivacyGloImportParseErrors.ts6 export function f1() { function
16 export function f1() { function
24 export function f1(); function
32 export function f1(); function
42 export var m1_im1_private_v3_public = m1_im1_private.f1;
43 export var m1_im1_private_v4_public = m1_im1_private.f1();
46 var m1_im1_private_v3_private = m1_im1_private.f1;
47 var m1_im1_private_v4_private = m1_im1_private.f1();
53 export var m1_im2_private_v3_public = m1_im2_private.f1;
54 export var m1_im2_private_v4_public = m1_im2_private.f1();
[all …]
/third_party/toybox/tests/
Dgzip.test10 echo -n "foo " > f1
16 rm -f f1 f2 f1.gz f2.gz
24 echo -n "foo " > f1
30 rm -f f1 f2 out.gz
44 echo "hello world" > f1
45 echo "precious data" > f1.gz
52 rm -f f1 f1.gz
55 echo "hello world" > f1
58 rm -f f1 f1.gz
71 echo "hello world" > f1
[all …]
/third_party/boost/libs/type_erasure/test/
Dtest_member.cpp25 int f1() { return val; } in f1() function
26 int f1(int i) { return val + i; } in f1() function
30 BOOST_TYPE_ERASURE_MEMBER((global_has_f1_0), f1, 0)
38 BOOST_CHECK_EQUAL(x.f1(), 10); in BOOST_AUTO_TEST_CASE()
47 BOOST_CHECK_EQUAL(x.f1(), 10); in BOOST_AUTO_TEST_CASE()
50 BOOST_TYPE_ERASURE_MEMBER((ns1)(ns2)(ns_has_f1_0), f1, 0)
58 BOOST_CHECK_EQUAL(x.f1(), 10); in BOOST_AUTO_TEST_CASE()
63 int f1() const { return val; } in f1() function
64 int f1(int i) const { return val + i; } in f1() function
74 BOOST_CHECK_EQUAL(x.f1(), 10); in BOOST_AUTO_TEST_CASE()
[all …]
/third_party/boost/libs/thread/test/sync/futures/when_all/
Done_pass.cpp52 boost::future<int> f1; in main() local
53 BOOST_TEST(! f1.valid()); in main()
54 boost::future<boost::csbl::tuple<boost::future<int> > > all = boost::when_all(boost::move(f1)); in main()
55 BOOST_TEST(! f1.valid()); in main()
64 boost::future<int> f1 = boost::make_ready_future(123); in main() local
65 BOOST_TEST(f1.valid()); in main()
66 BOOST_TEST(f1.is_ready()); in main()
67 boost::future<boost::csbl::tuple<boost::future<int> > > all = boost::when_all(boost::move(f1)); in main()
68 BOOST_TEST(! f1.valid()); in main()
78 boost::shared_future<int> f1 = boost::make_ready_future(123).share(); in main() local
[all …]
/third_party/boost/libs/thread/test/sync/futures/when_any/
Done_pass.cpp45 boost::future<int> f1; in main() local
46 BOOST_TEST(! f1.valid()); in main()
47 boost::future<boost::csbl::tuple<boost::future<int> > > all = boost::when_any(boost::move(f1)); in main()
48 BOOST_TEST(! f1.valid()); in main()
57 boost::future<int> f1 = boost::make_ready_future(123); in main() local
58 BOOST_TEST(f1.valid()); in main()
59 BOOST_TEST(f1.is_ready()); in main()
60 boost::future<boost::csbl::tuple<boost::future<int> > > all = boost::when_any(boost::move(f1)); in main()
61 BOOST_TEST(! f1.valid()); in main()
71 boost::shared_future<int> f1 = boost::make_ready_future(123).share(); in main() local
[all …]
/third_party/boost/libs/multiprecision/test/
Dtest_mpfi_precisions.cpp122 mpfi_float f1; in main() local
123 f1 = 3; in main()
124 BOOST_CHECK_EQUAL(f1.precision(), 100); in main()
125 f1 = 3.5; in main()
126 BOOST_CHECK_EQUAL(f1.precision(), 100); in main()
135 f4.assign(f1, f4.precision()); in main()
144 mpfi_float f1; in main() local
145 f1 = 3; in main()
146 BOOST_CHECK_EQUAL(f1.precision(), 100); in main()
148 BOOST_CHECK_EQUAL(lower(f1).precision(), 100); in main()
[all …]

12345678910>>...129