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

1 2 3 4 5 6 7 8 91011

  /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/webkit/Tools/Scripts/webkitpy/common/system/
ospath.py 35 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)
filesystem_mock.py 57 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/
FileUtils.java 121 char sep = File.separatorChar; local
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; local
151 path = path.replace('/', sep).replace('\\', sep)
    [all...]
  /external/iptables/extensions/
libxt_state.c 78 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/
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/elfutils/libebl/
eblstrtab.c 210 searchstring (struct Ebl_Strent **sep, struct Ebl_Strent *newstr)
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 = searchstring (&st->root, newstr) local
    [all...]
eblgstrtab.c 216 searchstring (struct Ebl_GStrent **sep, struct Ebl_GStrent *newstr)
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)->right, newstr)
245 struct Ebl_GStrent **sep; local
    [all...]
eblwstrtab.c 216 searchstring (struct Ebl_WStrent **sep, struct Ebl_WStrent *newstr)
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/
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...]
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);
  /build/tools/
fileslist.py 28 base = len(root[:root.rfind(os.path.sep)])
34 get_file_size(os.path.sep.join((dir, f))),
35 os.path.sep.join((relative, f)),
  /external/linux-tools-perf/
builtin-list.c 41 char *sep = strchr(argv[i], ':'), *s; local
44 if (sep == NULL) {
48 sep_idx = sep - argv[i];
  /external/chromium/testing/gtest/scripts/
gen_gtest_pred_impl.py 189 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/
gen_gtest_pred_impl.py 189 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/libvpx/libvpx/third_party/googletest/src/scripts/
gen_gtest_pred_impl.py 189 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/
gen_gtest_pred_impl.py 189 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/icu4c/test/intltest/
testutil.h 28 static UnicodeString hex(const UnicodeString& s, UChar sep);
  /external/bison/build-aux/
cross-options.pl 68 my $sep = '';
72 print $sep;
73 $sep = "\n";
  /external/linux-tools-perf/util/ui/
util.c 79 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;
  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
envset.cmd 55 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/
Declarator.java 102 public static String astToClassName(ASTList name, char sep) {
107 astToClassName(sbuf, name, sep);
112 char sep) {
118 astToClassName(sbuf, (ASTList)h, sep);
124 sbuf.append(sep);
  /external/qemu/
qemu-error.c 165 const char *sep = ""; local
171 sep = " ";
177 error_printf("%s%s", sep, argp[i]);
178 sep = " ";
190 error_printf("%s", sep);

Completed in 1131 milliseconds

1 2 3 4 5 6 7 8 91011