| /third_party/python/Lib/test/ |
| H A D | test_unparse.py | 174 code2 = ast.unparse(ast1) 175 ast2 = ast.parse(code2, **kwargs) 182 def get_source(self, code1, code2=None): 183 code2 = code2 or code1 185 return code1, code2 187 def check_src_roundtrip(self, code1, code2=None): 188 code1, code2 = self.get_source(code1, code2) 189 with self.subTest(code1=code1, code2 [all...] |
| H A D | test_code.py | 260 code2 = func2.__code__ 270 ("co_code", code2.co_code), 271 ("co_consts", code2.co_consts), 278 ("co_linetable", code2.co_linetable), 284 new_code = code.replace(co_varnames=code2.co_varnames, 285 co_nlocals=code2.co_nlocals) 286 self.assertEqual(new_code.co_varnames, code2.co_varnames) 287 self.assertEqual(new_code.co_nlocals, code2.co_nlocals)
|
| /third_party/ffmpeg/libavcodec/arm/ |
| H A D | dca.h | 32 static inline int decode_blockcodes(int code1, int code2, int levels, in decode_blockcodes() argument 71 "+&r"(code1), "+&r"(code2) in decode_blockcodes() 76 return code1 | code2; in decode_blockcodes()
|
| /third_party/node/deps/v8/tools/profview/ |
| H A D | profile-utils.js | 89 function codeEquals(code1, code2, allowDifferentKinds = false) { 90 if (!code1 || !code2) return false; 91 if (code1.name !== code2.name || code1.type !== code2.type) return false; 94 if (!allowDifferentKinds && code1.kind !== code2.kind) return false; 96 if (!allowDifferentKinds && code1.kind !== code2.kind) return false; 97 if (code1.func !== code2.func) return false;
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
| H A D | TestLocaleValidity.java | 328 private void showValid(Datasubtype expected, Datatype datatype, Set<Datasubtype> datasubtypes, String code, String code2) { in showValid() argument 329 Datasubtype value = ValidIdentifiers.isValid(datatype, datasubtypes, code, code2); in showValid() 330 assertEquals(datatype + ", " + datasubtypes + ", " + code + ", " + code2, expected, value); in showValid()
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
| H A D | TestLocaleValidity.java | 327 private void showValid(Datasubtype expected, Datatype datatype, Set<Datasubtype> datasubtypes, String code, String code2) { in showValid() argument 328 Datasubtype value = ValidIdentifiers.isValid(datatype, datasubtypes, code, code2); in showValid() 329 assertEquals(datatype + ", " + datasubtypes + ", " + code + ", " + code2, expected, value); in showValid()
|
| /third_party/skia/third_party/externals/freetype/src/pfr/ |
| H A D | pfrobjs.c | 483 FT_UInt32 code1, code2, pair; in FT_LOCAL_DEF() local 501 code2 = phy_font->chars[glyph2].char_code; in FT_LOCAL_DEF() 502 pair = PFR_KERN_INDEX( code1, code2 ); in FT_LOCAL_DEF()
|
| /third_party/ffmpeg/libavcodec/ |
| H A D | ralf.c | 289 int code1, code2; in decode_channel() local 293 code2 = t % range2; in decode_channel() 295 dst[i + 1] = extend_code(gb, code2, range, 0) * (1U << add_bits); in decode_channel()
|
| H A D | dca_core.c | 528 static inline int decode_blockcodes(int code1, int code2, int levels, int32_t *audio) in decode_blockcodes() argument 539 div = FASTDIV(code2, levels); in decode_blockcodes() 540 audio[n] = code2 - div * levels - offset; in decode_blockcodes() 541 code2 = div; in decode_blockcodes() 544 return code1 | code2; in decode_blockcodes() 552 int code2 = get_bits(&s->gb, block_code_nbits[abits - 1]); in parse_block_codes() local 556 if (decode_blockcodes(code1, code2, levels, audio)) { in parse_block_codes()
|
| /third_party/python/Lib/idlelib/idle_test/ |
| H A D | test_run.py | 65 for (code1, exc1, msg1), (code2, exc2, msg2) in data2: 66 with self.subTest(codes=(code1,code2)): 71 eval(compile(code2, '', 'eval'))
|
| /third_party/node/deps/v8/src/diagnostics/ |
| H A D | unwinding-info-win64.cc | 233 uint8_t code2 = OpNop, in Combine8BitUnwindCodes() 236 (static_cast<uint32_t>(code2) << 16) | in Combine8BitUnwindCodes()
|
| /third_party/python/Lib/re/ |
| H A D | _parser.py | 595 code2 = _class_escape(source, that) 604 code2 = LITERAL, _ord(that) 605 if code1[0] != LITERAL or code2[0] != LITERAL: 609 hi = code2[1]
|
| /third_party/NuttX/include/nuttx/ |
| H A D | scsi.h | 632 uint8_t code2; /* 12: Additional sense code */ member
|
| /third_party/ltp/testcases/kernel/fs/scsi/ltpscsi/ |
| H A D | sg_err.c | 260 unsigned char code1, code2; member 998 if (additional[k].code1 == asc && additional[k].code2 == ascq) { in sg_print_asc_ascq()
|
| /third_party/node/deps/v8/src/builtins/arm64/ |
| H A D | builtins-arm64.cc | 1976 int code2 = config->GetAllocatableGeneralCode(i - 1); in Generate_ContinueToBuiltinHelper() local 1978 Register reg2 = Register::from_code(code2); in Generate_ContinueToBuiltinHelper()
|
| /third_party/typescript/lib/ |
| H A D | typingsInstaller.js | [all...] |
| H A D | tsc.js | [all...] |
| H A D | tsserverlibrary.js | [all...] |
| H A D | typescript.js | [all...] |
| H A D | typescriptServices.js | [all...] |
| H A D | tsserver.js | [all...] |
| /third_party/node/test/fixtures/snapshot/ |
| H A D | typescript.js | [all...] |