/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_normalization.py | 32 data = [int(x, 16) for x in data.split(" ")] 49 line = line.split('#')[0] 54 part = line.split()[0] 57 c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]] 63 c1 = unistr(line.split(';')[0])
|
/external/chromium_org/chrome/common/extensions/features/ |
base_feature_provider.cc | 137 std::vector<std::string> split; local 138 base::SplitString(iter.key(), '.', &split); 146 while (!split.empty()) { 147 std::string parent_name = JoinString(split, '.'); 148 split.pop_back(); 246 std::vector<std::string> split; 247 base::SplitString(feature->name(), '.', &split); 248 if (split.size() < 2) 250 split.pop_back(); 251 return GetFeature(JoinString(split, '.')) [all...] |
/external/openfst/src/include/fst/ |
partition.h | 134 // split class on the element_id 139 // first time class is split 143 // increment size of split (set of element at head of chain) 146 // update split point 156 // Finalize class_id, split if required, and update class_splits, 160 // only split if necessary 198 // can finalize the split. FinalizeSplit() will update each block in the 238 // pointer to split point for each class 247 // size of split for each class 250 // set of visited classes to be used in split refin [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
partition.h | 129 // split class on the element_id 134 // first time class is split 138 // increment size of split (set of element at head of chain) 141 // update split point 151 // Finalize class_id, split if required, and update class_splits, 155 // only split if necessary 193 // can finalize the split. FinalizeSplit() will update each block in the 233 // pointer to split point for each class 242 // size of split for each class 245 // set of visited classes to be used in split refin [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
macpath.py | 9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 58 def split(s): function 59 """Split a pathname into two parts: the directory leading up to the final 78 """Split a pathname into a drive specification and the rest of the 87 # Short interfaces to split() 89 def dirname(s): return split(s)[0] 90 def basename(s): return split(s)[1] 95 components = split(s) 138 comps = s.split(":") 205 components = path.split(':' [all...] |
urlparse.py | 82 userinfo = userinfo.split(":", 1)[0] 92 return userinfo.split(":", 1)[1] 97 netloc = self.netloc.split('@')[-1] 99 return netloc.split(']')[0][1:].lower() 101 return netloc.split(':')[0].lower() 109 netloc = self.netloc.split('@')[-1].split(']')[-1] 111 port = netloc.split(':')[1] 192 url, fragment = url.split('#', 1) 194 url, query = url.split('?', 1 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
macpath.py | 9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 58 def split(s): function 59 """Split a pathname into two parts: the directory leading up to the final 78 """Split a pathname into a drive specification and the rest of the 87 # Short interfaces to split() 89 def dirname(s): return split(s)[0] 90 def basename(s): return split(s)[1] 95 components = split(s) 138 comps = s.split(":") 205 components = path.split(':' [all...] |
urlparse.py | 82 userinfo = userinfo.split(":", 1)[0] 92 return userinfo.split(":", 1)[1] 97 netloc = self.netloc.split('@')[-1] 99 return netloc.split(']')[0][1:].lower() 101 return netloc.split(':')[0].lower() 109 netloc = self.netloc.split('@')[-1].split(']')[-1] 111 port = netloc.split(':')[1] 192 url, fragment = url.split('#', 1) 194 url, query = url.split('?', 1 [all...] |
/external/chromium_org/third_party/icu/source/test/perf/collationperf/ |
CollPerf.pl | 80 my @icua = split( ' = ', $icu[2] ); 81 my @icub = split( ' ', $icua[1] ); 82 my @nixa = split( ' = ', $nix[2] ); 83 my @nixb = split( ' ', $nixa[1] ); 92 @icua = split( ' = ', $icu[2] ); 93 @icub = split( ' ', $icua[1] ); 94 @nixa = split( ' = ', $nix[2] ); 95 @nixb = split( ' ', $nixa[1] ); 101 @icua = split( ' = ', $icu[3] ); 102 @nixa = split( ' = ', $nix[3] ) [all...] |
/external/icu4c/test/perf/collationperf/ |
CollPerf.pl | 80 my @icua = split( ' = ', $icu[2] ); 81 my @icub = split( ' ', $icua[1] ); 82 my @nixa = split( ' = ', $nix[2] ); 83 my @nixb = split( ' ', $nixa[1] ); 92 @icua = split( ' = ', $icu[2] ); 93 @icub = split( ' ', $icua[1] ); 94 @nixa = split( ' = ', $nix[2] ); 95 @nixb = split( ' ', $nixa[1] ); 101 @icua = split( ' = ', $icu[3] ); 102 @nixa = split( ' = ', $nix[3] ) [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
branch_utility.py | 53 first, second = path.split('/', 1) 110 number = version['version'].split('.')[2] 112 number = version['version'].split('.')[0] 139 version_title = entry['title'].split(' - ')[1].split('.') 167 version_title = entry['title'].split(' - ')[1].split('.')
|
/external/chromium_org/ppapi/generators/ |
idl_outfile.py | 40 oldlines = oldtext.split('\n') 41 curlines = (''.join(self.outlist)).split('\n') 53 curwords = curline.split() 54 oldwords = oldline.split() 109 for line in difflib.unified_diff(oldtext.split('\n'), outtext.split('\n'), 118 basepath, leafname = os.path.split(filename)
|
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/ |
vbo_split.c | 42 * dimensions, it would not ordinarily want to split vbos. But if 46 * to split the drawing and vbos internally without imposing its 58 /* True if a primitive can be split without copying of vertices, false 141 /* The index buffer is too large for hardware. Try to split 142 * on whole-primitive boundaries, otherwise try to split the 156 * module). Try to split on whole-primitive boundaries, 157 * otherwise try to split the individual primitives.
|
/external/mesa3d/src/mesa/vbo/ |
vbo_split.c | 42 * dimensions, it would not ordinarily want to split vbos. But if 46 * to split the drawing and vbos internally without imposing its 58 /* True if a primitive can be split without copying of vertices, false 141 /* The index buffer is too large for hardware. Try to split 142 * on whole-primitive boundaries, otherwise try to split the 156 * module). Try to split on whole-primitive boundaries, 157 * otherwise try to split the individual primitives.
|
/frameworks/base/core/java/com/android/internal/widget/ |
AbsActionBarView.java | 81 * Sets whether the bar should be split right now, no questions asked. 82 * @param split true if the bar should split 84 public void setSplitActionBar(boolean split) { 85 mSplitActionBar = split; 89 * Sets whether the bar should split if we enter a narrow screen configuration. 90 * @param splitWhenNarrow true if the bar should check to split after a config change
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
AbsActionBarView.java | 81 * Sets whether the bar should be split right now, no questions asked. 83 * @param split true if the bar should split 85 public void setSplitActionBar(boolean split) { 86 mSplitActionBar = split; 90 * Sets whether the bar should split if we enter a narrow screen configuration. 92 * @param splitWhenNarrow true if the bar should check to split after a config change
|
/development/host/windows/usb/api/ |
adb_winusb_api.h | 29 split functionality of our ADB API on Windows between two DLLs: AdbWinApi,
32 top of WinUsb API. We are forced to do this split, because we can have
36 they still must be able to use ADB. So, the idea behind the split is as
|
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/ |
cpufreq_parser.js | 41 // TODO(sleffler) split by cpu 43 var args = input.split(/\s+/); 46 var item = args[i].split('=');
|
/external/chromium_org/build/ios/ |
clean_env.py | 36 add_to_path = first_entry.replace('ADD_TO_PATH=', '', 1).split(':') 57 [x for x in initial_path.split(':') if not x.startswith(dev_prefix)] 64 (key, val) = args[0].split('=', 1)
|
/external/chromium_org/net/data/websocket/ |
README | 10 - split_packet_check.html : A page for testing split packet handling. Here, 41 - close-with-split-packet_wsh.py : A WebSocket URL handler for testing split
|
/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/srec/tools/cmd/ |
pht_to_short.pl | 18 ($trash,$lph,$sph,$num_states) = split(/\s+/); 56 ($word, $pron) = split(/\s*\t\s*/, $_, 2); 58 @lphlist = split(/\s+/, $pron);
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
CDATASectionImpl.java | 52 public void split() { method in class:CDATASectionImpl 58 String[] parts = getData().split("\\]\\]>"); 68 * sequence "]]>". Such nodes must be {@link #split} before they are
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
appletrawmain.py | 22 _dir = os.path.split(sys.executable)[0] # removes "python" 23 _dir = os.path.split(_dir)[0] # Removes "MacOS" 27 _dir = os.path.split(sys.argv[0])[0]
|
/external/guava/guava/src/com/google/common/base/ |
Splitter.java | 44 * Splitter.on(',').split("foo,bar")}</pre> 51 * Splitter.on(',').split("foo,,bar, quux")}</pre> 62 * Now {@code MY_SPLITTER.split("foo, ,bar, quux,")} returns an iterable 78 * return splitter.split("wrong / wrong / wrong");}</pre> 87 * separators, as does {@link String#split(String)}, nor does it have a default 118 * example, {@code Splitter.on(',').split("foo,,bar")} returns an iterable 131 * Splitter.on(CharMatcher.anyOf(";,")).split("foo,;bar,quux")} returns an 159 * example, {@code Splitter.on(", ").split("foo, bar, baz,qux")} returns an 200 * Splitter.on(Pattern.compile("\r?\n")).split(entireFile)} splits a string 235 * Splitter.onPattern("\r?\n").split(entireFile)} splits a string into line [all...] |