HomeSort by relevance Sort by last modified time
    Searched refs:sep (Results 126 - 150 of 603) sorted by null

1 2 3 4 56 7 8 91011>>

  /ndk/sources/host-tools/make-3.81/
vmsjobs.c 474 char *sep; local
509 p = sep = q = cmd;
527 p = sep = q;
534 sep = q;
538 sep = q;
542 sep = q - 1;
547 if (sep - p > 78)
550 fwrite (p, 1, sep - p, outfile);
551 p = sep;
552 if (*sep)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipimport.py 40 return path.replace(os.sep, '.')
188 packdir = TESTPACK + os.sep
194 packdir = TESTPACK + os.sep
195 packdir2 = packdir + TESTPACK2 + os.sep
202 packdir = TESTPACK + os.sep
203 packdir2 = packdir + TESTPACK2 + os.sep
239 zi2 = zipimport.zipimporter(TEMP_ZIP + os.sep + TESTPACK)
241 self.assertEqual(zi2.prefix, TESTPACK + os.sep)
247 packdir = TESTPACK + os.sep
248 packdir2 = packdir + TESTPACK2 + os.sep
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zipimport.py 40 return path.replace(os.sep, '.')
188 packdir = TESTPACK + os.sep
194 packdir = TESTPACK + os.sep
195 packdir2 = packdir + TESTPACK2 + os.sep
202 packdir = TESTPACK + os.sep
203 packdir2 = packdir + TESTPACK2 + os.sep
239 zi2 = zipimport.zipimporter(TEMP_ZIP + os.sep + TESTPACK)
241 self.assertEqual(zi2.prefix, TESTPACK + os.sep)
247 packdir = TESTPACK + os.sep
248 packdir2 = packdir + TESTPACK2 + os.sep
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_filelist.py 30 """Converts '/' in a string to os.sep"""
31 return s.replace('/', os.sep)
46 sep = os.sep
47 if os.sep == '\\':
48 sep = re.escape(os.sep)
52 ('foo*', r'foo[^%(sep)s]*\Z(?ms)'),
53 ('foo?', r'foo[^%(sep)s]\Z(?ms)'),
54 ('foo??', r'foo[^%(sep)s][^%(sep)s]\Z(?ms)')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_filelist.py 30 """Converts '/' in a string to os.sep"""
31 return s.replace('/', os.sep)
46 sep = os.sep
47 if os.sep == '\\':
48 sep = re.escape(os.sep)
52 ('foo*', r'foo[^%(sep)s]*\Z(?ms)'),
53 ('foo?', r'foo[^%(sep)s]\Z(?ms)'),
54 ('foo??', r'foo[^%(sep)s][^%(sep)s]\Z(?ms)')
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/stdio/
hist.c 320 const char *sep = symbol_conf.field_sep; local
334 if (!sep || !first) {
335 ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " ");
383 const char *sep = symbol_conf.field_sep; local
405 fprintf(fp, "%s", sep ?: " ");
416 if (sep) {
417 fprintf(fp, "%c%s", *sep, se->se_header);
439 if (sep)
450 fprintf(fp, "%s", sep ?: " ");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 45 def capwords(s, sep=None):
46 """capwords(s [,sep]) -> string
50 join. If the optional second argument sep is absent or None,
53 sep is used to split and join the words.
56 return (sep or ' ').join(x.capitalize() for x in s.split(sep))
281 def split(s, sep=None, maxsplit=-1):
282 """split(s [,sep [,maxsplit]]) -> list of strings
284 Return a list of the words in the string s, using sep as the
286 maxsplit places (resulting in at most maxsplit+1 words). If sep
    [all...]
posixpath.py 33 "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
40 sep = '/' variable
105 return genericpath._splitext(p, sep, altsep, extsep)
375 path = sep
378 name, _, rest = rest.partition(sep)
422 start_list = [x for x in abspath(start).split(sep) if x]
423 path_list = [x for x in abspath(path).split(sep) if x]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 45 def capwords(s, sep=None):
46 """capwords(s [,sep]) -> string
50 join. If the optional second argument sep is absent or None,
53 sep is used to split and join the words.
56 return (sep or ' ').join(x.capitalize() for x in s.split(sep))
281 def split(s, sep=None, maxsplit=-1):
282 """split(s [,sep [,maxsplit]]) -> list of strings
284 Return a list of the words in the string s, using sep as the
286 maxsplit places (resulting in at most maxsplit+1 words). If sep
    [all...]
posixpath.py 33 "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
40 sep = '/' variable
105 return genericpath._splitext(p, sep, altsep, extsep)
375 path = sep
378 name, _, rest = rest.partition(sep)
422 start_list = [x for x in abspath(start).split(sep) if x]
423 path_list = [x for x in abspath(path).split(sep) if x]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
cpumap.c 50 char sep; local
52 sep = 0;
55 n = fscanf(file, "%u%c", &cpu, &sep);
81 if (n == 2 && sep == '-')
85 if (n == 1 || sep == '\n')
  /frameworks/base/core/java/android/content/
ComponentName.java 208 int sep = str.indexOf('/'); local
209 if (sep < 0 || (sep+1) >= str.length()) {
212 String pkg = str.substring(0, sep);
213 String cls = str.substring(sep+1);
  /hardware/ti/omap4-aah/camera/
CameraHalUtilClasses.cpp 209 const char sep = ','; local
247 if ( sep != *pEnd )
258 if ( sep != *pEnd )
269 if ( sep != *pEnd )
280 if ( sep != *pEnd )
  /hardware/ti/omap4xxx/camera/
CameraHalUtilClasses.cpp 211 const char sep = ','; local
249 if ( sep != *pEnd )
260 if ( sep != *pEnd )
271 if ( sep != *pEnd )
282 if ( sep != *pEnd )
  /external/bison/src/
print_graph.c 118 char const *sep = ""; local
122 obstack_sgrow (oout, sep);
124 sep = ", ";
  /external/chromium_org/chrome/common/extensions/docs/server2/
render_servlet.py 124 sep = '\n - '
125 logging.warning('Rendering %s:%s%s' % (path, sep, sep.join(warnings)))
  /ndk/sources/host-tools/make-3.81/w32/
pathstuff.c 134 char sep; /* what flavor of separator used in old path */ local
187 sep = *etok;
212 *etok = sep;
  /external/chromium_org/ppapi/
PRESUBMIT.py 30 name_parts = filename.split(os.sep)
52 name_parts = name.split(os.sep)
89 name_parts = name.split(os.sep)
122 name_parts = name.split(os.sep)
208 name_parts = name.split(os.sep)
251 name_parts = filename.split(os.sep)
  /external/chromium_org/third_party/markdown/extensions/
footnotes.py 104 self.sep = ':'
106 self.sep = '-'
151 return 'fn%s%d-%s' % (self.sep, self.unique_prefix, id)
153 return 'fn%s%s' % (self.sep, id)
158 return 'fnref%s%d-%s' % (self.sep, self.unique_prefix, id)
160 return 'fnref%s%s' % (self.sep, id)
  /external/e2fsprogs/intl/
l10nflist.c 111 except the last into the character SEP. */
113 argz_stringify__ (char *argz, size_t len, int sep)
121 *argz++ = sep;
125 # define __argz_stringify(argz, len, sep) argz_stringify__ (argz, len, sep)
128 # define __argz_stringify(argz, len, sep) \
129 INTUSE(__argz_stringify) (argz, len, sep)
  /external/javassist/src/main/javassist/
ClassPoolTail.java 43 char sep = File.separatorChar; local
44 String filename = directory + sep
45 + classname.replace('.', sep) + ".class";
54 char sep = File.separatorChar; local
55 String filename = directory + sep
56 + classname.replace('.', sep) + ".class";
  /prebuilts/tools/common/m2/repository/com/android/tools/external/ant-glob/1.0/
ant-glob-1.0.jar 
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
generate_event_interfaces.py 87 relative_path_posix = relative_path_local.replace(os.sep, posixpath.sep)
  /external/chromium_org/third_party/leveldatabase/src/doc/bench/
db_bench_tree_db.cc 196 const char* sep = strchr(line, ':');
197 if (sep == NULL) {
200 Slice key = TrimSpace(Slice(line, sep - 1 - line));
201 Slice val = TrimSpace(Slice(sep + 1));
325 const char* sep = strchr(benchmarks, ','); local
327 if (sep == NULL) {
331 name = Slice(benchmarks, sep - benchmarks);
332 benchmarks = sep + 1;
  /external/stlport/src/
num_get.cpp 88 bool _STLP_CALL __get_fdigit_or_sep(wchar_t& c, wchar_t sep,
90 if (c == sep) {

Completed in 3123 milliseconds

1 2 3 4 56 7 8 91011>>