/external/stlport/src/ |
num_get.cpp | 88 bool _STLP_CALL __get_fdigit_or_sep(wchar_t& c, wchar_t sep, 90 if (c == sep) {
|
/ndk/sources/cxx-stl/stlport/src/ |
num_get.cpp | 88 bool _STLP_CALL __get_fdigit_or_sep(wchar_t& c, wchar_t sep, 90 if (c == sep) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
UserString.py | 105 def partition(self, sep): 106 return self.data.partition(sep) 115 def rpartition(self, sep): 116 return self.data.rpartition(sep) 118 def split(self, sep=None, maxsplit=-1): 119 return self.data.split(sep, maxsplit) 120 def rsplit(self, sep=None, maxsplit=-1): 121 return self.data.rsplit(sep, maxsplit)
|
imputil.py | 454 sep = '/' 457 sep = '\\' 460 sep = '\\' 463 sep = '\\' 469 def join(a, b, sep=sep): 473 if lastchar == '/' or lastchar == sep: 475 return a + sep + b
|
/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/ |
UserString.py | 105 def partition(self, sep): 106 return self.data.partition(sep) 115 def rpartition(self, sep): 116 return self.data.rpartition(sep) 118 def split(self, sep=None, maxsplit=-1): 119 return self.data.split(sep, maxsplit) 120 def rsplit(self, sep=None, maxsplit=-1): 121 return self.data.rsplit(sep, maxsplit)
|
imputil.py | 454 sep = '/' 457 sep = '\\' 460 sep = '\\' 463 sep = '\\' 469 def join(a, b, sep=sep): 473 if lastchar == '/' or lastchar == sep: 475 return a + sep + b
|
/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"]:
|
/external/tcpdump/ |
print-ospf6.c | 120 register char sep = ' '; local 124 printf("%c%s", sep, bp->str); 125 sep = '/'; 502 register char sep; local 548 sep = ' '; 551 printf("%cI", sep); 552 sep = '/'; 555 printf("%cM", sep); 556 sep = '/'; 559 printf("%cMS", sep); [all...] |
/external/chromium_org/build/linux/unbundle/ |
remove_bundled_libraries.py | 41 if 'third_party' not in root_relpath.split(os.sep):
|
/external/chromium_org/chrome/third_party/mozilla_security_manager/ |
nsNSSCertHelper.h | 78 std::string ProcessKeyUsageBitString(SECItem* bitstring, char sep);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
layout_test_finder.py | 61 if path.startswith(self.LAYOUT_TESTS_DIRECTORY + self._filesystem.sep): 62 return path[len(self.LAYOUT_TESTS_DIRECTORY + self._filesystem.sep):] 70 if test_path_separator != fs.sep: 71 filename = filename.replace(test_path_separator, fs.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/util/ |
color.c | 96 int sep = 0; local 102 sep++; 105 if (sep++) 115 if (sep++)
|
sort.c | 115 char *sep = bf; local 118 sep = strchr(sep, *field_sep); 119 if (sep == NULL) 121 *sep = '.';
|
/external/oprofile/libutil++/ |
string_manip.h | 39 * @param sep the separator_char 42 * separated by the sep character, sep char can be escaped 43 * by '\\' to specify a sep char in a token, '\\' not followed 44 * by a sep is taken as it e.g. "\,\a" --> ",\a" 46 std::vector<std::string> separate_token(std::string const & str, char sep);
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/ |
DecoderUtil.java | 194 String sep = body.substring(previousEnd, begin);
local 198 sb.append(sep);
201 if (!previousWasEncoded || !CharsetUtil.isWhitespace(sep)) {
202 sb.append(sep);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_main.py | 108 sep = re.escape(os.sep) 110 stderr, r"No changes to .*/__init__\.py".replace("/", sep)) 112 stderr, r"No changes to .*/trivial\.py".replace("/", sep))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_cookie.py | 36 self.assertEqual(C.output(sep='\n'), case['output'])
|
test_generators.py | 1124 sep = "+" + "-+" * n 1125 print sep 1130 print sep [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_main.py | 108 sep = re.escape(os.sep) 110 stderr, r"No changes to .*/__init__\.py".replace("/", sep)) 112 stderr, r"No changes to .*/trivial\.py".replace("/", sep))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_cookie.py | 36 self.assertEqual(C.output(sep='\n'), case['output'])
|
test_generators.py | 1124 sep = "+" + "-+" * n 1125 print sep 1130 print sep [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
lib.c | 184 int sep, c; local 191 if ((sep = **RS) == 0) { 192 sep = '\n'; 199 for (; (c=getc(inf)) != sep && c != EOF; ) { 205 if (**RS == sep || c == EOF) 259 char *r, *fr, sep; local 279 } else if ((sep = *inputFS) == ' ') { /* default whitespace */ 298 } else if ((sep = *inputFS) == 0) { /* new: FS="" => 1 char/field */ 328 while (*r != sep && *r != rtest && *r != '\0') /* \n is always a separator */
|
/external/chromium_org/sandbox/win/src/ |
sandbox_nt_util.cc | 430 wchar_t* sep = NULL; local 436 sep = &module_path->Buffer[ix]; 442 if ((ix == start_pos) && sep) 446 if (!sep) { 447 sep = &module_path->Buffer[-1]; 465 NTSTATUS ret = CopyData(out_string->Buffer, &sep[1], out_string->Length);
|