| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| pydoc.py | 57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip 87 """Split a doc string into a synopsis line (if any) and the rest.""" 88 lines = split(strip(doc), '\n') 111 text = join(split(text, pairs[0]), pairs[1]) 143 """Split sequence s via predicate, and return pair ([true], [false]). 208 result = strip(split(line, '"""')[0]) 311 for part in split(path, '.')[1:]: 390 methodname = 'repr_' + join(split(type(x).__name__), '_') 590 parts = split(name, '.') [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| pydoc.py | 57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip 87 """Split a doc string into a synopsis line (if any) and the rest.""" 88 lines = split(strip(doc), '\n') 111 text = join(split(text, pairs[0]), pairs[1]) 143 """Split sequence s via predicate, and return pair ([true], [false]). 208 result = strip(split(line, '"""')[0]) 311 for part in split(path, '.')[1:]: 390 methodname = 'repr_' + join(split(type(x).__name__), '_') 590 parts = split(name, '.') [all...] |
| /prebuilts/ndk/r13/sources/third_party/vulkan/src/ |
| vk_helper.py | 136 ifdef_txt = line.split()[1] 149 elif 0 == len(line.split()): 152 elif line.split()[0].strip().startswith("//"): 156 (ty_txt, en_txt, base_type) = line.strip().split(None, 2) 167 (ty_txt, st_txt, base_type) = line.strip().split(None, 2) 169 (ignored, base_type) = base_type.strip().split(None, 1) 179 # (ty_txt, st_txt, base_type) = line.strip().split(None, 2) 184 if len(line.split()) > 1: # deals with embedded union in one struct 189 (cur_char, targ_type) = line.strip().split(None, 1) 232 (enum_name, eq_char, enum_val) = line_txt.split(None, 2 [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| pydoc.py | 57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip 87 """Split a doc string into a synopsis line (if any) and the rest.""" 88 lines = split(strip(doc), '\n') 111 text = join(split(text, pairs[0]), pairs[1]) 143 """Split sequence s via predicate, and return pair ([true], [false]). 208 result = strip(split(line, '"""')[0]) 311 for part in split(path, '.')[1:]: 390 methodname = 'repr_' + join(split(type(x).__name__), '_') 590 parts = split(name, '.') [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| pydoc.py | 57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip 87 """Split a doc string into a synopsis line (if any) and the rest.""" 88 lines = split(strip(doc), '\n') 111 text = join(split(text, pairs[0]), pairs[1]) 143 """Split sequence s via predicate, and return pair ([true], [false]). 208 result = strip(split(line, '"""')[0]) 311 for part in split(path, '.')[1:]: 390 methodname = 'repr_' + join(split(type(x).__name__), '_') 590 parts = split(name, '.') [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
| test_decimal.py | 241 s = (s.split('->')[0] + '->' +
242 s.split('->')[1].split('--')[0]).strip()
244 s = s.split('--')[0].strip()
248 #print s.split()[0], 'NotImplemented--', ignore
258 funct, value = map(lambda x: x.strip().lower(), s.split(':'))
278 Sides = s.split('->')
279 L = Sides[0].strip().split()
285 L = Sides[1].strip().split()
[all...] |
| test_math.py | 99 lhs, rhs = line.split('->')
100 id, fn, arg = lhs.split()
101 rhs_pieces = rhs.split()
119 lhs, rhs = line.split('->')
120 id, fn, arg_real, arg_imag = lhs.split()
121 rhs_pieces = rhs.split()
[all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
| texi2html.py | 30 # -split split at chapters or sections instead of nodes
701 args = [s.strip() for s in text.split(',')]
709 args = [s.strip() for s in text.split(',')]
725 args = [s.strip() for s in text.split(',')]
745 args = [s.strip() for s in text.split(',')]
900 words = args.split() [all...] |
| /external/chromium-trace/catapult/devil/devil/android/ |
| device_utils.py | 196 key, value = (s.strip() for s in line.split(':', 1)) 704 """Install a split APK. 744 logger.warning('split-select did not select any from %s', split_apks) 761 'Installing non-split APK when split APK was previously installed') 765 'Installing split APK when non-split APK was previously installed') [all...] |
| /external/mesa3d/src/gallium/drivers/freedreno/ir3/ |
| ir3_compiler_nir.c | 606 * outputs which need to have a split/fanout meta instruction inserted 614 struct ir3_instruction *split = ir3_instr_create(block, OPC_META_FO); local 615 ir3_reg_create(split, 0, IR3_REG_SSA); 616 ir3_reg_create(split, 0, IR3_REG_SSA)->instr = src; 617 split->fo.off = i + base; 620 split->cp.left = prev; 621 split->cp.left_cnt++; 622 prev->cp.right = split; 625 prev = split; 628 dst[j++] = split; [all...] |
| /external/python/cpython2/Tools/scripts/ |
| texi2html.py | 30 # -split split at chapters or sections instead of nodes 701 args = [s.strip() for s in text.split(',')] 709 args = [s.strip() for s in text.split(',')] 725 args = [s.strip() for s in text.split(',')] 745 args = [s.strip() for s in text.split(',')] 900 words = args.split() [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| test_decimal.py | 241 s = (s.split('->')[0] + '->' + 242 s.split('->')[1].split('--')[0]).strip() 244 s = s.split('--')[0].strip() 248 #print s.split()[0], 'NotImplemented--', ignore 258 funct, value = map(lambda x: x.strip().lower(), s.split(':')) 278 Sides = s.split('->') 279 L = Sides[0].strip().split() 285 L = Sides[1].strip().split() [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/test/ |
| test_decimal.py | 241 s = (s.split('->')[0] + '->' + 242 s.split('->')[1].split('--')[0]).strip() 244 s = s.split('--')[0].strip() 248 #print s.split()[0], 'NotImplemented--', ignore 258 funct, value = map(lambda x: x.strip().lower(), s.split(':')) 278 Sides = s.split('->') 279 L = Sides[0].strip().split() 285 L = Sides[1].strip().split() [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_decimal.py | 241 s = (s.split('->')[0] + '->' + 242 s.split('->')[1].split('--')[0]).strip() 244 s = s.split('--')[0].strip() 248 #print s.split()[0], 'NotImplemented--', ignore 258 funct, value = map(lambda x: x.strip().lower(), s.split(':')) 278 Sides = s.split('->') 279 L = Sides[0].strip().split() 285 L = Sides[1].strip().split() [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_decimal.py | 241 s = (s.split('->')[0] + '->' + 242 s.split('->')[1].split('--')[0]).strip() 244 s = s.split('--')[0].strip() 248 #print s.split()[0], 'NotImplemented--', ignore 258 funct, value = map(lambda x: x.strip().lower(), s.split(':')) 278 Sides = s.split('->') 279 L = Sides[0].strip().split() 285 L = Sides[1].strip().split() [all...] |
| /tools/tradefederation/core/src/com/android/tradefed/device/ |
| NativeDevice.java | [all...] |
| /build/blueprint/ |
| module_ctx.go | 33 // A Module can be split into multiple Modules by a Mutator. All existing 555 // MutatorContext.CreateVariations to split a Module into multiple Modules, 562 // if a second Mutator chooses to split the module a second time. 583 // Split a module into mulitple variants, one for each name in the variationNames 587 // If any of the dependencies of the module being operated on were already split 591 // If a module is split, and then a module depending on the first module is not split 598 // Split a module into mulitple variants, one for each name in the variantNames 603 // to the split module via deps or DynamicDependerModule must exactly match a variant
|
| /external/abi-dumper/ |
| abi-dumper.pl | 482 my @V1Parts = split(/\./, $V1); 483 my @V2Parts = split(/\./, $V2); 545 foreach my $Path (sort {length($a)<=>length($b)} split(/:/, $ENV{"PATH"})) 576 my @Info = split(/\s+/, $_[0]); 625 foreach (split(/\n/, `$Cmd`)) 654 foreach my $Line (split(/\n/, qx/$Cmd/)) 668 foreach (split(/\n/, `$Cmd`)) [all...] |
| /frameworks/base/media/java/android/media/ |
| ExifInterface.java | [all...] |
| /tools/repohooks/tools/ |
| cpplint.py | 875 for filt in filters.split(','): 902 category = category.split('/')[0] [all...] |
| /build/make/tools/droiddoc/templates-ndk/assets/js/ |
| docs.js | 26 // var lang = location.pathname.split('/')[2]; 166 var pathParts = pagePath.split('/'); 592 var videoId = $(this).attr('href').split('?v=')[1]; 612 var marginTop = $("#video-frame").css('margin-top').split('px')[0]; 638 var idAndHash = videoId.split("#"); 641 startTime = idAndHash[1].split("t=")[1] != undefined ? idAndHash[1].split("t=")[1] : 0; 661 if (videoId != youTubePlayer.getVideoUrl().split('?v=')[1].split('&')[0].split('%')[0]) [all...] |
| /cts/tools/dasm/src/dasm/ |
| parser.cup | 538 {: String split[] = Utils.getMethodSignatureFromString(name.str_val); 539 dAsm.newMethod(split[0], split[1], i.int_val); :}
|
| /external/python/cpython2/Lib/test/ |
| test_math.py | 99 lhs, rhs = line.split('->') 100 id, fn, arg = lhs.split() 101 rhs_pieces = rhs.split() 119 lhs, rhs = line.split('->') 120 id, fn, arg_real, arg_imag = lhs.split() 121 rhs_pieces = rhs.split() [all...] |
| /external/swiftshader/third_party/LLVM/utils/ |
| llvmbuild | 131 paths = path.split(os.pathsep) 140 pathext = os.environ['PATHEXT'].lower().split(os.pathsep) 648 + "_config_flags").split())
|
| /packages/apps/Calendar/tests/src/com/android/calendar/event/ |
| EditEventHelperTest.java | [all...] |