/third_party/node/deps/v8/tools/ |
H A D | v8_presubmit.py | 575 parts = contents.split(' \n') 577 parts.pop() 578 for part in parts:
|
/third_party/node/deps/npm/node_modules/ip-address/dist/ |
H A D | ipv6.js | 267 const parts = address.split('.').reverse(); 270 parts.splice(insertIndex, 0, ':'); 272 address = parts.join('');
|
/third_party/python/Lib/ |
H A D | platform.py | 180 parts = ver.split(maxsplit=1) 181 if len(parts) == 2: 182 return tuple(parts)
|
H A D | pdb.py | 570 # rlcompleter does. This will bail if any of the parts are not 801 parts = id.split('.') 803 if parts[0] == 'self': 804 del parts[0] 805 if len(parts) == 0: 809 if len(parts) == 1: 810 item = parts[0] 814 f = self.lookupmodule(parts[0]) 817 item = parts[1]
|
H A D | pydoc.py | 748 parts = name.split('.') 750 for i in range(len(parts)-1): 753 ('.'.join(parts[:i+1]), parts[i])) 754 linkedname = '.'.join(links + parts[-1:]) 1716 parts = [part for part in path.split('.') if part] 1718 while n < len(parts): 1719 nextmodule = safeimport('.'.join(parts[:n+1]), forceload) 1726 for part in parts[n:]:
|
H A D | ftplib.py | 866 parts = resp[left + 1:right].split(resp[left+1]) 867 if len(parts) != 5: 870 port = int(parts[3])
|
H A D | cgi.py | 244 parts = _parseparam(';' + line) 245 key = parts.__next__() 247 for p in parts: 363 limit : used internally to read parts of multipart/form-data forms,
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | well_known_types.py | 500 parts = path.split('.') 501 last = parts.pop() 502 for name in parts:
|
/third_party/jinja2/ |
H A D | filters.py | 63 to access attributes of attributes. Integer parts in paths are 66 parts = _prepare_attribute_parts(attribute) 69 for part in parts: 91 parts in paths are looked up as integers. 103 parts = [_prepare_attribute_parts(item) for item in split] 106 items = [None] * len(parts) 108 for i, attribute_part in enumerate(parts):
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_shader_llvm_ps.c | 935 LLVMValueRef parts[3]; in si_llvm_build_monolithic_ps() local 944 parts[num_parts++] = ctx->main_fn; in si_llvm_build_monolithic_ps() 948 parts[num_parts++] = main_fn; in si_llvm_build_monolithic_ps() 953 parts[num_parts++] = ctx->main_fn; in si_llvm_build_monolithic_ps() 955 si_build_wrapper_function(ctx, parts, num_parts, main_index, 0, false); in si_llvm_build_monolithic_ps()
|
/third_party/python/Lib/xml/dom/ |
H A D | expatbuilder.py | 116 parts = name.split(' ') 118 if len(parts) == 3: 119 uri, localname, prefix = parts 124 elif len(parts) == 2: 125 uri, localname = parts
|
/third_party/NuttX/drivers/usbdev/gadget/ |
H A D | f_mass_storage.h | 231 los_part *parts[MAX_FILE_STORAGE_LUNS]; member
|
/third_party/node/deps/openssl/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-armv8.pl | 388 adds $acc1,$acc1,$t0 // accumulate high parts of multiplication 434 adds $acc0,$acc0,$t0 // accumulate low parts of multiplication 448 adds $acc1,$acc1,$t0 // accumulate high parts of multiplication 509 adds $acc2,$acc2,$t1 // accumulate high parts of multiplication 520 adds $t1,$t1,$t2 // accumulate high parts of multiplication 524 adds $acc3,$acc3,$t0 // accumulate low parts of multiplication 1378 adds $acc1,$acc1,$t0 // accumulate high parts of multiplication 1424 adds $acc0,$acc0,$t0 // accumulate low parts 1434 adds $acc1,$acc1,$t0 // accumulate high parts 1530 adds $acc2,$acc2,$t1 // accumulate high parts o [all...] |
/third_party/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-armv8.pl | 413 adds $acc1,$acc1,$t0 // accumulate high parts of multiplication 459 adds $acc0,$acc0,$t0 // accumulate low parts of multiplication 473 adds $acc1,$acc1,$t0 // accumulate high parts of multiplication 534 adds $acc2,$acc2,$t1 // accumulate high parts of multiplication 545 adds $t1,$t1,$t2 // accumulate high parts of multiplication 549 adds $acc3,$acc3,$t0 // accumulate low parts of multiplication 1411 adds $acc1,$acc1,$t0 // accumulate high parts of multiplication 1457 adds $acc0,$acc0,$t0 // accumulate low parts 1467 adds $acc1,$acc1,$t0 // accumulate high parts 1564 adds $acc2,$acc2,$t1 // accumulate high parts o [all...] |
/third_party/ntfs-3g/libntfs-3g/ |
H A D | security.c | 549 } parts; in entersecurity_indexes() member 574 newsii.dataoffsh = realign.parts.dataoffsh; in entersecurity_indexes() 575 newsii.dataoffsl = realign.parts.dataoffsl; in entersecurity_indexes() 598 newsdh.dataoffsh = realign.parts.dataoffsh; in entersecurity_indexes() 599 newsdh.dataoffsl = realign.parts.dataoffsl; in entersecurity_indexes() 628 } parts; in entersecurityattr() member 702 realign.parts.dataoffsh in entersecurityattr() 704 realign.parts.dataoffsl in entersecurityattr() 729 realign.parts.dataoffsh in entersecurityattr() 731 realign.parts in entersecurityattr() 827 } parts; setsecurityattr() member 1802 } parts; retrievesecurityattr() member [all...] |
/third_party/mbedtls/tests/scripts/ |
H A D | generate_test_code.py | 801 parts = escaped_split(line, ':') 802 test_function = parts[0] 803 args = parts[1:]
|
/third_party/node/test/parallel/ |
H A D | test-buffer-indexof.js | 577 const parts = []; 579 parts.push((countBits(i) % 2 === 0) ? 'yolo' : 'swag'); 581 const reallyLong = Buffer.from(parts.join(' '));
|
/third_party/node/test/common/ |
H A D | wpt.js | 856 const parts = match.match(/\/\/ META: ([^=]+?)=(.+)/); 857 const key = parts[1]; 858 const value = parts[2];
|
/third_party/rust/crates/clap/src/output/ |
H A D | help_template.rs | 130 let mut parts = template.split('{'); variables 131 if let Some(first) = parts.next() { 134 for part in parts {
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/ |
H A D | esextcTestCaseBase.hpp | 169 std::string specializeShader(const unsigned int parts, const char* const* code) const;
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/grid/ |
H A D | grid_attr_test_ng.cpp | 265 float parts = 1 + 2 + 3 + 1; // 7 in HWTEST_F() local 266 float firstItemWidth = GRID_WIDTH / parts; in HWTEST_F() 403 float parts = 1 + 2 + 3 + 1; // 7 in HWTEST_F() local 404 float firstItemHeight = GRID_HEIGHT / parts; in HWTEST_F()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | PluralRulesTest.java | 1050 String[] parts = test.split("\\s*;\\s*"); in TestLocales() 1051 for (String localeString : parts[0].split("\\s*,\\s*")) { in TestLocales() 1057 for (int i = 1; i < parts.length; ++i) { in TestLocales() 1058 checkCategoriesAndExpected(localeString, parts[i], rules); in TestLocales()
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | EnumDirItems.cpp | 481 const UStringVector &addParts, // additional parts from curNode
526 const UStringVector &addParts, // with (fi.Name), prefix parts from curNode
in EnumerateAltStreams() 546 UStringVector parts = addParts;
in EnumerateAltStreams() local 548 parts.Back() += reducedName;
in EnumerateAltStreams() 549 if (curNode.CheckPathToRoot(false, parts, true))
in EnumerateAltStreams() 552 if (!curNode.CheckPathToRoot(true, parts, true))
in EnumerateAltStreams() 607 const UStringVector &addParts, // additional parts from curNode, without (fi.Name)
in EnumerateForItem()
|
/third_party/python/Tools/unicode/ |
H A D | makeunicodedata.py | 551 parts = value.split('/') 552 parts = [repr(float(part)) for part in parts] 553 value = '/'.join(parts)
|
/third_party/python/Lib/test/ |
H A D | test_hashlib.py | 96 parts = line.split(',') 97 parts[0] = bytes.fromhex(parts[0]) 98 yield parts
|