Searched refs:sep (Results 76 - 100 of 340) sorted by relevance

1234567891011>>

/external/regex-re2/re2/testing/
H A Dregexp_generator.h64 // Splits string everywhere sep is found, returning
66 vector<string> Split(const StringPiece& sep, const StringPiece& s);
H A Dregexp_generator.cc244 vector<string> Split(const StringPiece& sep, const StringPiece& s) { argument
247 if (sep.size() == 0)
251 for (const char *q = s.begin(); q + sep.size() <= s.end(); q++) {
252 if (StringPiece(q, sep.size()) == sep) {
254 p = q + sep.size();
/external/iptables/extensions/
H A Dlibxt_set.c450 const char *sep)
454 printf(" %s%s-eq %llu", sep, name, c->value);
457 printf(" ! %s%s-eq %llu", sep, name, c->value);
460 printf(" %s%s-lt %llu", sep, name, c->value);
463 printf(" %s%s-gt %llu", sep, name, c->value);
470 const char *opt, const char *sep)
474 printf(" %sreturn-nomatch", sep);
476 printf(" ! %supdate-counters", sep);
478 printf(" ! %supdate-subcounters", sep);
479 set_printv3_counter(&info->packets, "packets", sep);
449 set_printv3_counter(const struct ip_set_counter_match *c, const char *name, const char *sep) argument
469 set_print_v3_matchinfo(const struct xt_set_info_match_v3 *info, const char *opt, const char *sep) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Dgenerate_event_interfaces.py87 relative_path_posix = relative_path_local.replace(os.sep, posixpath.sep)
H A Dcompute_interfaces_info_individual.py89 return relative_dir_local.replace(os.path.sep, posixpath.sep)
/external/chromium_org/chrome/common/extensions/
H A DPRESUBMIT.py38 os.path.join(path, filename)[len(LOCAL_PUBLIC_TEMPLATES_PATH + os.sep):]
52 if unix_name == _UnixName(template.split(os.sep)[-1]):
63 if not api_path.endswith(os.sep):
64 api_path += os.sep
65 filename = os.path.splitext(name)[0][len(api_path):].replace(os.sep, '_')
81 args.extend(_FindMatchingTemplates(name.split(os.sep)[-1],
/external/chromium_org/ppapi/
H A DPRESUBMIT.py34 name_parts = filename.split(os.sep)
56 name_parts = name.split(os.sep)
93 name_parts = name.split(os.sep)
126 name_parts = name.split(os.sep)
217 name_parts = name.split(os.sep)
260 name_parts = filename.split(os.sep)
/external/chromium_org/third_party/markdown/extensions/
H A Dfootnotes.py104 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/chromium_org/third_party/re2/re2/testing/
H A Dregexp_generator.cc244 vector<string> Split(const StringPiece& sep, const StringPiece& s) { argument
247 if (sep.size() == 0)
251 for (const char *q = s.begin(); q + sep.size() <= s.end(); q++) {
252 if (StringPiece(q, sep.size()) == sep) {
254 p = q + sep.size();
/external/e2fsprogs/misc/
H A Dlogsave.c120 char buffer[4096], *cp, *sep; local
138 sep = strchr(cp, '\001');
139 if (sep)
140 *sep = 0;
142 if (sep) {
143 cp = sep + 1;
/external/tcpdump/
H A Dprint-sctp.c99 const char *sep; local
158 sep = "\n\t";
160 sep = " (";
179 printf("%s%d) [Bad chunk length %u]", sep, chunkCount+1, chunkLength);
192 printf("%s%d) ", sep, chunkCount+1);
393 sep = ", (";
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dllex.c267 static void read_long_string (LexState *ls, SemInfo *seminfo, int sep) { argument
278 if (skip_sep(ls) == sep) {
297 seminfo->ts = luaX_newstring(ls, luaZ_buffer(ls->buff) + (2 + sep),
298 luaZ_bufflen(ls->buff) - 2*(2 + sep));
416 int sep = skip_sep(ls); local
418 if (sep >= 0) {
419 read_long_string(ls, NULL, sep); /* skip long comment */
430 int sep = skip_sep(ls); local
431 if (sep >= 0) {
432 read_long_string(ls, seminfo, sep);
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/stdio/
H A Dhist.c320 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 ?: " ");
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dutil.js48 function UTIL_BytesToHexWithSeparator(b, sep) {
50 var stride = 2 + (sep ? 1 : 0);
54 if (sep) hexrep[i * stride + 0] = sep;
58 return (sep ? hexrep.slice(1) : hexrep).join('');
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcpumap.c50 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')
/external/bison/src/
H A Dprint_graph.c118 char const *sep = ""; local
122 obstack_sgrow (oout, sep);
124 sep = ", ";
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Drender_servlet.py124 sep = '\n - '
125 logging.warning('Rendering %s:%s%s' % (path, sep, sep.join(warnings)))
/external/chromium_org/tools/telemetry/build/
H A Dupdate_docs.py29 assert not telemetry_dir.endswith(os.sep)
38 new_href = new_href.replace(os.sep, '/')
40 new_link_text = link_text.replace(telemetry_dir + os.sep, '')
48 #html = re.sub(telemetry_dir + os.sep, '', html)
/external/e2fsprogs/intl/
H A Dl10nflist.c113 argz_stringify__ (char *argz, size_t len, int sep) argument
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/
H A DClassPoolTail.java43 char sep = File.separatorChar;
44 String filename = directory + sep
45 + classname.replace('.', sep) + ".class";
54 char sep = File.separatorChar;
55 String filename = directory + sep
56 + classname.replace('.', sep) + ".class";
/external/chromium_org/third_party/leveldatabase/src/doc/bench/
H A Ddb_bench_tree_db.cc196 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/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dposix_platform_backend.py77 '(.*%s|^)%s(\s|$)' % (os.path.sep, application))
84 if os.path.sep not in application:
/external/stlport/src/
H A Dnum_get.cpp88 bool _STLP_CALL __get_fdigit_or_sep(wchar_t& c, wchar_t sep, argument
90 if (c == sep) {
/external/strace/
H A Ddesc.c318 const char *sep; local
362 for (j = 0, sep = "";; j++) {
366 tprints(sep);
368 sep = " ";
396 sep = "";
411 sep,
416 sep = ", ";
432 outptr += sprintf(outptr, "%sleft ", sep);
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dad_injection_browsertest.cc287 size_t sep = message.find(':'); local
289 if (sep == std::string::npos ||
290 !base::StringToInt(message.substr(sep + 1), &expected_change) ||
297 last_test_ = message.substr(0, sep);

Completed in 1461 milliseconds

1234567891011>>