Home
last modified time | relevance | path

Searched refs:one (Results 201 - 225 of 2343) sorted by relevance

12345678910>>...94

/third_party/typescript/tests/baselines/reference/
H A DcheckJsdocParamOnVariableDeclaredFunctionExpression.js17 var one = function (s) { }, two = function (untyped) { }; function
35 var one = function (s) { }, two = function (untyped) { };
H A DassignmentCompat1.js2 var x = { one: 1 };
16 var x = { one: 1 };
H A DindexSignaturesInferentialTyping.js7 var x3 = bar({ zero: 0, one: 1 }); // type should be number
15 var x3 = bar({ zero: 0, one: 1 }); // type should be number
H A DdestructuringParameterDeclaration7ES5.js11 function one([], {}) {} function
23 function one(_a, _b) { }
H A DinterfaceInheritance.js16 one: number;
20 one: string;
H A DtypeUsedAsValueError.js17 let one = Interface;
34 var one = Interface; variable
/third_party/json/tests/src/
H A Dunit-json_pointer.cpp292 CHECK_THROWS_WITH_AS(j["/one"_json_pointer] = 1,
293 "[json.exception.parse_error.109] parse error: array index 'one' is not a number", json::parse_error&);
294 CHECK_THROWS_WITH_AS(j_const["/one"_json_pointer] == 1,
295 "[json.exception.parse_error.109] parse error: array index 'one' is not a number", json::parse_error&);
297 CHECK_THROWS_WITH_AS(j.at("/one"_json_pointer) = 1,
298 "[json.exception.parse_error.109] parse error: array index 'one' is not a number", json::parse_error&);
299 CHECK_THROWS_WITH_AS(j_const.at("/one"_json_pointer) == 1,
300 "[json.exception.parse_error.109] parse error: array index 'one' is not a number", json::parse_error&);
338 CHECK_THROWS_WITH_AS(j.at("/one"_json_pointer) = 1,
339 "[json.exception.parse_error.109] parse error: array index 'one' i
[all...]
/third_party/node/test/cctest/
H A Dtest_util.cc24 Item one; in TEST() local
25 EXPECT_TRUE(one.node_.IsEmpty()); in TEST()
27 list.PushBack(&one); in TEST()
29 EXPECT_FALSE(one.node_.IsEmpty()); in TEST()
34 EXPECT_EQ(&one, *it); in TEST()
45 EXPECT_EQ(&one, *it); in TEST()
53 EXPECT_EQ(&one, list.PopFront()); in TEST()
54 EXPECT_TRUE(one.node_.IsEmpty()); in TEST()
/third_party/optimized-routines/math/
H A Dpow.c151 double_t hi, lo, one = 1.0; in specialcase() local
153 one = -1.0; in specialcase()
155 hi = one + y; in specialcase()
156 lo = one - hi + y + lo; in specialcase()
157 y = eval_as_double (hi + lo) - one; in specialcase()
187 double_t one = WANT_ROUNDING ? 1.0 + x : 1.0; in exp_inline() local
188 return sign_bias ? -one : one; in exp_inline()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H A Dtrace_vprintk.c18 static const char one[] = "1"; in sys_enter() local
29 one, 2, three, 4, five, 6, seven, 8, nine, 10, ++trace_vprintk_ran); in sys_enter()
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Decp_ppc.c31 static const unsigned long one[] = { 1, 0, 0, 0 }; in ecp_nistz256_from_mont() local
33 ecp_nistz256_mul_mont(res, in, one); in ecp_nistz256_from_mont()
/third_party/rust/crates/clap/examples/tutorial_derive/
H A D02_app_settings.rs10 one: String,
17 println!("one: {:?}", cli.one); in main()
H A D02_apps.rs12 one: String,
19 println!("one: {:?}", cli.one); in main()
H A D02_crate.rs9 one: String,
16 println!("one: {:?}", cli.one); in main()
/third_party/openssl/crypto/ec/
H A Decp_ppc.c31 static const unsigned long one[] = { 1, 0, 0, 0 }; in ecp_nistz256_from_mont() local
33 ecp_nistz256_mul_mont(res, in, one); in ecp_nistz256_from_mont()
/third_party/gn/src/gn/
H A Dtarget_unittest.cc27 ASSERT_EQ(1u, unknown.size()); // Should be one unknown file. in AssertSchedulerHasOneUnknownFileMatching()
690 SubstitutionList::MakeForTest("//out/Debug/{{source_file_part}}.one", in TEST_F()
703 EXPECT_EQ("input.txt.one", output[0].value()); in TEST_F()
712 EXPECT_EQ("//out/Debug/source_file1.txt.one", computed_outputs[0].value()); in TEST_F()
714 EXPECT_EQ("//out/Debug/source_file2.txt.one", computed_outputs[2].value()); in TEST_F()
727 SubstitutionList::MakeForTest("//out/Debug/one", "//out/Debug/two"); in TEST_F()
739 EXPECT_EQ("one", output[0].value()); in TEST_F()
747 EXPECT_EQ("//out/Debug/one", computed_outputs[0].value()); in TEST_F()
751 // one output. in TEST_F()
753 SubstitutionList::MakeForTest("//out/Debug/one"); in TEST_F()
[all...]
/third_party/lzma/C/
H A DAesOpt.c162 #define CTR_START(reg, ii) MM_OP (_mm_add_epi64, ctr, one) reg = ctr;
280 __m128i one = _mm_cvtsi32_si128(1); in AES_FUNC_START2() local
309 MM_OP (_mm_add_epi64, ctr, one) in AES_FUNC_START2()
453 ctr2 = _mm256_setr_m128i(_mm_sub_epi64(ctr, one), ctr); \
454 two = _mm256_setr_m128i(one, one); \
469 __m128i one = _mm_cvtsi32_si128(1); in VAES_FUNC_START2() local
498 MM_OP (_mm_add_epi64, ctr, one) in VAES_FUNC_START2()
703 #define CTR_START(reg, ii) MM_OP (vaddq_u64, ctr, one) reg = vreinterpretq_u8_u64(ctr);
785 uint64x2_t one
[all...]
/third_party/jerryscript/tests/jerry/
H A Dregression-test-issue-2105.js16 var a = {one: "test"};
30 a.one = 'test'; // throws a TypeError
52 assert(Object.keys(a) == "one,two");
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Derrno_saver_test.cc32 bool operator==(ErrnoPrinter one, ErrnoPrinter two) { return one.no == two.no; } in operator ==() argument
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dcn10/
H A Ddcn10_dpp_dscl.c172 const long long one = dc_fixpt_one.value; in dpp1_dscl_get_dscl_mode() local
180 if (data->ratios.horz.value == one in dpp1_dscl_get_dscl_mode()
181 && data->ratios.vert.value == one in dpp1_dscl_get_dscl_mode()
182 && data->ratios.horz_c.value == one in dpp1_dscl_get_dscl_mode()
183 && data->ratios.vert_c.value == one in dpp1_dscl_get_dscl_mode()
193 if (data->ratios.horz.value == one && data->ratios.vert.value == one) in dpp1_dscl_get_dscl_mode()
195 if (data->ratios.horz_c.value == one && data->ratios.vert_c.value == one) in dpp1_dscl_get_dscl_mode()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn10/
H A Ddcn10_dpp_dscl.c128 const long long one = dc_fixpt_one.value; in dpp1_dscl_get_dscl_mode() local
136 if (data->ratios.horz.value == one in dpp1_dscl_get_dscl_mode()
137 && data->ratios.vert.value == one in dpp1_dscl_get_dscl_mode()
138 && data->ratios.horz_c.value == one in dpp1_dscl_get_dscl_mode()
139 && data->ratios.vert_c.value == one in dpp1_dscl_get_dscl_mode()
149 if (data->ratios.horz.value == one && data->ratios.vert.value == one) in dpp1_dscl_get_dscl_mode()
151 if (data->ratios.horz_c.value == one && data->ratios.vert_c.value == one) in dpp1_dscl_get_dscl_mode()
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_link.c129 uint64_t one = 1; in svga_link_shaders() local
148 assert((reg & (one << linkage->input_map[i])) == 0); in svga_link_shaders()
149 reg |= one << linkage->input_map[i]; in svga_link_shaders()
/third_party/node/benchmark/crypto/
H A Doneshot-verify.js63 one();
66 function one() {
75 one();
H A Doneshot-sign.js51 one();
54 function one() {
62 one();
/third_party/node/deps/npm/lib/utils/
H A Dread-user-info.js10 const otpPrompt = `This command requires a one-time password (OTP) from your authenticator app.
11 Enter one below. You can also pass one on the command line by appending --otp=123456.

Completed in 11 milliseconds

12345678910>>...94