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

<<71727374757677787980>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/
debug_map_base.hpp 111 split(key_const_reference, Cmp_Fn, PB_DS_CLASS_C_DEC&);
309 split(key_const_reference r_key, Cmp_Fn cmp_fn, PB_DS_CLASS_C_DEC& other) function in class:__gnu_pbds::detail::PB_DS_CLASS_C_DEC
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dir_util.py 49 (head, tail) = os.path.split(name)
53 (head, tail) = os.path.split(head)
msvc9compiler.py 183 s, rest = sys.version[i:].split(" ", 1)
211 oldList = variable.split(os.pathsep)
282 for line in stdout.split("\n"):
287 key, value = line.split('=', 1)
386 self.__paths = vc_env['path'].encode('mbcs').split(os.pathsep)
406 for p in os.environ['path'].split(';'):
692 temp_manifest = arg.split(":", 1)[1]
796 for p in os.environ['Path'].split(';'):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ClassBrowser.py 91 dir, file = os.path.split(self.file)
214 dir, file = os.path.split(file)
SearchEngine.py 177 line, col = map(int, pos.split("."))
219 line, col = map(int, index.split(".")) # Fails on invalid index
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_getopt.py 148 >>> args = '-a -b -cfoo -d bar a1 a2'.split()
161 >>> args = s.split()
test_importhooks.py 110 subname = fullname.split(".")[-1]
240 parent = mname.split(".")[0]
test_pkg.py 60 if self.pkgname in name.split('.')]
73 comps = name.split()
test_argparse.py 236 args = args_str.split()
244 args = args.split()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dir_util.py 49 (head, tail) = os.path.split(name)
53 (head, tail) = os.path.split(head)
msvc9compiler.py 183 s, rest = sys.version[i:].split(" ", 1)
211 oldList = variable.split(os.pathsep)
282 for line in stdout.split("\n"):
287 key, value = line.split('=', 1)
386 self.__paths = vc_env['path'].encode('mbcs').split(os.pathsep)
406 for p in os.environ['path'].split(';'):
692 temp_manifest = arg.split(":", 1)[1]
796 for p in os.environ['Path'].split(';'):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ClassBrowser.py 91 dir, file = os.path.split(self.file)
214 dir, file = os.path.split(file)
SearchEngine.py 177 line, col = map(int, pos.split("."))
219 line, col = map(int, index.split(".")) # Fails on invalid index
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_getopt.py 148 >>> args = '-a -b -cfoo -d bar a1 a2'.split()
161 >>> args = s.split()
test_importhooks.py 110 subname = fullname.split(".")[-1]
240 parent = mname.split(".")[0]
test_pkg.py 60 if self.pkgname in name.split('.')]
73 comps = name.split()
test_argparse.py 236 args = args_str.split()
244 args = args.split()
    [all...]
  /docs/source.android.com/src/devices/tech/input/
key-layout-files.jd 93 <h4 id="split-axes">Split Axes</h4>
94 <p>A split axis maps a Linux axis code to two Android axis code names, such that
95 values less than or greater than a threshold are split across two different axes when
100 <pre><code>axis 0x01 split 0x7f GAS BRAKE
105 (<code>0x83 - 0x7f</code>). Finally, if the value of <code>ABS_Y</code> equals the split value of <code>0x7f</code>
  /external/bison/build-aux/
gendocs.sh 78 --info ARG pass indicated ARG to makeinfo for Info, instead of --no-split.
114 If you want split Info, or other Info options, use --info to override.
136 infoarg=--no-split
276 opt="-o $PACKAGE.txt --no-split --no-headers $commonarg"
287 opt="--split=$1 $commonarg $htmlarg --node-files"
305 opt="--no-split --html -o $PACKAGE.html $commonarg $htmlarg"
  /external/bison/src/
AnnotationList.c 353 - If the dominant contribution is split-stable, the annotation could
358 be split-stable. Thus, the dominant contribution computation result
365 and thus need to be tracked regardless of the split stability of the
514 - If the dominant contribution is split-stable, then the annotation
752 /* It's not possible to find split-stable domination over
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h 356 void split(const String& separator, bool allowEmptyEntries, Vector<String>& result) const;
357 void split(const String& separator, Vector<String>& result) const function in class:WTF::String
359 split(separator, false, result);
361 void split(UChar separator, bool allowEmptyEntries, Vector<String>& result) const;
362 void split(UChar separator, Vector<String>& result) const function in class:WTF::String
364 split(separator, false, result);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r500_fragprog.c 239 * Split source register access.
245 struct rc_swizzle_split * split)
257 split->NumPhases = 0;
263 split->Phase[split->NumPhases++] = negatebase[i];
269 .Split = r500_swizzle_split
  /external/chromium_org/tools/grit/grit/
util.py 134 path_pieces = remaining_base_path.split(os.path.sep)
385 parts = _LANGUAGE_SPLIT_RE.split(code)
494 parts = [part.strip() for part in define.split('=', 1)]
565 return ''.join([self._SubFragment(f) for f in self.GetExp().split(text)])
604 for f in self.GetExp().split(text):
631 dir_path = os.path.split(file_path)[0]
  /external/chromium_org/tools/gyp/pylib/gyp/
__init__.py 64 format, params['flavor'] = format.split('-', 1)
77 path, generator_name = os.path.split(generator_name)
142 tokens = item.split('=', 1)
159 flags = shlex.split(flags)
377 generate_formats = re.split('[\s,]', generate_formats)
427 build_file_dir_components = build_file_dir.split(os.path.sep)
  /external/chromium_org/tools/mac/
symbolicate_crash.py 112 parts = line.split(':', 1)
333 arch = self.report_info['Code Type'].lower().split(' ')
347 return stdout.rstrip().split('\n')
445 exc_type = report.report_info['Exception Type'].split(' ')[0]
451 for line in repr(thread).split('\n'):
487 chrome_version = report.report_info['Version'].split(' ')[0]

Completed in 1424 milliseconds

<<71727374757677787980>>