Searched defs:sep (Results 1 - 25 of 160) sorted by relevance

1234567

/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/chromium_org/third_party/icu/source/test/intltest/
H A Dtestutil.cpp40 UnicodeString TestUtility::hex(const UnicodeString& s, UChar sep) { argument
47 result.append(sep);
/external/icu/icu4c/source/test/intltest/
H A Dtestutil.cpp40 UnicodeString TestUtility::hex(const UnicodeString& s, UChar sep) { argument
47 result.append(sep);
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-list.c46 char *sep = strchr(argv[i], ':'), *s; local
49 if (sep == NULL) {
53 sep_idx = sep - argv[i];
/external/chromium_org/third_party/re2/re2/testing/
H A Ddump.cc134 string sep; local
138 s->append(sep);
143 sep = " ";
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/regex-re2/re2/testing/
H A Ddump.cc134 string sep; local
138 s->append(sep);
143 sep = " ";
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
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 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...]
/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/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_getenv.c43 const char *sep; local
45 sep = SDL_strchr(variable, '=');
46 if ( sep == NULL ) {
59 value = SDL_envmem + (sep - variable);
/external/bison/src/
H A Dprint_graph.c118 char const *sep = ""; local
122 obstack_sgrow (oout, sep);
124 sep = ", ";
/external/chromium_org/base/test/expectations/
H A Dexpectation.cc78 size_t sep = modifier.find('-'); local
79 if (sep == std::string::npos) {
83 out_platform->name = modifier.substr(0, sep).as_string();
84 out_platform->variant = modifier.substr(sep + 1).as_string();
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dfiles.py12 self.relative_dir = self.abs_file(os.curdir) + os.sep
65 markers = ['.zip'+os.sep, '.egg'+os.sep]
100 if fpath[len(d)] == os.sep:
122 def sep(s): function
123 """Find the path separator used in this string, or os.sep if none."""
128 the_sep = os.sep
166 pattern_sep = sep(pattern)
181 result_sep = sep(result)
/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');
H A Dstrlist.c120 char *sep; local
123 while ((sep = strchr(s, ',')) != NULL) {
124 *sep = '\0';
126 *sep = ',';
129 s = sep + 1;
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dltablib.c97 const char *sep = luaL_optlstring(L, 2, "", &lsep); local
104 luaL_addlstring(&b, sep, lsep);
/external/fio/
H A Dioengines.c578 char *sep; local
590 sep = strchr(engine, ',');
591 if (sep) {
592 *sep = 0;
593 sep++;
605 ret = show_cmd_help(td.io_ops->options, sep);
/external/iproute2/tc/
H A Df_flow.c65 char *s, *sep; local
72 sep = strchr(s, ',');
73 if (sep)
74 *sep = '\0';
87 s = sep ? sep + 1 : NULL;
299 char *sep = ""; local
304 fprintf(f, "%s%s", sep, flow_keys[i]);
305 sep = ",";
/external/iptables/extensions/
H A Dlibxt_addrtype.c154 const char *sep = ""; local
159 printf("%s%s", sep, rtn_names[i]);
160 sep = ",";
/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/linux-tools-perf/perf-3.12.0/tools/perf/ui/tui/
H A Dutil.c82 const char *sep = strchr(t, '\n'); local
84 if (sep == NULL)
85 sep = strchr(t, '\0');
86 len = sep - t;
90 if (*sep == '\0')
92 t = sep + 1;
163 const char *sep = strchr(t, '\n'); local
166 if (sep == NULL)
167 sep = strchr(t, '\0');
168 len = sep
[all...]

Completed in 495 milliseconds

1234567