/third_party/skia/third_party/externals/tint/src/ |
D | symbol_test.cc | 30 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/ |
D | test-vm-ownkeys.js | 7 const sym1 = Symbol('1'); constant 11 [sym1]: true 28 assert.deepStrictEqual(Array.from(restKeys), ['a', 'b', sym1, sym2]);
|
D | test-vm-ownpropertysymbols.js | 7 const sym1 = Symbol('1'); constant 11 [sym1]: true 28 assert.deepStrictEqual(Array.from(restSym), [sym1, sym2]);
|
D | test-vm-ownpropertynames.js | 7 const sym1 = Symbol('1'); constant 11 [sym1]: true
|
/third_party/toybox/kconfig/ |
D | expr.c | 354 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/ |
D | intersectionReductionStrict.ts | 3 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
|
D | intersectionReduction.ts | 3 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/ |
D | intersectionReductionStrict.types | 2 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
|
D | intersectionReductionStrict.symbols | 2 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))
|
D | intersectionReduction.types | 2 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
|
D | intersectionReductionStrict.js | 2 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
|
D | intersectionReductionStrict.errors.txt | 8 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
|
D | intersectionReduction.errors.txt | 8 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
|
D | intersectionReduction.js | 2 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
|
D | intersectionReduction.symbols | 2 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/ |
D | object-is.js | 42 sym1 = Symbol.for('foo'); 44 assert(Object.is(sym1, sym2) === true);
|
/third_party/node/test/js-native-api/test_object/ |
D | test.js | 104 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/ |
D | mss12.c | 102 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/ |
D | ELFIOTest1.cpp | 778 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/ |
D | operations_test.cpp | 1752 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/ |
D | symbols.qbk | 100 `( (a1=sym1) >> (a1=sym2)[ref(x)=a1] )[ref(y)=a1]`. The inner semantic action
|
/third_party/gettext/gettext-tools/examples/hello-c++-kde/admin/ |
D | config.sub | 942 os=-sym1
|
/third_party/mtdev/config-aux/ |
D | config.sub | 1122 os=-sym1
|
/third_party/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_from_nir.cpp | 1766 … 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()
|