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

1234567891011>>

/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/chromium_org/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/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/0.153/libebl/
H A Deblstrtab.c215 searchstring (struct Ebl_Strent **sep, struct Ebl_Strent *newstr) argument
218 if (*sep == NULL)
220 *sep = newstr;
221 return sep;
225 int cmpres = memcmp ((*sep)->reverse, newstr->reverse,
226 MIN ((*sep)->len, newstr->len) - 1);
229 return sep;
231 return searchstring (&(*sep)->left, newstr);
233 return searchstring (&(*sep)->right, newstr);
258 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.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_org/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/chromium_org/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem_mock.py39 sep = '/' variable in class:MockFileSystem
74 if self.sep in path:
75 return path.rsplit(self.sep, 1)
92 parts = path.split(self.sep, 1)
93 home_directory = self.sep + "Users" + self.sep + "mock"
96 return home_directory + self.sep + parts[1]
140 if not path.endswith(self.sep):
141 path += self.sep
143 dir_substrings = [self.sep
[all...]
/external/bison/build-aux/
H A Dcross-options.pl68 my $sep = '';
72 print $sep;
73 $sep = "\n";
/external/linux-tools-perf/perf-3.12.0/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/chromium_org/tools/
H A Dfind_depot_tools.py22 if i.rstrip(os.sep).endswith('depot_tools') and IsRealDepotTools(i):
27 sys.path.append(i.rstrip(os.sep))
/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-cl-function-level-linking.py32 sep = '.' if test.format == 'ninja' else '\\'
33 return 'obj\\%s%s%s' % (proj, sep, obj)
/external/lldb/examples/customization/import-python/
H A Dimportcmd.py22 if not (os.sep in args):
26 endofdir = args.rfind(os.sep)
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtestutil.h28 static UnicodeString hex(const UnicodeString& s, UChar sep);
/external/chromium_org/tools/gn/bin/
H A Dhelp_as_html.py31 command, sep, rest = line.partition(':')
41 output_line.extend([sep + cgi.escape(rest) + '</li>'])
54 name, sep, rest = line.partition(':')
57 cgi.escape(name + sep + rest) + '</a></h3>')
/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)
/external/chromium_org/tools/telemetry/telemetry/results/
H A Dbase_test_results_unittest.py57 sep = '*'
59 sep = '|'
60 print '%*s %s %*s' % (max_width, e, sep, max_width, r)
/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

Completed in 1025 milliseconds

1234567891011>>