Searched refs:sep (Results 1 - 25 of 148) sorted by relevance

123456

/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dospath.py35 def relpath(path, start_path, os_path_abspath=None, sep=None):
47 sep: Path separator. Defaults to os.path.sep
52 sep = sep or os.sep
59 # slashes to the preferred slash os.sep.
72 elif rel_path[0] == sep:
76 rel_path = rel_path.lstrip(sep)
H A Dfilesystem_mock.py57 sep = property(_get_sep, doc="pathname separator") variable in class:MockFileSystem
63 return path.rsplit(self.sep, 1)
110 if not path.endswith(self.sep):
111 path += self.sep
113 dir_substrings = [self.sep + d + self.sep for d in dirs_to_skip]
140 return path.startswith(self.sep)
164 return re.sub(re.escape(os.path.sep), self.sep, os.path.join(*comps))
170 if not path.endswith(self.sep)
[all...]
/external/ant-glob/src/org/apache/tools/ant/util/
H A DFileUtils.java121 char sep = File.separatorChar;
122 filename = filename.replace('/', sep).replace('\\', sep);
125 return (c == sep);
127 if (c == sep) {
129 if (!(ON_DOS && len > 4 && filename.charAt(1) == sep)) {
133 int nextsep = filename.indexOf(sep, 2);
138 && filename.length() > 2 && filename.charAt(2) == sep)
150 char sep = File.separatorChar;
151 path = path.replace('/', sep)
[all...]
/external/iptables/extensions/
H A Dlibxt_state.c78 const char *sep = ""; local
81 printf("%sINVALID", sep);
82 sep = ",";
85 printf("%sNEW", sep);
86 sep = ",";
89 printf("%sRELATED", sep);
90 sep = ",";
93 printf("%sESTABLISHED", sep);
94 sep = ",";
97 printf("%sUNTRACKED", sep);
[all...]
/external/iproute2/lib/
H A Dipx_pton.c67 char *sep = (char *)src; local
72 while(*sep && (*sep != '.'))
73 sep++;
75 if (*sep != '.')
86 if (ipx_getnode(addr->ipx_node, sep + 1))
/external/elfutils/libebl/
H A Deblstrtab.c210 searchstring (struct Ebl_Strent **sep, struct Ebl_Strent *newstr) argument
213 if (*sep == NULL)
215 *sep = newstr;
216 return sep;
220 int cmpres = memcmp ((*sep)->reverse, newstr->reverse,
221 MIN ((*sep)->len, newstr->len) - 1);
224 return sep;
226 return searchstring (&(*sep)->left, newstr);
228 return searchstring (&(*sep)->right, newstr);
253 struct Ebl_Strent **sep local
[all...]
H A Deblgstrtab.c216 searchstring (struct Ebl_GStrent **sep, struct Ebl_GStrent *newstr) argument
221 if (*sep == NULL)
223 *sep = newstr;
224 return sep;
228 cmpres = memcmp ((*sep)->reverse, newstr->reverse,
229 (MIN ((*sep)->len, newstr->len) - 1) * (*sep)->width);
232 return sep;
234 return searchstring (&(*sep)->left, newstr);
236 return searchstring (&(*sep)
245 struct Ebl_GStrent **sep; local
[all...]
H A Deblwstrtab.c216 searchstring (struct Ebl_WStrent **sep, struct Ebl_WStrent *newstr) argument
221 if (*sep == NULL)
223 *sep = newstr;
224 return sep;
228 cmpres = wmemcmp ((*sep)->reverse, newstr->reverse,
229 MIN ((*sep)->len, newstr->len) - 1);
232 return sep;
234 return searchstring (&(*sep)->left, newstr);
236 return searchstring (&(*sep)->right, newstr);
245 struct Ebl_WStrent **sep; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DDistributionPoint.java124 String sep = System.getProperty("line.separator");
127 buf.append(sep);
130 appendObject(buf, sep, "distributionPoint", distributionPoint.toString());
134 appendObject(buf, sep, "reasons", reasons.toString());
138 appendObject(buf, sep, "cRLIssuer", cRLIssuer.toString());
141 buf.append(sep);
145 private void appendObject(StringBuffer buf, String sep, String name, String value) argument
152 buf.append(sep);
156 buf.append(sep);
H A DIssuingDistributionPoint.java230 String sep = System.getProperty("line.separator");
234 buf.append(sep);
237 appendObject(buf, sep, "distributionPoint", distributionPoint.toString());
241 appendObject(buf, sep, "onlyContainsUserCerts", booleanToString(onlyContainsUserCerts));
245 appendObject(buf, sep, "onlyContainsCACerts", booleanToString(onlyContainsCACerts));
249 appendObject(buf, sep, "onlySomeReasons", onlySomeReasons.toString());
253 appendObject(buf, sep, "onlyContainsAttributeCerts", booleanToString(onlyContainsAttributeCerts));
257 appendObject(buf, sep, "indirectCRL", booleanToString(indirectCRL));
260 buf.append(sep);
264 private void appendObject(StringBuffer buf, String sep, Strin argument
[all...]
H A DDistributionPointName.java108 String sep = System.getProperty("line.separator");
111 buf.append(sep);
114 appendObject(buf, sep, "fullName", name.toString());
118 appendObject(buf, sep, "nameRelativeToCRLIssuer", name.toString());
121 buf.append(sep);
125 private void appendObject(StringBuffer buf, String sep, String name, String value) argument
132 buf.append(sep);
136 buf.append(sep);
H A DCRLDistPoint.java87 String sep = System.getProperty("line.separator");
90 buf.append(sep);
96 buf.append(sep);
H A DGeneralNames.java89 String sep = System.getProperty("line.separator");
92 buf.append(sep);
98 buf.append(sep);
/external/linux-tools-perf/
H A Dbuiltin-list.c41 char *sep = strchr(argv[i], ':'), *s; local
44 if (sep == NULL) {
48 sep_idx = sep - argv[i];
/external/chromium/testing/gtest/scripts/
H A Dgen_gtest_pred_impl.py189 def Iter(n, format, sep=''):
197 Iter(3, 'v%s', sep=', ') returns 'v1, v2, v3'.
202 return sep.join([format % (spec_count * (i,)) for i in OneTo(n)])
211 'vs' : Iter(n, 'v%s', sep=', '),
212 'vts' : Iter(n, '#v%s', sep=', '),
246 << e%s""", sep=' << ", "')
417 'es' : Iter(n, 'e%s', sep=', '),
418 'vs' : Iter(n, 'v%s', sep=', '),
419 'vts' : Iter(n, '#v%s', sep=', '),
420 'tvs' : Iter(n, 'T%s v%s', sep
[all...]
/external/gtest/scripts/
H A Dgen_gtest_pred_impl.py189 def Iter(n, format, sep=''):
197 Iter(3, 'v%s', sep=', ') returns 'v1, v2, v3'.
202 return sep.join([format % (spec_count * (i,)) for i in OneTo(n)])
211 'vs' : Iter(n, 'v%s', sep=', '),
212 'vts' : Iter(n, '#v%s', sep=', '),
246 << e%s""", sep=' << ", "')
417 'es' : Iter(n, 'e%s', sep=', '),
418 'vs' : Iter(n, 'v%s', sep=', '),
419 'vts' : Iter(n, '#v%s', sep=', '),
420 'tvs' : Iter(n, 'T%s v%s', sep
[all...]
/external/protobuf/gtest/scripts/
H A Dgen_gtest_pred_impl.py189 def Iter(n, format, sep=''):
197 Iter(3, 'v%s', sep=', ') returns 'v1, v2, v3'.
202 return sep.join([format % (spec_count * (i,)) for i in OneTo(n)])
211 'vs' : Iter(n, 'v%s', sep=', '),
212 'vts' : Iter(n, '#v%s', sep=', '),
247 << e%s""", sep=' << ", "')
419 'es' : Iter(n, 'e%s', sep=', '),
420 'vs' : Iter(n, 'v%s', sep=', '),
421 'vts' : Iter(n, '#v%s', sep=', '),
422 'tvs' : Iter(n, 'T%s v%s', sep
[all...]
/external/linux-tools-perf/util/ui/
H A Dutil.c79 const char *sep = strchr(t, '\n'); local
82 if (sep == NULL)
83 sep = strchr(t, '\0');
84 len = sep - t;
88 if (*sep == '\0')
90 t = sep + 1;
/external/icu4c/test/intltest/
H A Dtestutil.h28 static UnicodeString hex(const UnicodeString& s, UChar sep);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Denvset.cmd55 sep = ' '
60 sep = envar
64 sep = ''
69 when mode=',' then sep = ','
95 addval: procedure expose sep equal orig expand newval mode env
129 else newval = newval || sep || expvar
/external/javassist/src/main/javassist/compiler/ast/
H A DDeclarator.java102 public static String astToClassName(ASTList name, char sep) { argument
107 astToClassName(sbuf, name, sep);
112 char sep) {
118 astToClassName(sbuf, (ASTList)h, sep);
124 sbuf.append(sep);
111 astToClassName(StringBuffer sbuf, ASTList name, char sep) argument
/external/qemu/
H A Dqemu-error.c165 const char *sep = ""; local
171 sep = " ";
177 error_printf("%s%s", sep, argp[i]);
178 sep = " ";
190 error_printf("%s", sep);
/external/dbus/dbus/
H A Ddbus-sysdeps-util-win.c714 int sep; local
721 sep = _dbus_string_get_length (filename);
722 if (sep == 0)
725 while (sep > 0 &&
726 (_dbus_string_get_byte (filename, sep - 1) == '/' ||
727 _dbus_string_get_byte (filename, sep - 1) == '\\'))
728 --sep;
730 _dbus_assert (sep >= 0);
732 if (sep == 0 ||
733 (sep
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DShell.java25 String sep; field in class:Shell
58 s.sep = sep;
225 (i == args.length - 1 ? "\n" : sep));
236 pw.print(sep);
373 sep = args[0];
533 s.sep = "|";
547 s.sep = args[i];
667 String sep = "";
672 sb.append(sep
[all...]
/external/oprofile/libutil++/
H A Dstring_manip.cpp54 vector<string> separate_token(string const & str, char sep) argument
62 if (pos < str.length() - 1 && str[pos + 1] == sep) {
64 next += sep;
68 } else if (ch == sep) {

Completed in 508 milliseconds

123456