Home
last modified time | relevance | path

Searched refs:sym1 (Results 1 – 24 of 24) sorted by relevance

/third_party/skia/third_party/externals/tint/src/
Dsymbol_test.cc30 Symbol sym1(1, ProgramID::New()); in TEST_F() local
34 sym2 = sym1; in TEST_F()
36 EXPECT_EQ(sym2, sym1); in TEST_F()
41 Symbol sym1(1, program_id); in TEST_F() local
45 EXPECT_TRUE(sym1 == sym3); in TEST_F()
46 EXPECT_FALSE(sym1 == sym2); in TEST_F()
/third_party/node/test/known_issues/
Dtest-vm-ownkeys.js7 const sym1 = Symbol('1'); constant
11 [sym1]: true
28 assert.deepStrictEqual(Array.from(restKeys), ['a', 'b', sym1, sym2]);
Dtest-vm-ownpropertysymbols.js7 const sym1 = Symbol('1'); constant
11 [sym1]: true
28 assert.deepStrictEqual(Array.from(restSym), [sym1, sym2]);
Dtest-vm-ownpropertynames.js7 const sym1 = Symbol('1'); constant
11 [sym1]: true
/third_party/toybox/kconfig/
Dexpr.c354 struct symbol *sym1, *sym2; in expr_join_or() local
366 sym1 = tmp->left.sym; in expr_join_or()
368 sym1 = e1->left.sym; in expr_join_or()
375 if (sym1 != sym2) in expr_join_or()
377 if (sym1->type != S_BOOLEAN && sym1->type != S_TRISTATE) in expr_join_or()
379 if (sym1->type == S_TRISTATE) { in expr_join_or()
384 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_no); in expr_join_or()
390 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_mod); in expr_join_or()
396 return expr_alloc_comp(E_UNEQUAL, sym1, &symbol_yes); in expr_join_or()
399 if (sym1->type == S_BOOLEAN && sym1 == sym2) { in expr_join_or()
[all …]
/third_party/typescript/tests/cases/conformance/types/intersection/
DintersectionReductionStrict.ts3 declare const sym1: unique symbol; constant
10 type T5 = symbol & typeof sym1; // typeof sym1
11 type T6 = typeof sym1 & symbol & typeof sym2; // never
12 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
DintersectionReduction.ts3 declare const sym1: unique symbol; constant
10 type T5 = symbol & typeof sym1; // typeof sym1
11 type T6 = typeof sym1 & symbol & typeof sym2; // never
12 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
/third_party/typescript/tests/baselines/reference/
DintersectionReductionStrict.types2 declare const sym1: unique symbol;
3 >sym1 : unique symbol
20 type T5 = symbol & typeof sym1; // typeof sym1
22 >sym1 : unique symbol
24 type T6 = typeof sym1 & symbol & typeof sym2; // never
26 >sym1 : unique symbol
29 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
31 >sym1 : unique symbol
DintersectionReductionStrict.symbols2 declare const sym1: unique symbol;
3 >sym1 : Symbol(sym1, Decl(intersectionReductionStrict.ts, 0, 13))
20 type T5 = symbol & typeof sym1; // typeof sym1
22 >sym1 : Symbol(sym1, Decl(intersectionReductionStrict.ts, 0, 13))
24 type T6 = typeof sym1 & symbol & typeof sym2; // never
26 >sym1 : Symbol(sym1, Decl(intersectionReductionStrict.ts, 0, 13))
29 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
31 >sym1 : Symbol(sym1, Decl(intersectionReductionStrict.ts, 0, 13))
DintersectionReduction.types2 declare const sym1: unique symbol;
3 >sym1 : unique symbol
20 type T5 = symbol & typeof sym1; // typeof sym1
22 >sym1 : unique symbol
24 type T6 = typeof sym1 & symbol & typeof sym2; // never
26 >sym1 : unique symbol
29 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
31 >sym1 : unique symbol
DintersectionReductionStrict.js2 declare const sym1: unique symbol;
9 type T5 = symbol & typeof sym1; // typeof sym1
10 type T6 = typeof sym1 & symbol & typeof sym2; // never
11 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
DintersectionReductionStrict.errors.txt8 declare const sym1: unique symbol;
15 type T5 = symbol & typeof sym1; // typeof sym1
16 type T6 = typeof sym1 & symbol & typeof sym2; // never
17 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
DintersectionReduction.errors.txt8 declare const sym1: unique symbol;
15 type T5 = symbol & typeof sym1; // typeof sym1
16 type T6 = typeof sym1 & symbol & typeof sym2; // never
17 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
DintersectionReduction.js2 declare const sym1: unique symbol;
9 type T5 = symbol & typeof sym1; // typeof sym1
10 type T6 = typeof sym1 & symbol & typeof sym2; // never
11 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
DintersectionReduction.symbols2 declare const sym1: unique symbol;
3 >sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 0, 13))
20 type T5 = symbol & typeof sym1; // typeof sym1
22 >sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 0, 13))
24 type T6 = typeof sym1 & symbol & typeof sym2; // never
26 >sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 0, 13))
29 type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
31 >sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 0, 13))
/third_party/jerryscript/tests/jerry/es2015/
Dobject-is.js42 sym1 = Symbol.for('foo');
44 assert(Object.is(sym1, sym2) === true);
/third_party/node/test/js-native-api/test_object/
Dtest.js104 const sym1 = Symbol('1'); constant
109 [sym1]: '@@iterator',
113 assert(test_object.Has(object2, sym1));
115 assert.strictEqual(test_object.Get(object2, sym1), '@@iterator');
/third_party/ffmpeg/libavcodec/
Dmss12.c102 int sym1, sym2; in ff_mss12_model_update() local
104 sym1 = m->idx2sym[val]; in ff_mss12_model_update()
108 m->idx2sym[i] = sym1; in ff_mss12_model_update()
/third_party/elfio/tests/
DELFIOTest1.cpp778 Elf_Word sym1 = symbols.add_symbol( str_writer, name.c_str(), value, size, in BOOST_AUTO_TEST_CASE() local
825 rela.add_entry( 1, sym1, (unsigned char)R_386_RELATIVE ); in BOOST_AUTO_TEST_CASE()
833 rela.add_entry( 11, sym1, (unsigned char)R_386_RELATIVE ); in BOOST_AUTO_TEST_CASE()
/third_party/boost/libs/filesystem/test/
Doperations_test.cpp1752 fs::path sym1(d1x / "symlink1"); in copy_symlink_tests() local
1753 fs::remove(sym1); // remove possible residue from prior testing in copy_symlink_tests()
1754 fs::create_symlink(f1x, sym1); in copy_symlink_tests()
1755 BOOST_TEST(fs::exists(sym1)); in copy_symlink_tests()
1756 BOOST_TEST(fs::is_symlink(sym1)); in copy_symlink_tests()
1758 fs::copy_symlink(sym1, sym2); in copy_symlink_tests()
/third_party/boost/libs/xpressive/doc/
Dsymbols.qbk100 `( (a1=sym1) >> (a1=sym2)[ref(x)=a1] )[ref(y)=a1]`. The inner semantic action
/third_party/gettext/gettext-tools/examples/hello-c++-kde/admin/
Dconfig.sub942 os=-sym1
/third_party/mtdev/config-aux/
Dconfig.sub1122 os=-sym1
/third_party/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_from_nir.cpp1766 … Symbol *sym1 = mkSymbol(input ? FILE_SHADER_INPUT : FILE_SHADER_OUTPUT, 0, dType, address + 4); in visit() local
1767 interp = mkOp1(nvirOp, TYPE_U32, hi, sym1); in visit()