Home
last modified time | relevance | path

Searched refs:j2 (Results 1 – 25 of 125) sorted by relevance

12345

/third_party/typescript/tests/baselines/reference/
DrecursiveTypesWithTypeof.js34 var j2: new <T extends typeof j2>(x: T) => T; variable
35 var j2 = new j2(j2); variable
84 var j2; variable
85 var j2 = new j2(j2); variable
DrecursiveTypesWithTypeof.types113 var j2: new <T extends typeof j2>(x: T) => T;
114 >j2 : new <T extends any>(x: T) => T
115 >j2 : new <T extends any>(x: T) => T
118 var j2 = new j2(j2);
119 >j2 : new <T extends any>(x: T) => T
120 >new j2(j2) : new <T extends any>(x: T) => T
121 >j2 : new <T extends any>(x: T) => T
122 >j2 : new <T extends any>(x: T) => T
DrecursiveTypesWithTypeof.symbols117 var j2: new <T extends typeof j2>(x: T) => T;
118 >j2 : Symbol(j2, Decl(recursiveTypesWithTypeof.ts, 32, 3), Decl(recursiveTypesWithTypeof.ts, 33, 3))
120 >j2 : Symbol(j2, Decl(recursiveTypesWithTypeof.ts, 32, 3), Decl(recursiveTypesWithTypeof.ts, 33, 3))
125 var j2 = new j2(j2);
126 >j2 : Symbol(j2, Decl(recursiveTypesWithTypeof.ts, 32, 3), Decl(recursiveTypesWithTypeof.ts, 33, 3))
127 >j2 : Symbol(j2, Decl(recursiveTypesWithTypeof.ts, 32, 3), Decl(recursiveTypesWithTypeof.ts, 33, 3))
128 >j2 : Symbol(j2, Decl(recursiveTypesWithTypeof.ts, 32, 3), Decl(recursiveTypesWithTypeof.ts, 33, 3))
DrecursiveTypesWithTypeof.errors.txt55 var j2: new <T extends typeof j2>(x: T) => T;
56 var j2 = new j2(j2);
/third_party/openssl/crypto/modes/asm/
Dghashv8-armx.pl423 my ($I0,$j1,$j2,$j3,
441 vrev64.8 $j2,$j2
446 vext.8 $I2,$j2,$j2,#8
455 veor $j2,$j2,$I2
457 vpmull2.p64 $j2,$Hhl,$j2
461 veor $Ym,$Ym,$j2
484 vrev64.8 $j2,$j2
497 vext.8 $I2,$j2,$j2,#8
514 veor $j2,$j2,$I2
517 vpmull2.p64 $j2,$Hhl,$j2
[all …]
/third_party/json/test/src/
Dunit-algorithms.cpp264 json j2 = {1, 2, 3, 5, 7}; variable
267 std::merge(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3));
275 json j2 = {1, 2, 3, 5, 7}; variable
278 std::set_difference(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3));
285 json j2 = {1, 2, 3, 5, 7}; variable
288 … std::set_intersection(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3));
295 json j2 = {1, 2, 3, 5, 7}; variable
298 std::set_union(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3));
305 json j2 = {1, 2, 3, 5, 7}; variable
308 … std::set_symmetric_difference(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3));
Dunit-udt_macro.cpp279 nlohmann::json j2 = nlohmann::json::parse(s); variable
281 j2.get_to(obj2);
290 nlohmann::json j2 = nlohmann::json::from_msgpack(buf); variable
292 j2.get_to(obj2);
301 nlohmann::json j2 = nlohmann::json::from_bson(buf); variable
303 j2.get_to(obj2);
312 nlohmann::json j2 = nlohmann::json::from_cbor(buf); variable
314 j2.get_to(obj2);
323 nlohmann::json j2 = nlohmann::json::from_ubjson(buf); variable
325 j2.get_to(obj2);
Dunit-noexcept.cpp95 json j2; variable
96 to_json(j2, pod());
97 to_json(j2, pod_bis());
98 from_json(j2, pod());
99 from_json(j2, pod_bis());
Dunit-unicode5.cpp86 static json j2; in check_utf8dump() local
88 j2 = "abc" + json_string + "xyz"; in check_utf8dump()
101 s_ignored2 = j2.dump(-1, ' ', false, json::error_handler_t::ignore); in check_utf8dump()
103 s_ignored2_ascii = j2.dump(-1, ' ', true, json::error_handler_t::ignore); in check_utf8dump()
105 s_replaced2 = j2.dump(-1, ' ', false, json::error_handler_t::replace); in check_utf8dump()
107 s_replaced2_ascii = j2.dump(-1, ' ', true, json::error_handler_t::replace); in check_utf8dump()
Dunit-unicode4.cpp86 static json j2; in check_utf8dump() local
88 j2 = "abc" + json_string + "xyz"; in check_utf8dump()
101 s_ignored2 = j2.dump(-1, ' ', false, json::error_handler_t::ignore); in check_utf8dump()
103 s_ignored2_ascii = j2.dump(-1, ' ', true, json::error_handler_t::ignore); in check_utf8dump()
105 s_replaced2 = j2.dump(-1, ' ', false, json::error_handler_t::replace); in check_utf8dump()
107 s_replaced2_ascii = j2.dump(-1, ' ', true, json::error_handler_t::replace); in check_utf8dump()
Dunit-unicode3.cpp86 static json j2; in check_utf8dump() local
88 j2 = "abc" + json_string + "xyz"; in check_utf8dump()
101 s_ignored2 = j2.dump(-1, ' ', false, json::error_handler_t::ignore); in check_utf8dump()
103 s_ignored2_ascii = j2.dump(-1, ' ', true, json::error_handler_t::ignore); in check_utf8dump()
105 s_replaced2 = j2.dump(-1, ' ', false, json::error_handler_t::replace); in check_utf8dump()
107 s_replaced2_ascii = j2.dump(-1, ' ', true, json::error_handler_t::replace); in check_utf8dump()
Dunit-ordered_json.cpp83 const json j2 {{"c", 77}, {"d", 42}, {"a", 4}}; variable
84 j1.insert( j2.cbegin(), j2.cend() );
Dunit-unicode2.cpp86 static json j2; in check_utf8dump() local
88 j2 = "abc" + json_string + "xyz"; in check_utf8dump()
101 s_ignored2 = j2.dump(-1, ' ', false, json::error_handler_t::ignore); in check_utf8dump()
103 s_ignored2_ascii = j2.dump(-1, ' ', true, json::error_handler_t::ignore); in check_utf8dump()
105 s_replaced2 = j2.dump(-1, ' ', false, json::error_handler_t::replace); in check_utf8dump()
107 s_replaced2_ascii = j2.dump(-1, ' ', true, json::error_handler_t::replace); in check_utf8dump()
Dunit-bson.cpp643 json j2; variable
644 CHECK_NOTHROW(j2 = json::from_bson(bson_representation));
647 CHECK(json_representation == j2);
1277 json j2; in skip() local
1278 CHECK_NOTHROW(j2 = json::from_bson(packed)); in skip()
1281 CHECK(j1 == j2); in skip()
1292 json j2; in skip() local
1293 CHECK_NOTHROW(j2 = json::from_bson(f_bson)); in skip()
1296 CHECK(j1 == j2); in skip()
1307 json j2; in skip() local
[all …]
Dunit-conversions.cpp280 json j2({1, 2, 3, 4, 5, 6, 7, 8, 9, 10}); variable
281 auto v2 = j2.get<std::vector<int>>();
292 json j2 = nbs; variable
295 auto v = j2.get<std::vector<int>>();
397 json j2 = nbs; variable
398 j2.get_to(nbs2);
1407 json j2 = {{"one", 1u}, {"two", 2u}, {"three", 3u}}; variable
1415 j2.get<std::map<std::string, unsigned int>>();
1424 j2.get<std::unordered_map<std::string, unsigned int>>();
1434 j2.get<std::multimap<std::string, unsigned int>>();
[all …]
Dfuzzer-parse_json.cpp44 json j2 = json::parse(s1); in LLVMFuzzerTestOneInput() local
47 std::string s2 = j2.dump(); in LLVMFuzzerTestOneInput()
Dunit-regression1.cpp925 json j2 = json::parse("-9223372036854775807"); variable
926 CHECK(j2.is_number_integer());
927 CHECK(j2.get<json::number_integer_t>() == INT64_MIN + 1);
1183 json j2 = json::parse(s1); variable
1184 std::string s2 = j2.dump();
1264 json j2 = json::from_cbor(vec2); variable
1267 CHECK(j2.is_number_float());
1268 CHECK(std::isnan(j2.get<json::number_float_t>()));
1269 CHECK(j2.dump() == "null");
1272 CHECK(json::to_cbor(j2) == vec2);
[all …]
Dfuzzer-parse_cbor.cpp42 json j2 = json::from_cbor(vec2); in LLVMFuzzerTestOneInput() local
45 assert(json::to_cbor(j2) == vec2); in LLVMFuzzerTestOneInput()
/third_party/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/
DrecursiveTypesWithTypeof.ts33 var j2: new <T extends typeof j2>(x: T) => T; variable
34 var j2 = new j2(j2); variable
/third_party/json/doc/examples/
Dinsert__range_object.cpp10 json j2 = {{"eleven", "elf"}, {"seventeen", "siebzehn"}}; in main() local
14 std::cout << j2 << '\n'; in main()
17 j1.insert(j2.begin(), j2.end()); in main()
Dswap__reference.cpp10 json j2 = {{"pi", 3.141592653589793}, {"e", 2.718281828459045}}; in main() local
13 j1.swap(j2); in main()
17 std::cout << "j2 = " << j2 << '\n'; in main()
Dbasic_json__basic_json.cpp12 json j2(j1); in main() local
15 std::cout << j1 << " = " << j2 << '\n'; in main()
16 std::cout << std::boolalpha << (j1 == j2) << '\n'; in main()
Dbasic_json__nullptr_t.cpp12 json j2(nullptr); in main() local
15 std::cout << j1 << '\n' << j2 << '\n'; in main()
/third_party/cups-filters/filter/foomatic-rip/
Drenderer.c210 char *j1, *j2, *p1, *p2; in jcl_keywords_equal() local
220 j2 = strstr(jclline2, jclstr); in jcl_keywords_equal()
221 if (!j2) return 0; in jcl_keywords_equal()
222 if (!(p2 = strchr(skip_whitespace(j2), '='))) in jcl_keywords_equal()
223 p2 = j2 + strlen(j2); in jcl_keywords_equal()
225 while (p2 > j2 && isspace(*p2)) in jcl_keywords_equal()
228 if (p1 - j1 != p2 - j2) return 0; in jcl_keywords_equal()
229 return strncmp(j1, j2, p1 - j1 + 1) == 0; in jcl_keywords_equal()
/third_party/python/Lib/
Ddifflib.py471 for i2, j2, k2 in matching_blocks:
473 if i1 + k1 == i2 and j1 + k1 == j2:
484 i1, j1, k1 = i2, j2, k2
577 tag, i1, i2, j1, j2 = codes[0]
578 codes[0] = tag, max(i1, i2-n), i2, max(j1, j2-n), j2
580 tag, i1, i2, j1, j2 = codes[-1]
581 codes[-1] = tag, i1, min(i2, i1+n), j1, min(j2, j1+n)
585 for tag, i1, i2, j1, j2 in codes:
589 group.append((tag, i1, min(i2, i1+n), j1, min(j2, j1+n)))
592 i1, j1 = max(i1, i2-n), max(j1, j2-n)
[all …]

12345