Searched refs:sep (Results 126 - 150 of 340) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/platform_tools/nacl/
H A Dhttpd.py77 # "Safely" split a string at |sep| into a [key, value] pair. If |sep| does not
80 def KeyValuePair(str, sep='='):
81 if sep in str:
82 return str.split(sep)
/external/chromium_org/third_party/skia/src/utils/
H A DSkRTConf.cpp35 char sep[] = " \t\r\n"; local
37 char *keyptr = strtok(line, sep);
42 char *valptr = strtok(NULL, sep);
/external/chromium_org/tools/android/heap_profiler/
H A Dheap_profiler_integrationtest.cc153 size_t sep = path.find_last_of('/'); local
154 if (sep == std::string::npos)
156 path.erase(sep);
/external/chromium_org/v8/tools/testrunner/local/
H A Dtestsuite.py41 name = root.split(os.path.sep)[-1]
162 argpath = a.split(os.path.sep)
167 path = os.path.sep.join(argpath[1:])
/external/iptables/extensions/
H A Dlibxt_addrtype.c154 const char *sep = ""; local
159 printf("%s%s", sep, rtn_names[i]);
160 sep = ",";
H A Dlibxt_time.c70 "[!] --weekdays value List of weekdays on which to match, sep. by comma\n"
198 const char *sep; local
202 sep = strchr(*arg, delim);
203 if (sep == NULL) {
208 snprintf(buf, buflen, "%.*s", (unsigned int)(sep - *arg), *arg);
209 *arg = sep + 1;
H A Dlibxt_CT.c120 const char *sep = ""; local
126 printf("%s%s", sep, tbl[i].name);
127 sep = ",";
/external/skia/platform_tools/nacl/
H A Dhttpd.py77 # "Safely" split a string at |sep| into a [key, value] pair. If |sep| does not
80 def KeyValuePair(str, sep='='):
81 if sep in str:
82 return str.split(sep)
/external/skia/src/utils/
H A DSkRTConf.cpp35 char sep[] = " \t\r\n"; local
37 char *keyptr = strtok(line, sep);
42 char *valptr = strtok(NULL, sep);
/external/chromium_org/ppapi/generators/
H A Didl_c_header.py221 def_guard = def_guard.replace(os.sep,'_').replace('.','_').upper() + '_'
231 from_text = 'From %s' % GetPathFromNode(filenode).replace(os.sep, '/')
252 include, relpath=gpath).replace(os.sep, '/') for include in includes]
261 relpath=gpath).replace(os.sep, '/')
334 def_guard = def_guard.replace(os.sep,'_').replace('.','_').upper() + '_'
/external/fio/engines/
H A Drdma.c1055 char *sep, *portp, *modep; local
1072 sep = strchr(buf, '/');
1073 if (!sep)
1076 *sep = '\0';
1077 sep++;
1083 portp = sep;
1084 sep = strchr(portp, '/');
1085 if (sep) {
1086 *sep = '\0';
1087 modep = sep
[all...]
/external/libedit/src/
H A Dkeymacro.c637 keymacro__decode_str(const Char *str, char *buf, size_t len, const char *sep) argument
643 if (sep[0] != '\0') {
644 ADDC(sep[0]);
664 if (sep[0] != '\0' && sep[1] != '\0') {
665 ADDC(sep[1]);
/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java552 char sep = File.separatorChar;
557 if (path.charAt(pos) == sep) {
577 if (path.charAt(pos) == sep) {
/external/bison/src/
H A Dstate.c264 char const *sep = ""; local
268 fprintf (out, "%s%s", sep, symbols[k]->tag);
269 sep = ", ";
/external/chromium_org/third_party/jinja2/
H A Dloaders.py28 if path.sep in piece \
186 [len(searchpath):].strip(os.path.sep) \
187 .replace(os.path.sep, '/')
H A Dutils.py508 def __init__(self, sep=u', '):
509 self.sep = sep
516 return self.sep
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dlink_converter.py35 page = '%s.html' % SanitizeAPIName(filename.rsplit(os.sep, 1)[-1])
H A Dintegration_test.py44 return os_path.replace(os.sep, '/')
64 relative_root = root[len(path):].lstrip(os.path.sep)
/external/chromium_org/native_client_sdk/src/build_tools/tests/
H A Dverify_filelist_test.py116 if os.path.sep != '/':
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
H A Dbaselineoptimizer.py211 platform_dir = self.ROOT_LAYOUT_TESTS_DIRECTORY + self._filesystem.sep + 'platform' + self._filesystem.sep
213 return filename.replace(platform_dir, '').split(self._filesystem.sep)[0]
216 return filename.replace(platform_dir, '').split(self._filesystem.sep)[0]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
H A Dwebkit_finder.py36 self._dirsep = filesystem.sep
/external/openssl/apps/
H A Ddgst.c77 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
558 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, argument
620 else if (sep == 2)
636 if (sep && (i != 0))
H A Dspeed.c2657 static char sep[]=":"; local
2718 alg=atoi(sstrsep(&p,sep));
2719 sstrsep(&p,sep);
2721 results[alg][j]+=atof(sstrsep(&p,sep));
2729 k=atoi(sstrsep(&p,sep));
2730 sstrsep(&p,sep);
2732 d=atof(sstrsep(&p,sep));
2738 d=atof(sstrsep(&p,sep));
2750 k=atoi(sstrsep(&p,sep));
2751 sstrsep(&p,sep);
[all...]
/external/ppp/pppd/
H A Dtty.c871 char *sep, *endp = NULL; local
878 sep = strchr(dest, ':');
879 if (sep != NULL)
880 port = strtol(sep+1, &endp, 10);
881 if (port < 0 || endp == sep+1 || sep == dest) {
885 *sep = 0;
891 *sep = ':';
896 *sep = ':';
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
H A Dspeech_rule.js308 * @param {string} sep Separator symbol.
312 cvox.SpeechRule.splitString_ = function(str, sep) {
317 var sepPos = str.search(sep);

Completed in 8075 milliseconds

1234567891011>>