HomeSort by relevance Sort by last modified time
    Searched full:split (Results 626 - 650 of 5986) sorted by null

<<21222324252627282930>>

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TryListBuilder.java 99 * @param address The address to split at
102 public TryRange split(int address) { method in class:TryListBuilder.TryRange
233 of an existing try range. We need to split the existing range
235 startRange = tryRange.split(startAddress);
284 existing range. We need to split the existing range
286 tryRange.split(endAddress);
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.cpp 406 QStringList lines = info.split(QRegExp("\\n"));
519 params.split(QRegExp(" (?=[^']*('[^']*'[^']*)*$)"));
592 QStringList lines = bss.split(QRegExp("\\n"));
644 lines = bss.split(QRegExp("\\n"));
831 QStringList items = text.split(' ');
845 split('|');
866 QStringList items = text.split(' ');
877 QStringList items = text.split(' ');
904 text.split(QRegExp(" (?=[^']*('[^']*'[^']*)*$)"));
952 QStringList items = text.split(' ');
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarContextView.java 92 public void setSplitActionBar(boolean split) {
93 if (mSplitActionBar != split) {
99 if (!split) {
108 // Allow full screen width in split mode.
125 super.setSplitActionBar(split);
225 // Allow full screen width in split mode.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_recno.py 226 data = "The quick brown fox jumped over the lazy dog".split()
240 print text.split('\n')
242 self.assertEqual(text.split('\n'), data)
261 print text.split('\n')
263 self.assertEqual(text.split('\n'),
264 "The quick reddish-brown fox jumped over the comatose dog".split())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_build_ext.py 58 modpath = fullname.split('.')
92 d,fn = os.path.split(filename)
191 pkg = '.'.join(ext._full_name.split('.')[:-1]+[''])
201 base = os.path.join(self.build_lib, *ext._full_name.split('.'))
210 stub_file = os.path.join(output_dir, *ext._full_name.split('.'))+'.py'
278 output_dir,filename = os.path.split(output_libname)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_recno.py 226 data = "The quick brown fox jumped over the lazy dog".split()
240 print text.split('\n')
242 self.assertEqual(text.split('\n'), data)
261 print text.split('\n')
263 self.assertEqual(text.split('\n'),
264 "The quick reddish-brown fox jumped over the comatose dog".split())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_build_ext.py 58 modpath = fullname.split('.')
92 d,fn = os.path.split(filename)
191 pkg = '.'.join(ext._full_name.split('.')[:-1]+[''])
201 base = os.path.join(self.build_lib, *ext._full_name.split('.'))
210 stub_file = os.path.join(output_dir, *ext._full_name.split('.'))+'.py'
278 output_dir,filename = os.path.split(output_libname)
  /external/harfbuzz/src/
harfbuzz-indic.cpp 484 Split,
556 Pre, None, None, Split,
557 Split, Below, None, None,
679 Split, None, None, Split,
680 Split, None, None, None,
720 Pre, None, Split, Split,
721 Split, Halant, None, None,
761 Split, None, Post, Above
1091 const unsigned short *split = split_matras; local
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-indic.cpp 484 Split,
556 Pre, None, None, Split,
557 Split, Below, None, None,
679 Split, None, None, Split,
680 Split, None, None, None,
720 Pre, None, Split, Split,
721 Split, Halant, None, None,
761 Split, None, Post, Above
1091 const unsigned short *split = split_matras; local
    [all...]
  /build/tools/releasetools/
common.py 93 for line in zip.read("META/misc_info.txt").split("\n"):
96 k, v = line.split("=", 1)
131 for line in data.split("\n"):
133 name, value = line.split(" ", 1)
167 for line in data.split("\n"):
170 name, value = line.split("=", 1)
186 for line in data.split("\n"):
189 pieces = line.split()
211 options = options.split(",")
222 for line in data.split("\n")
    [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 239 /// SplitEdge - Split the edge connecting specified block. Pass P must
250 // single pred. Split the block.
253 // If the successor only has a single pred, split the top of the successor
260 // Otherwise, if BB has a single successor, split it at the bottom of the
267 /// SplitBlock - Split the specified block at the specified instruction - every
276 BasicBlock *New = Old->splitBasicBlock(SplitIt, Old->getName()+".split");
279 // LCSSA as well, because we force the split point to be after any PHI nodes.
313 // this split will affect loops.
350 // loop containing the block being split.
356 // Seek a loop which actually contains the block being split (to avoi
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ntpath.py 16 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
111 # but b is empty; since, e.g., split('a/') produces
119 # Split a path in a drive specification (a drive letter followed by a
123 """Split a pathname into drive and path specifiers. Returns a 2-tuple
132 """Split a pathname into UNC mount point and relative path specifiers.
159 # Split a path in head (everything up to the last '/') and tail (the
164 def split(p): function
165 """Split a pathname.
184 # Split a path in root and extension.
198 return split(p)[1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ntpath.py 16 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
111 # but b is empty; since, e.g., split('a/') produces
119 # Split a path in a drive specification (a drive letter followed by a
123 """Split a pathname into drive and path specifiers. Returns a 2-tuple
132 """Split a pathname into UNC mount point and relative path specifiers.
159 # Split a path in head (everything up to the last '/') and tail (the
164 def split(p): function
165 """Split a pathname.
184 # Split a path in root and extension.
198 return split(p)[1
    [all...]
  /build/tools/
compare_fileslist.py 39 lines = map(string.split, lines)
85 combo = input.split(os.path.sep)[1]
diff_package_overlays.py 45 all_packages = set(f.read().split())
55 words = line.split()
findleaves.py 28 pruneleaves = set(map(lambda x: os.path.split(x)[1], prune))
65 "progName": os.path.split(sys.argv[0])[1],
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 77 for (String p : argParam.split(",")) {
88 for (String p : argParam.split(",")) {
  /development/scripts/
compare-installed-size.py 50 size, name = line.split()
53 components = name.split('/')
  /external/bison/examples/
extexi 40 split ($0, tmp, ",");
100 n = split (contents, lines, "\n");
  /external/chromium/chrome/browser/resources/shared/js/
i18n_template.js 60 var parts = attributeValue.replace(/\s/g, '').split(/;/);
71 var path = propName.slice(1).split('.');
  /external/chromium/chrome/browser/web_resource/
promo_resource_service.cc 217 size_t split = promo_build.find(":"); local
218 if (split != std::string::npos &&
219 base::StringToInt(promo_build.substr(0, split),
221 base::StringToInt(promo_build.substr(split+1),
308 size_t split = name.find(":"); local
309 if (split == std::string::npos)
312 std::string promo_signal = name.substr(0, split);
315 !base::StringToInt(name.substr(split+1), &target_builds))
  /external/chromium-trace/trace-viewer/src/base/
color.js 20 values = tmp.split(',').map(function(v) {
31 values = tmp.split(',').map(function(v) {
  /external/chromium-trace/trace-viewer/src/
tests.html 42 var queryParams = window.location.search.substring(1).split('&');
44 var parts = param.split('=');
  /external/chromium_org/chrome/common/extensions/docs/server2/
render_servlet.py 37 if path.split('/')[-1] == 'redirects.json':
88 doc_class = path.split('/', 1)[0]
test_file_system.py 24 for k in base.split('/'):
77 parts = path.split('/')

Completed in 2029 milliseconds

<<21222324252627282930>>