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

123456789

/external/eigen/doc/snippets/
H A DIOFormat.cpp1 std::string sep = "\n----------------------------------------\n"; variable
10 std::cout << m1 << sep; variable
11 std::cout << m1.format(CommaInitFmt) << sep;
12 std::cout << m1.format(CleanFmt) << sep;
13 std::cout << m1.format(OctaveFmt) << sep;
14 std::cout << m1.format(HeavyFmt) << sep;
/external/v8/test/mjsunit/regress/
H A Dregress-2263.js29 var sep = { toString: function(){ throw { type: "toString" }}};
30 assertThrows("Array.prototype.join.call(obj, sep)", undefined, "length");
/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/google-breakpad/src/client/linux/minidump_writer/
H A Dproc_cpuinfo_reader.h77 char* sep = static_cast<char*>(my_memchr(line, ':', line_len)); local
78 if (sep == NULL)
83 const char* val = sep+1;
92 while (sep > line && my_isspace(sep[-1]))
93 sep--;
95 if (sep == line)
99 *sep = '\0';
/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/src/libebl/
H A Deblstrtab.c194 searchstring (struct Ebl_Strent **sep, struct Ebl_Strent *newstr) argument
197 if (*sep == NULL)
199 *sep = newstr;
200 return sep;
204 int cmpres = memcmp ((*sep)->reverse, newstr->reverse,
205 MIN ((*sep)->len, newstr->len) - 1);
208 return sep;
210 return searchstring (&(*sep)->left, newstr);
212 return searchstring (&(*sep)->right, newstr);
237 struct Ebl_Strent **sep local
[all...]
H A Deblgstrtab.c195 searchstring (struct Ebl_GStrent **sep, struct Ebl_GStrent *newstr) argument
200 if (*sep == NULL)
202 *sep = newstr;
203 return sep;
207 cmpres = memcmp ((*sep)->reverse, newstr->reverse,
208 (MIN ((*sep)->len, newstr->len) - 1) * (*sep)->width);
211 return sep;
213 return searchstring (&(*sep)->left, newstr);
215 return searchstring (&(*sep)
224 struct Ebl_GStrent **sep; local
[all...]
H A Deblwstrtab.c195 searchstring (struct Ebl_WStrent **sep, struct Ebl_WStrent *newstr) argument
200 if (*sep == NULL)
202 *sep = newstr;
203 return sep;
207 cmpres = wmemcmp ((*sep)->reverse, newstr->reverse,
208 MIN ((*sep)->len, newstr->len) - 1);
211 return sep;
213 return searchstring (&(*sep)->left, newstr);
215 return searchstring (&(*sep)->right, newstr);
224 struct Ebl_WStrent **sep; local
[all...]
/external/strace/
H A Dopen.c46 char sep; local
50 sep = ' ';
54 *p++ = sep;
59 sep = '|';
64 *p++ = sep;
69 sep = '|';
73 *p++ = sep;
H A Dexecve.c11 const char *sep; local
16 for (sep = ""; !abbrev(tcp) || n < max_strlen / 2; sep = ", ", ++n) {
25 tprints(sep);
30 tprintf("%s...", sep);
/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.java222 String sep = System.getProperty("line.separator");
226 buf.append(sep);
229 appendObject(buf, sep, "distributionPoint", distributionPoint.toString());
233 appendObject(buf, sep, "onlyContainsUserCerts", booleanToString(onlyContainsUserCerts));
237 appendObject(buf, sep, "onlyContainsCACerts", booleanToString(onlyContainsCACerts));
241 appendObject(buf, sep, "onlySomeReasons", onlySomeReasons.toString());
245 appendObject(buf, sep, "onlyContainsAttributeCerts", booleanToString(onlyContainsAttributeCerts));
249 appendObject(buf, sep, "indirectCRL", booleanToString(indirectCRL));
252 buf.append(sep);
256 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);
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
H A Dconverters.py19 def aslist(obj, sep=None, strip=True):
21 lst = obj.split(sep)
/external/google-breakpad/src/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/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/google-breakpad/src/common/android/testing/
H A Dmkdtemp.h75 char* sep = strrchr(path, '/'); local
76 if (sep != NULL) {
79 *sep = '\0'; // temporarily zero-terminate the dirname.
81 *sep = '/'; // restore full path.
/external/toybox/toys/pending/
H A Dlogger.c35 char *sep = strchr(TT.priority_arg, '.'); local
37 if (sep) {
38 *sep = '\0';
41 TT.priority_arg = sep+1;
/external/v8/tools/
H A Dmingw-generate-makefiles.sh58 sep = os.path.sep
65 return '\$(builddir)%slib.%s%s%s' % (sep, self.toolset, sep, self.alias)
66 return '\$(builddir)' + sep + self.alias
/external/bison/build-aux/
H A Dcross-options.pl68 my $sep = '';
72 print $sep;
73 $sep = "\n";
/external/linux-tools-perf/src/tools/perf/util/
H A Dintlist.c78 char *sep; local
82 long value = strtol(s, &sep, 10);
84 if (*sep != ',' && *sep != '\0')
89 s = sep + 1;
90 } while (*sep != '\0');
/external/lldb/examples/customization/import-python/
H A Dimportcmd.py22 if not (os.sep in args):
26 endofdir = args.rfind(os.sep)
/external/toybox/toys/lsb/
H A Dseq.c28 char *sep;
49 if (toys.optflags & FLAG_s) sep_str = TT.sep;
/external/icu/icu4c/source/test/intltest/
H A Dtestutil.h28 static UnicodeString hex(const UnicodeString& s, UChar sep);
/external/lldb/test/unittest2/
H A Dcompatibility.py20 start_list = os.path.abspath(start).split(os.path.sep)
21 path_list = os.path.abspath(path).split(os.path.sep)
50 start_list = os.path.abspath(start).split(os.path.sep)
51 path_list = os.path.abspath(path).split(os.path.sep)

Completed in 1129 milliseconds

123456789