/external/bluetooth/glib/gio/ |
makegioalias.pl | 105 @words = split(/ /, $str);
|
/external/bluetooth/glib/gobject/ |
makegobjectalias.pl | 105 @words = split(/ /, $str);
|
/external/harfbuzz/contrib/tables/ |
unicode_parse_common.py | 13 '''Split a line based on a semicolon separator.''' 16 return [normalise(x) for x in line.split(';')] 23 parts = token.split('..')
|
/external/llvm/lib/Support/ |
StringExtras.cpp | 49 /// SplitString - Split up the specified string according to the specified 62 void llvm::StringRef::split(SmallVectorImpl<StringRef> &A, function in class:llvm::StringRef 72 std::pair<llvm::StringRef, llvm::StringRef> p = rest.split(Separators);
|
/external/markdown/markdown/extensions/ |
imagelinks.py | 101 parts = line.split() 105 album, photo = line.split("/")
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
PPreferredServiceParser.java | 110 String serviceID = urn.split(ParameterNamesIms.SERVICE_ID_LABEL+".")[1]; 124 String appID = urn.split(ParameterNamesIms.APPLICATION_ID_LABEL)[1];
|
/external/v8/test/benchmarks/ |
testcfg.py | 31 from os.path import join, split namespace 44 super(BenchmarkTestCase, self).__init__(context, split(path), mode)
|
/external/valgrind/main/none/tests/amd64/ |
gen_insn_test.pl | 232 foreach my $preset (split(/\s+/, $presets)) 241 my @values = split(/,/, $3); 278 my @values = split(/,/, $3); 311 my @values = split(/,/, $2); 322 my @values = split(/,/, $2); 333 my @values = split(/,/, $2); 350 foreach my $arg (split(/\s+/, $args)) 360 my @values = split(/,/, $3); 397 my @values = split(/,/, $3); 479 foreach my $result (split(/\s+/, $results) [all...] |
/external/valgrind/main/none/tests/x86/ |
gen_insn_test.pl | 209 foreach my $preset (split(/\s+/, $presets)) 218 my @values = split(/,/, $3); 255 my @values = split(/,/, $3); 288 my @values = split(/,/, $2); 299 my @values = split(/,/, $2); 310 my @values = split(/,/, $2); 327 foreach my $arg (split(/\s+/, $args)) 337 my @values = split(/,/, $3); 374 my @values = split(/,/, $3); 456 foreach my $result (split(/\s+/, $results) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/ |
shell.js | 67 var lines = msg.split ("\n"); 82 var lines = msg.split ("\n");
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/ |
shell.js | 67 var lines = msg.split ("\n"); 82 var lines = msg.split ("\n");
|
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/ |
LeaksParserWorker.js | 38 text.split("\n").forEach(function(line) { 48 leaks.push({ size: currentSize, stack: line.split(" | ").slice(1).map(function(str) { return str.trim(); }) });
|
/external/wpa_supplicant/wpa_gui/ |
scanresults.ui.h | 52 QStringList lines = QStringList::split(QChar('\n'), res); 60 QStringList cols = QStringList::split(QChar('\t'), *it, true);
|
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/ |
scanresults.ui.h | 52 QStringList lines = QStringList::split(QChar('\n'), res); 60 QStringList cols = QStringList::split(QChar('\t'), *it, true);
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui/ |
scanresults.ui.h | 52 QStringList lines = QStringList::split(QChar('\n'), res); 60 QStringList cols = QStringList::split(QChar('\t'), *it, true);
|
/frameworks/base/core/java/android/util/ |
DebugUtils.java | 69 String[] selectors = s.split("@"); 74 String[] pair = selectors[i].split("=");
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
PathMatcher.java | 33 String[] segments = Path.split(pattern); 42 String[] segments = path.split();
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/ |
split_join_fn_imps.hpp | 44 split(const_key_reference r_key, PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC 88 _GLIBCXX_DEBUG_ONLY(debug_base::split(r_key,(Cmp_Fn& )(*this), other);)
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/ |
split_join_fn_imps.hpp | 44 split(const_key_reference r_key, PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC 88 _GLIBCXX_DEBUG_ONLY(debug_base::split(r_key,(Cmp_Fn& )(*this), other);)
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/ |
split_join_fn_imps.hpp | 44 split(const_key_reference r_key, PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC 88 _GLIBCXX_DEBUG_ONLY(debug_base::split(r_key,(Cmp_Fn& )(*this), other);)
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
WriterToUTF8Buffered.java | 202 int split = length/CHARS_MAX; local 205 chunks = split + 1; 207 chunks = split; 337 int split = length/CHARS_MAX; local 340 chunks = split + 1; 342 chunks = split;
|
/external/llvm/lib/MC/ |
MCSectionMachO.cpp | 187 std::pair<StringRef, StringRef> Comma = Spec.split(','); 203 // Split the section name off from any attributes if present. 204 Comma = Comma.second.split(','); 222 Comma = Comma.second.split(','); 252 // Otherwise, we do have some attributes. Split off the size specifier if 254 Comma = Comma.second.split(','); 258 std::pair<StringRef, StringRef> Plus = Attrs.split('+'); 277 Plus = Plus.second.split('+');
|
/external/qemu/android/ |
boot-properties.c | 170 /* split in key and value, so we can re-use boot_property_add (and its 174 char *split = strchr(p->property, '='); local 175 if (split == NULL) { 182 *split = '\0'; /* p->property is now "<key>\0<value>\0" */ 184 uint32_t key_buf_len = (split - p->property) + 1; // +1: '\0' terminator 190 qemu_put_buffer(f, (uint8_t*) split + 1, value_buf_len); 192 *split = '='; /* restore property to "<key>=<value>\0" */
|
/packages/apps/Settings/src/com/android/settings/net/ |
NetworkPolicyEditor.java | 90 // force combine any split policies when disabled 186 * Remove any split {@link NetworkPolicy}. 220 public void setMobilePolicySplit(String subscriberId, boolean split) { 221 if (setMobilePolicySplitInternal(subscriberId, split)) { 232 private boolean setMobilePolicySplitInternal(String subscriberId, boolean split) { 239 if (split == beforeSplit) { 243 } else if (beforeSplit && !split) { 257 } else if (!beforeSplit && split) {
|
/external/chromium/chrome/browser/resources/net_internals/ |
resizableverticalsplitview.js | 6 * This view implements a vertically split display with a draggable divider. 36 // vertical split. 54 // If this is the first setGeometry(), initialize the split point at 50%. 58 // Calculate the horizontal split points. 69 // Position the boxes using calculated split points.
|