/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/ |
WildcardMatcher.java | 32 final String[] parts = expression.split("\\:"); local 35 for (final String part : parts) {
|
/tools/tradefederation/core/src/com/android/tradefed/profiler/recorder/ |
TraceMetric.java | 107 String[] parts = text.split(":"); local 108 if (!(parts.length == 4)) { 112 String prefix = parts[0]; 113 String funcname = parts[1]; 114 MetricType mtype = MetricType.valueOf(parts[3]); 115 if (parts[2].contains("=")) { 116 String[] paramSplit = parts[2].split("="); 125 return new TraceMetric(prefix, funcname, parts[2], mtype);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/ |
domreg.py | 84 parts = s.split()
86 length = len(parts)
88 feature = parts[i]
94 v = parts[i]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/ |
domreg.py | 84 parts = s.split()
86 length = len(parts)
88 feature = parts[i]
94 v = parts[i]
|
/external/autotest/server/ |
standalone_profiler.py | 25 parts = [repr(profiler)] 26 parts += [repr(arg) for arg in args] 27 parts += ["%s=%r" % darg for darg in dargs.iteritems()] 28 return ", ".join(parts)
|
/external/python/cpython2/Lib/xml/dom/ |
domreg.py | 84 parts = s.split() 86 length = len(parts) 88 feature = parts[i] 94 v = parts[i]
|
/prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/ |
domreg.py | 84 parts = s.split() 86 length = len(parts) 88 feature = parts[i] 94 v = parts[i]
|
/prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/ |
domreg.py | 84 parts = s.split() 86 length = len(parts) 88 feature = parts[i] 94 v = parts[i]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/ |
domreg.py | 84 parts = s.split() 86 length = len(parts) 88 feature = parts[i] 94 v = parts[i]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
domreg.py | 84 parts = s.split() 86 length = len(parts) 88 feature = parts[i] 94 v = parts[i]
|
/external/skia/infra/bots/ |
gen_tasks.go | 61 alternateSwarmDimensions func(parts map[string]string) []string 98 func deriveCompileTaskName(jobName string, parts map[string]string) string { 99 if parts["role"] == "Housekeeper" { 101 } else if parts["role"] == "Test" || parts["role"] == "Perf" { 102 task_os := parts["os"] 104 if val := parts["extra_config"]; val != "" { 137 "compiler": parts["compiler"], 138 "target_arch": parts["arch"], 139 "configuration": parts["configuration"] [all...] |
/external/autotest/frontend/tko/ |
preconfigs.py | 50 parts = line.split(':') 51 self._preconfigs[type][name][parts[0]] = parts[1].strip()
|
/external/harfbuzz_ng/test/api/ |
test-ot-math.c | 539 hb_ot_math_glyph_part_t parts[20]; local 540 unsigned partsSize = sizeof (parts) / sizeof (parts[0]); 618 parts, 624 g_assert_cmpint(parts[0].glyph, ==, glyph); 625 g_assert_cmpint(parts[0].start_connector_length, ==, 800); 626 g_assert_cmpint(parts[0].end_connector_length, ==, 384); 627 g_assert_cmpint(parts[0].full_advance, ==, 2000); 628 g_assert(!(parts[0].flags & HB_MATH_GLYPH_PART_FLAG_EXTENDER)); 630 g_assert_cmpint(parts[1].glyph, ==, glyph) [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/ |
StringUtil.java | 56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
58 * @param parts - the Collection of Strings to join
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) {
63 Assert.notNull(parts, "parts");
67 Iterator iter = parts.iterator();
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
DetailsAddressResolver.java | 86 String parts[] = { local 99 for (int i = 0; i < parts.length; i++) { 100 if (parts[i] == null || parts[i].isEmpty()) continue; 104 addressText += parts[i];
|
/frameworks/base/tools/localedata/ |
extract_icu_data.py | 27 """Split a locale into three parts, for langauge, script, and region.""" 28 parts = locale.split('_') 29 if len(parts) == 1: 30 return (parts[0], None, None) 31 elif len(parts) == 2: 32 if len(parts[1]) == 4: # parts[1] is a script 33 return (parts[0], parts[1], None) 35 return (parts[0], None, parts[1] [all...] |
/external/python/cpython2/Demo/tkinter/guido/ |
MimeViewer.py | 57 self.parts = None 63 self.parts = [] 68 self.parts.append(p) 88 if self.parts: 89 for part in self.parts: 96 if self.parts: 97 for part in self.parts:
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
MessagePattern.java | 44 * as a list of "parts" for fast and simple parsing and to minimize object allocations. 49 * List of "parts": 66 * <li>Literal output text is not represented directly by "parts" but accessed 67 * between parts of a message, from one part's getLimit() to the next part's getIndex(). 245 parts.clear(); 277 parts.equals(o.parts); 278 // No need to compare numericValues if msg and parts are the same. 286 return (aposMode.hashCode()*37+(msg!=null ? msg.hashCode() : 0))*37+parts.hashCode(); 399 * Returns the number of "parts" created by parsing the pattern string [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
MessagePattern.java | 43 * as a list of "parts" for fast and simple parsing and to minimize object allocations. 48 * List of "parts": 65 * <li>Literal output text is not represented directly by "parts" but accessed 66 * between parts of a message, from one part's getLimit() to the next part's getIndex(). 256 parts.clear(); 290 parts.equals(o.parts); 291 // No need to compare numericValues if msg and parts are the same. 300 return (aposMode.hashCode()*37+(msg!=null ? msg.hashCode() : 0))*37+parts.hashCode(); 422 * Returns the number of "parts" created by parsing the pattern string [all...] |
/external/messageformat/java/com/ibm/icu/text/ |
MessagePattern.java | 41 * as a list of "parts" for fast and simple parsing and to minimize object allocations. 46 * List of "parts": 63 * <li>Literal output text is not represented directly by "parts" but accessed 64 * between parts of a message, from one part's getLimit() to the next part's getIndex(). 253 parts.clear(); 287 parts.equals(o.parts); 288 // No need to compare numericValues if msg and parts are the same. 297 return (aposMode.hashCode()*37+(msg!=null ? msg.hashCode() : 0))*37+parts.hashCode(); 419 * Returns the number of "parts" created by parsing the pattern string [all...] |
/external/python/cpython2/Lib/email/ |
feedparser.py | 100 parts = data.splitlines(True) 102 if not parts or not parts[0].endswith(('\n', '\r')): 104 self._partial += parts 109 self._partial.append(parts[0]) 110 parts[0:1] = ''.join(self._partial).splitlines(True) 117 if not parts[-1].endswith('\n'): 118 self._partial = [parts.pop()] 119 self.pushlines(parts) 123 parts = NLCRE_crack.split(data [all...] |
/external/libbrillo/brillo/ |
mime_utils.cc | 72 std::vector<std::string> parts = local 74 if (parts.empty()) 77 if (!mime::Split(parts.front(), type, subtype)) 82 parameters->reserve(parts.size() - 1); 83 for (size_t i = 1; i < parts.size(); i++) { 84 auto pair = brillo::string_utils::SplitAtFirst(parts[i], "="); 110 std::vector<std::string> parts; local 111 parts.push_back(brillo::string_utils::Join("/", type, subtype)); 113 parts.push_back( 116 return brillo::string_utils::Join("; ", parts); [all...] |
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_generator.cc | 116 vector<string> parts; local 117 SplitStringUsing(options[i].second, "|", &parts); 118 if (parts.size() != 2) { 123 params.set_java_package(parts[0], parts[1]); 125 vector<string> parts; local 126 SplitStringUsing(options[i].second, "|", &parts); 127 if (parts.size() != 2) { 133 params.set_java_outer_classname(parts[0], parts[1]) [all...] |
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_generator.cc | 119 vector<string> parts; local 120 SplitStringUsing(option_value, "|", &parts); 121 if (parts.size() != 2) { 126 params.set_java_package(parts[0], parts[1]); 128 vector<string> parts; local 129 SplitStringUsing(option_value, "|", &parts); 130 if (parts.size() != 2) { 136 params.set_java_outer_classname(parts[0], parts[1]) [all...] |
/external/swiftshader/third_party/subzero/bloat/ |
bloat.py | 199 parts = [] 203 parts.append(part) 204 return parts 218 parts = parse_cpp_name(sym, cppfilt) 219 if len(parts) == 1: 222 parts = path + parts 232 if parts[0].startswith(prefix): 233 parts[0] = parts[0][len(prefix): [all...] |