HomeSort by relevance Sort by last modified time
    Searched refs:sep (Results 51 - 75 of 139) sorted by null

1 23 4 5 6

  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_file.c 241 char *sep = strrchr(tmpPathBuf1, '/'); local
243 if (sep == NULL || ((sep != NULL) && (sep == tmpPathBuf1)))
248 sep = " <empty>"; /* trace will show sep+1 */
253 *iteration = sep - tmpPathBuf1 + 1;
254 *sep = 0;
265 Trace("DRM_file_listOpen: dir %s, filter %s", tmpPathBuf1, sep+1);
  /ndk/sources/android/stlport/src/
num_get.cpp 88 bool _STLP_CALL __get_fdigit_or_sep(wchar_t& c, wchar_t sep,
90 if (c == sep) {
  /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...]
  /packages/apps/Email/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);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
EditingUtil.java 78 * @param sep characters which may separate words
137 InputConnection connection, String sep, Range range) {
138 if (connection == null || sep == null) {
149 while (start > 0 && !isWhitespace(before.charAt(start - 1), sep)) start--;
153 while (++end < after.length() && !isWhitespace(after.charAt(end), sep));
  /external/chromium/third_party/icu/source/i18n/
tridpars.cpp 554 int32_t sep = id.indexOf(TARGET_SEP); local
561 if (sep < 0) {
565 } else if (sep < var) {
567 if (sep > 0) {
568 id.extractBetween(0, sep, source);
571 id.extractBetween(++sep, var, target);
579 id.extractBetween(var, sep++, variant);
580 id.extractBetween(sep, id.length(), target);
  /external/clearsilver/util/
neo_str.c 214 NEOERR *string_array_split (ULIST **list, char *s, const char *sep,
222 if (sep[0] == '\0')
228 sl = strlen(sep);
229 p = (sl == 1) ? strchr (s, sep[0]) : strstr (s, sep);
236 *p = sep[0];
242 p = (sl == 1) ? strchr (f, sep[0]) : strstr (f, sep);
neo_str.h 71 NEOERR *string_array_split (ULIST **list, char *s, const char *sep,
  /external/icu4c/i18n/
tridpars.cpp 554 int32_t sep = id.indexOf(TARGET_SEP); local
561 if (sep < 0) {
565 } else if (sep < var) {
567 if (sep > 0) {
568 id.extractBetween(0, sep, source);
571 id.extractBetween(++sep, var, target);
579 id.extractBetween(var, sep++, variant);
580 id.extractBetween(sep, id.length(), target);
  /build/tools/
compare_fileslist.py 85 combo = input.split(os.path.sep)[1]
  /external/bison/src/
state.c 238 char const *sep = ""; local
242 fprintf (out, "%s%s", sep, symbols[k]->tag);
243 sep = ", ";
  /external/expat/xmlwf/
xmlwf.c 173 const XML_Char *sep; local
176 sep = tcsrchr(name, NSSEP);
177 if (sep) {
179 fputts(sep + 1, fp);
197 sep = tcsrchr(name, NSSEP);
199 if (sep) {
201 fputts(sep + 1, fp);
206 if (sep) {
219 const XML_Char *sep; local
222 sep = tcsrchr(name, NSSEP)
    [all...]
  /external/strace/
util.c 298 char *sep;
305 sep = "";
308 tprintf("%s%s", sep, xlat->str);
310 sep = "|";
317 tprintf("%s%#x", sep, flags);
    [all...]
  /external/webkit/WebKitTools/CodeCoverage/
regenerate-coverage-display 132 site = "%s.html" % name.replace(os.path.sep,'__')
212 escaped_dir = dir_name.replace(os.path.sep,'__')
229 escaped_name = file_name.replace(os.path.sep,'__')
  /development/testrunner/test_defs/
native_test.py 85 full_path = os.path.join(os.sep, "system", "bin", f)
  /external/openssl/apps/
dgst.c 77 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
546 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
608 else if (sep == 2)
624 if (sep && (i != 0))
speed.c 83 /* 11-Sep-92 Andrew Daviel Support for Silicon Graphics IRIX added */
2614 static char sep[]=":"; local
    [all...]
  /external/ppp/pppd/
tty.c 871 char *sep, *endp = NULL; local
878 sep = strchr(dest, ':');
879 if (sep != NULL)
880 port = strtol(sep+1, &endp, 10);
881 if (port < 0 || endp == sep+1 || sep == dest) {
885 *sep = 0;
891 *sep = ':';
896 *sep = ':';
    [all...]
  /external/v8/test/es5conform/
testcfg.py 86 root_path = root[len(self.root):].split(os.path.sep)
  /bionic/libc/regex/
engine.c 303 char *sep; /* end of string matched by subsubRE */ local
389 sep = slow(m, ssp, rest, ssub, esub);
390 if (sep == NULL || sep == ssp)
393 ssp = sep;
395 if (sep == NULL) {
397 sep = ssp;
400 assert(sep == rest); /* must exhaust substring */
401 assert(slow(m, ssp, sep, ssub, esub) == rest);
402 dp = dissect(m, ssp, sep, ssub, esub)
    [all...]
  /external/nist-sip/java/gov/nist/core/
NameValue.java 102 public void setSeparator(String sep) {
103 separator = sep;
  /external/webkit/WebKitTools/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 225 Text sep = mUndoXmlDocument.createTextNode("\n"); //$NON-NLS-1$ local
226 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/bluetooth/bluez/audio/
source.c 270 static void stream_setup_complete(struct avdtp *session, struct a2dp_sep *sep,
456 struct a2dp_sep *sep; local
486 error("Unable to select remote SEP capabilities");
490 sep = a2dp_get(session, rsep);
491 if (!sep) {
492 error("Unable to get a local sink SEP");
496 id = a2dp_config(source->session, sep, stream_setup_complete, caps,

Completed in 484 milliseconds

1 23 4 5 6