/third_party/node/deps/npm/node_modules/retry/test/integration/ |
H A D | test-retry-operation.js | 3 var fake = common.fake.create(); variable 11 var finalCallback = fake.callback('finalCallback'); 12 fake.expectAnytime(finalCallback); 99 var finalCallback = fake.callback('finalCallback'); 100 fake.expectAnytime(finalCallback); 125 var finalCallback = fake.callback('finalCallback'); 126 fake.expectAnytime(finalCallback); 159 var finalCallback = fake.callback('finalCallback'); 160 fake [all...] |
H A D | test-retry-wrap.js | 3 var fake = common.fake.create(); variable
|
/third_party/node/test/parallel/ |
H A D | test-assert-checktag.js | 19 const fake = new FakeDate(); 21 assert.notDeepEqual(date, fake); 22 assert.notDeepEqual(fake, date); 25 // then reveal the fakeness of the fake date 27 () => assert.deepStrictEqual(date, fake), 34 () => assert.deepStrictEqual(fake, date),
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_set_literal.py | 30 # Make a fake listmaker 31 fake = pytree.Node(syms.listmaker, [single.clone()]) 32 single.replace(fake) 33 items = fake
|
/third_party/elfutils/libdw/ |
H A D | libdw_findcu.c | 236 struct Dwarf_CU fake = { .start = start, .end = 0 }; in __libdw_findcu() local 237 struct Dwarf_CU **found = tfind (&fake, tree, findcu_cb); in __libdw_findcu() 285 struct Dwarf_CU fake = { .start = start, .end = 0 }; in __libdw_findcu_addr() local 286 struct Dwarf_CU **found = tfind (&fake, tree, findcu_cb); in __libdw_findcu_addr() 300 Dwarf fake = { .sectiondata[IDX_debug_info] = &fake_data }; in __libdw_find_split_dbg_addr() local 301 Dwarf **found = tfind (&fake, &dbg->split_tree, __libdw_finddbg_cb); in __libdw_find_split_dbg_addr()
|
H A D | dwarf_getlocation.c | 169 struct loc_block_s fake = { .addr = (void *) op }; in dwarf_getlocation_implicit_value() local 170 struct loc_block_s **found = tfind (&fake, &attr->cu->locs, loc_compare); in dwarf_getlocation_implicit_value() 183 form then create a fake location using DW_OP_plus_uconst and the offset 213 struct loc_s fake = { .addr = attr->valp }; in is_constant_offset() local 214 struct loc_s **found = tfind (&fake, &attr->cu->locs, loc_compare); in is_constant_offset() 268 struct loc_s fake = { .addr = block->data }; in __libdw_intern_expression() local 269 struct loc_s **found = tfind (&fake, cache, loc_compare); in __libdw_intern_expression()
|
H A D | dwarf_getmacros.c | 277 Dwarf_Macro_Op_Table fake = { .offset = macoff, .sec_index = sec_index }; in cache_op_table() local 278 Dwarf_Macro_Op_Table **found = tfind (&fake, &dbg->macro_ops, in cache_op_table() 359 /* A fake CU with bare minimum data to fool dwarf_formX into in read_macros()
|
H A D | dwarf_getsrclines.c | 1138 struct files_lines_s fake = { .debug_line_offset = debug_line_offset }; in __libdw_getsrclines() local 1139 struct files_lines_s **found = tfind (&fake, &dbg->files_lines, in __libdw_getsrclines()
|
/third_party/ltp/testcases/kernel/firmware/fw_load_user/ |
H A D | fw_load.c | 53 int fake; member 141 fw[fw_num].fake = 1; in setup() 156 fail = (result & (1 << i)) == 0 && !fw[i].fake; in test_run() 160 (fw[i].fake) ? "can't" : "can", in test_run()
|
/third_party/ltp/tools/sparse/sparse-src/validation/mem2reg/ |
H A D | load-dead.c | 3 static inline int fake(void) in fake() function 9 0 || fun((a, fake(), a)); in foo()
|
/third_party/skia/modules/skottie/tests/ |
H A D | Expression.cpp | 100 "x": "fake; return value is specified by the FakeScalarExpressionEvaluator." in DEF_TEST() 126 "x": "fake; return value is specified by the FakeArrayExpressionEvaluator." in DEF_TEST() 184 "x": "fake; return value is specified by the FakeArrayExpressionEvaluator." in DEF_TEST() 320 "x": "fake; return value is specified by the FakeStringExpressionEvaluator." in DEF_TEST()
|
/third_party/skia/src/pathops/ |
H A D | SkPathOpsTSect.h | 100 SkTCurve* fake = curve.make(heap); in debugInit() local 101 fake->debugInit(); in debugInit() 102 init(*fake); in debugInit() 103 initBounds(*fake); in debugInit()
|
/third_party/python/Lib/test/ |
H A D | inspect_fodder2.py | 125 def fake(): function 127 return fake
|
H A D | test_cmd_line.py | 603 fake = os.path.join(tmpdir, "uuid.py") 605 with open(fake, "w", encoding="utf-8") as f:
|
/third_party/skia/experimental/sorttoy/ |
H A D | sorttoy.cpp | 263 FakeCanvas fake(actualBM); in sort_test() 265 c->execute(&fake); in sort_test() 269 fake.finalize(); in sort_test() 271 std::vector<ID> actualOrder = fake.getOrder(); in sort_test()
|
/third_party/node/deps/npm/node_modules/retry/test/ |
H A D | common.js | 10 common.fake = require('fake')
|
/third_party/elfutils/src/ |
H A D | nm.c | 1389 Dwarf_Global fake = { .name = symstr }; in show_symbols() local 1390 Dwarf_Global **found = tfind (&fake, &global_root, in show_symbols() 1439 struct local_name fake = in show_symbols() local 1445 struct local_name **found = tfind (&fake, &local_root, in show_symbols()
|
/third_party/openssl/test/ |
H A D | run_tests.pl | 260 package TAP::Harness::fake; 298 $package = 'TAP::Harness::fake';
|
/third_party/curl/tests/server/ |
H A D | getpart.c | 33 /* just to please curl_base64.h we create a fake struct */ 35 int fake; member
|
/third_party/rust/crates/clap/tests/builder/ |
H A D | help.rs | 1579 Usage: test --fake <some> <val> in issue_1052_require_delim_help() 1582 -f, --fake <some> <val> some help in issue_1052_require_delim_help() 1592 arg!(-f --fake <s> "some help") in issue_1052_require_delim_help() 1607 Usage: test [OPTIONS] --fake <some> <val> in custom_headers_headers() 1610 -f, --fake <some> <val> some help in custom_headers_headers() 1624 arg!(-f --fake <s> "some help") in custom_headers_headers() 1646 Usage: test [OPTIONS] --fake <some> <val> --birthday-song <song> --birthday-song-volume <volume> 1649 -f, --fake <some> <val> some help 1673 arg!(-f --fake <s> "some help") in multiple_custom_help_headers()
|
/third_party/ffmpeg/tests/fate/ |
H A D | mov.mak | 117 fate-mov-gpmf-remux: CMD = md5 -i $(TARGET_SAMPLES)/mov/fake-gp-media-with-real-gpmf.mp4 -map 0 -c copy -fflags +bitexact -f mp4
|
/third_party/vulkan-loader/tests/framework/icd/ |
H A D | test_icd.cpp | 248 // NOTE: This is a fake struct to make sure the pNext chain is properly passed down to the ICD 304 FakePnextSharedWithICD* fake = reinterpret_cast<FakePnextSharedWithICD*>(base); 305 fake->value = 0xDECAFBAD;
|
/third_party/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/ |
H A D | TestCharset.java | 2423 Charset fake = provider.charsetForName("doesNotExist"); in TestJB5027() 2424 if(fake != null){ in TestJB5027() 2425 errln("\"doesNotExist\" returned " + fake); in TestJB5027()
|
/third_party/backends/backend/ |
H A D | hp3900_rts8822.c | 9257 SANE_Byte fake[] = in RTS_Setup_GainOffset() local 9273 memcpy (&Regs[0x14], &fake, 18); in RTS_Setup_GainOffset()
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 6428 % We want to swallow spaces (but not other tokens) after the fake
|