HomeSort by relevance Sort by last modified time
    Searched refs:sep (Results 1 - 25 of 524) 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/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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bgenlocations.py 53 if BGENDIR[-1] != os.sep:
54 BGENDIR = BGENDIR + os.sep
55 if INCLUDEDIR[-1] != os.sep:
56 INCLUDEDIR = INCLUDEDIR + os.sep
57 if TOOLBOXDIR[-1] != os.sep:
58 TOOLBOXDIR = TOOLBOXDIR + os.sep
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_print.py 16 # sep, end, and file
22 lambda args, sep, end, file: print(*args),
24 lambda args, sep, end, file: print(file=file, *args),
26 lambda args, sep, end, file: print(end=end, *args),
28 lambda args, sep, end, file: print(end=end, file=file, *args),
30 lambda args, sep, end, file: print(sep=sep, *args),
32 lambda args, sep, end, file: print(sep=sep, file=file, *args)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_print.py 16 # sep, end, and file
22 lambda args, sep, end, file: print(*args),
24 lambda args, sep, end, file: print(file=file, *args),
26 lambda args, sep, end, file: print(end=end, *args),
28 lambda args, sep, end, file: print(end=end, file=file, *args),
30 lambda args, sep, end, file: print(sep=sep, *args),
32 lambda args, sep, end, file: print(sep=sep, file=file, *args)
    [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/chromium_org/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/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/chromium_org/third_party/icu/source/test/intltest/
testutil.h 28 static UnicodeString hex(const UnicodeString& s, UChar sep);
  /external/icu4c/test/intltest/
testutil.h 28 static UnicodeString hex(const UnicodeString& s, UChar sep);
  /external/chromium_org/v8/tools/
mingw-generate-makefiles.sh 58 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/
filesystem_mock.py 39 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 + d + self.sep for d in dirs_to_skip
    [all...]
  /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;

Completed in 1389 milliseconds

1 2 3 4 5 6 7 8 91011>>