HomeSort by relevance Sort by last modified time
    Searched refs:sep (Results 101 - 125 of 178) sorted by null

1 2 3 45 6 7 8

  /external/webkit/Tools/Scripts/webkitpy/common/system/
filesystem.py 50 self._sep = os.sep
55 sep = property(_get_sep, doc="pathname separator") variable in class:FileSystem
267 """Return (dirname + os.sep + basename, '.' + ext)"""
  /external/webkit/Tools/wx/build/
build_utils.py 54 subdir_pattern = os.sep + '*'
56 adir = root + subdir + os.sep + pattern
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationToggle.java 221 Text sep = mUndoXmlDocument.createTextNode("\n"); //$NON-NLS-1$ local
222 mUndoXmlParent.insertBefore(sep, null); // insert separator before end tag
  /system/core/toolbox/
ps.c 17 static char *nexttoksep(char **strp, char *sep)
19 char *p = strsep(strp,sep);
  /external/icu4c/i18n/
locdspnm.cpp 271 UnicodeString sep; member in class:LocaleDisplayNamesImpl
319 langData.getNoFallback("localeDisplayPattern", "separator", sep);
320 if (sep.isBogus()) {
321 sep = UnicodeString(", ", -1, US_INV);
444 buffer.append(sep);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string2.h     [all...]
  /system/core/sh/
eval.c 763 char sep = 0; local
766 if (sep != 0)
767 outc(sep, &errout);
769 sep = ' ';
772 if (sep != 0)
773 outc(sep, &errout);
775 sep = ' ';
expand.c 828 char sep; local
880 sep = ifsval()[0];
882 sep = ' ';
885 if (*ap && sep)
886 STPUTC(sep, expdest);
  /external/tcpdump/
print-ip.c 201 const char *sep = ""; local
206 printf("%s", sep);
207 sep = ",";
  /external/bluetooth/glib/gio/xdgmime/
xdgmime.c 724 char *sep; local
726 sep = strchr (mime_a, '/');
728 if (sep && strncmp (mime_a, mime_b, sep - mime_a + 1) == 0)
  /external/v8/test/mozilla/
testcfg.py 106 root_path = root[len(self.root):].split(os.path.sep)
  /external/v8/test/test262/
testcfg.py 87 root_path = root[len(self.root):].split(os.path.sep)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DynamicContextMenu.java 144 Separator sep = new Separator(); local
145 sep.setId("-dyn-gle-sep"); //$NON-NLS-1$
146 mMenuManager.insertBefore(endId, sep);
147 endId = sep.getId();
  /sdk/eclipse/scripts/
collect_sources_for_sdk.py 117 pkg = pkg.replace(".", os.path.sep) # e.g. android.view => android/view
  /external/icu4c/tools/tzcode/
icuzdump.cpp 123 void setLineSeparator(const char* sep) {
124 linesep = sep;
311 << "\t-l <sep> : New line code type used in file outputs. CR or LF (default)"
  /external/llvm/utils/lit/lit/
TestFormats.py 179 if suffix.startswith(os.sep):
182 path_in_suite + tuple(suffix.split(os.sep)),
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 381 * @param sep
384 public void setSeparator(String sep) {
385 separator = sep;
  /external/openssl/crypto/evp/
evp_test.c 127 static unsigned char *ustrsep(char **p,const char *sep)
128 { return (unsigned char *)sstrsep(p,sep); }
  /external/chromium/base/
string_util.cc 810 typename STR::value_type sep) {
819 result += sep;
826 std::string JoinString(const std::vector<std::string>& parts, char sep) {
827 return JoinStringT(parts, sep);
830 string16 JoinString(const std::vector<string16>& parts, char16 sep) {
831 return JoinStringT(parts, sep);
    [all...]
  /external/chromium/net/ftp/
ftp_network_transaction.cc 129 char sep = *(++ptr); local
130 if (!sep || isdigit(sep) || *(++ptr) != sep || *(++ptr) != sep)
139 if (*ptr != sep)
    [all...]
  /external/icu4c/tools/toolutil/
package.cpp 284 char *sep; local
291 sep=strchr(filename, 0)-strlen(name);
292 while((sep=strchr(sep, U_FILE_SEP_CHAR))!=NULL) {
293 if(sep!=filename) {
294 *sep=0; // truncate temporarily
301 *sep++=U_FILE_SEP_CHAR; // restore file separator character
    [all...]
  /external/bluetooth/bluez/audio/
sink.c 289 static void stream_setup_complete(struct avdtp *session, struct a2dp_sep *sep,
332 static void select_complete(struct avdtp *session, struct a2dp_sep *sep,
342 id = a2dp_config(session, sep, stream_setup_complete, caps, sink);
source.c 242 static void stream_setup_complete(struct avdtp *session, struct a2dp_sep *sep,
285 static void select_complete(struct avdtp *session, struct a2dp_sep *sep,
299 id = a2dp_config(session, sep, stream_setup_complete, caps, source);
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 247 const char* nl, const char *sep);
427 const char* nl, const char *sep) {
434 Out << nl << sep << "ranges of symbol values:";
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_runner.py 223 self.LAYOUT_TESTS_DIRECTORY = "LayoutTests" + self._fs.sep
443 index = test_file.rfind(self._fs.sep + self.LAYOUT_TESTS_DIRECTORY)
446 test_file_parts = test_file.split(self._fs.sep, 1)
456 and test_file.find(self._fs.sep) >= 0):
457 test_file_parts = test_file.split(self._fs.sep, 1)
475 split_path = test_file.split(self._port._filesystem.sep)
    [all...]

Completed in 1668 milliseconds

1 2 3 45 6 7 8