/third_party/jinja2/ |
H A D | ext.py | 755 prefix, comment = token_value.split(None, 1) 812 for extension_name in options.get("extensions", "").split(","):
|
/third_party/node/deps/v8/tools/ |
H A D | callstats.py | 196 chrome_flags += args.chrome_flags.split() 405 fields = line.split()
|
H A D | grokdump.py | 1167 words = code.split() 1611 source = "\n".join(" %s" % line for line in self._GetSource().split("\n")) 1618 p.PrintLines(self._GetSource().split("\n")) 2743 self.dumpfilename = os.path.split(minidump_name)[1] 3215 words = code.split() 3408 splitpath = os.path.split(minidump_name) 3544 name = prefix.join(name.split(prefix)[1:]) 3607 args = args.split(' ') 3656 args = args.split(' ') 3821 args = args.split(' ') [all...] |
/third_party/node/deps/v8/tools/release/ |
H A D | common_includes.py | 587 latest_version = ".".join(latest_version.split(".")[:3]) 616 version_parts = version.split(".")
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | environment.py | 1211 return [tuple(map(int, x.split("="))) for x in self._debug_info.split("&")]
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | environment.py | 1127 return [tuple(imap(int, x.split('='))) for x in 1128 self._debug_info.split('&')]
|
/third_party/node/deps/npm/node_modules/jackspeak/dist/esm/ |
H A D | index.js | 40 ? env.split(delim).map(v => fromEnvVal(v, type, false)) 810 .split('\n')
|
/third_party/node/deps/npm/node_modules/jackspeak/dist/commonjs/ |
H A D | index.js | 46 ? env.split(delim).map(v => fromEnvVal(v, type, false)) 819 .split('\n')
|
/third_party/littlefs/scripts/ |
H A D | stack.py | 687 type=lambda x: (lambda k,v: (k, set(v.split(','))))(*x.split('=', 1)),
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | genvk.py | 1066 args.feature = [name for arg in args.feature for name in arg.split()] 1067 args.extension = [name for arg in args.extension for name in arg.split()]
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | generate_grammar_tables.py | 566 for item in EXTENSIONS_FROM_SPIRV_REGISTRY_AND_NOT_FROM_GRAMMARS.split(): 572 EXTENSIONS_FROM_SPIRV_REGISTRY_AND_NOT_FROM_GRAMMARS.split())
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | jcommander-1.27.jar | ... IParameterSplitter {
public void <init> ()
public java.util.List split (java.lang.String)
String value
}
com/beust/jcommander ... |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | generate_grammar_tables.py | 566 for item in EXTENSIONS_FROM_SPIRV_REGISTRY_AND_NOT_FROM_GRAMMARS.split(): 572 EXTENSIONS_FROM_SPIRV_REGISTRY_AND_NOT_FROM_GRAMMARS.split())
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | environment.py | 1211 return [tuple(map(int, x.split("="))) for x in self._debug_info.split("&")]
|
/third_party/skia/third_party/externals/dawn/generator/ |
H A D | dawn_json_generator.py | 42 self.chunks = name.split(' ') 745 targets = args.targets.split(',')
|
/third_party/protobuf/python/google/protobuf/ |
H A D | json_format.py | 401 type_name = type_url.split('/')[-1] 515 identifier = '.'.join(identifier.split('.')[:-1])
|
/third_party/python/Lib/test/ |
H A D | test_urllib2_localnet.py | 115 parts = auth_str.split(",") 119 name, value = part.split("=")
|
/third_party/python/Lib/test/test_peg_generator/ |
H A D | test_pegen.py | 905 o.split("\n"), p.split("\n"), "cpython", "python-pegen"
|
/third_party/spirv-tools/utils/ |
H A D | generate_grammar_tables.py | 581 for item in EXTENSIONS_FROM_SPIRV_REGISTRY_AND_NOT_FROM_GRAMMARS.split(): 587 EXTENSIONS_FROM_SPIRV_REGISTRY_AND_NOT_FROM_GRAMMARS.split())
|
/third_party/glslang/StandAlone/ |
H A D | StandAlone.cpp | 609 const char *split = strchr(arg, ':'); in ProcessArguments() 610 if (split == nullptr) { in ProcessArguments() 615 int location = static_cast<int>(::strtol(split + 1, nullptr, 10)); in ProcessArguments() 620 return std::make_pair(std::string(arg, split - arg), location); in ProcessArguments()
|
/third_party/astc-encoder/Test/ |
H A D | astc_test_functional.py | 270 bands = img2.split() 314 bands = img2.split() 322 img1bands = img1.split() 323 img2bands = img2.split()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | uregex.cpp | 1305 inline static int32_t split(RegularExpression *regexp, 1807 int32_t RegexCImpl::split(RegularExpression *regexp, in split() function in RegexCImpl 1962 return RegexCImpl::split(regexp, destBuf, destCapacity, requiredCapacity, destFields, destFieldsCapacity, status); in uregex_split() 1975 return regexp->fMatcher->split(regexp->fMatcher->inputText(), destFields, destFieldsCapacity, *status); in uregex_splitUText()
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | input.py | 876 contents_list = contents.split(" ") 940 parsed_contents = shlex.split(contents) 1059 # Split it the same way sh would split arguments. 1060 output = shlex.split(str(replacement)) 1843 This function has a split personality, depending on the setting of 2940 subdir, gyp = os.path.split(path)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | input.py | 873 contents_list = contents if type(contents) is list else contents.split(" ") 937 parsed_contents = shlex.split(contents) 1049 # Split it the same way sh would split arguments. 1050 output = shlex.split(str(replacement)) 1830 This function has a split personality, depending on the setting of 2918 subdir, gyp = os.path.split(path)
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | uregex.cpp | 1305 inline static int32_t split(RegularExpression *regexp, 1807 int32_t RegexCImpl::split(RegularExpression *regexp, in split() function in RegexCImpl 1962 return RegexCImpl::split(regexp, destBuf, destCapacity, requiredCapacity, destFields, destFieldsCapacity, status); in uregex_split() 1975 return regexp->fMatcher->split(regexp->fMatcher->inputText(), destFields, destFieldsCapacity, *status); in uregex_splitUText()
|