HomeSort by relevance Sort by last modified time
    Searched defs:sep (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /external/eigen/doc/snippets/
IOFormat.cpp 1 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/
regress-2263.js 29 var sep = { toString: function(){ throw { type: "toString" }}};
30 assertThrows("Array.prototype.join.call(obj, sep)", undefined, "length");
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-list.c 46 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/
dump.cc 134 string sep; local
138 s->append(sep);
143 sep = " ";
  /external/iproute2/lib/
ipx_pton.c 67 char *sep = (char *)src; local
72 while(*sep && (*sep != '.'))
73 sep++;
75 if (*sep != '.')
86 if (ipx_getnode(addr->ipx_node, sep + 1))
  /external/regex-re2/re2/testing/
dump.cc 134 string sep; local
138 s->append(sep);
143 sep = " ";
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiSeparatorAttributeNode.java 87 Label sep = toolkit.createSeparator(row, SWT.HORIZONTAL); local
90 sep.setLayoutData(gd);
95 sep = toolkit.createSeparator(row, SWT.HORIZONTAL);
96 sep.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
  /device/generic/goldfish/camera/
EmulatedQemuCamera.cpp 95 char* sep = strchr(first_dim, 'x'); local
96 if (sep == NULL) {
102 *sep = '\0';
104 const int y = atoi(sep + 1);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
CRLDistPoint.java 87 String sep = System.getProperty("line.separator"); local
90 buf.append(sep);
96 buf.append(sep);
GeneralNames.java 95 String sep = System.getProperty("line.separator"); local
98 buf.append(sep);
104 buf.append(sep);
DistributionPointName.java 108 String sep = System.getProperty("line.separator"); local
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)
132 buf.append(sep);
136 buf.append(sep);
DistributionPoint.java 124 String sep = System.getProperty("line.separator"); local
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)
152 buf.append(sep);
156 buf.append(sep);
IssuingDistributionPoint.java 222 String sep = System.getProperty("line.separator"); local
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, String name, String value
    [all...]
  /external/chromium_org/base/test/expectations/
expectation.cc 78 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();
  /ndk/sources/host-tools/make-3.81/w32/
pathstuff.c 134 char sep; /* what flavor of separator used in old path */ local
187 sep = *etok;
212 *etok = sep;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_import.py 15 from os.path import dirname, join, exists, sep namespace
96 for ext in [".py", sep, ".pyc", ".so", ".sl", ".pyd"]:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_import.py 15 from os.path import dirname, join, exists, sep namespace
96 for ext in [".py", sep, ".pyc", ".so", ".sl", ".pyd"]:
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
humanize_number.c 50 const char *prefixes, *sep; local
111 sep = "";
113 sep = " ";
154 sep, SCALE2PREFIX(i), suffix);
158 sep, SCALE2PREFIX(i), suffix);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
intlist.c 78 char *sep; local
82 long value = strtol(s, &sep, 10);
84 if (*sep != ',' && *sep != '\0')
89 s = sep + 1;
90 } while (*sep != '\0');
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_getenv.c 43 const char *sep; local
45 sep = SDL_strchr(variable, '=');
46 if ( sep == NULL ) {
59 value = SDL_envmem + (sep - variable);
  /ndk/sources/host-tools/gdb-stub/
gdb-stub.c 82 char *envbuf, *sep, *resbuf, *cmdbuf; local
106 (sep = strrchr(cmdbuf, '\\'))
108 *(sep+1) = 0;
110 dbg_printf("sep: %s\n", cmdbuf);
129 *(sep+1) = 0;
136 *(sep+1) = 0;
  /external/bison/src/
print_graph.c 118 char const *sep = ""; local
122 obstack_sgrow (oout, sep);
124 sep = ", ";
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
files.py 12 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/iproute2/tc/
f_flow.c 65 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/linux-tools-perf/perf-3.12.0/tools/perf/ui/tui/
util.c 82 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 - t
    [all...]

Completed in 9171 milliseconds

1 2 3 4 5 6 7 8 910