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

1 2 3 4 5 6 7 8 9

  /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)
  /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/bluetooth/bluez/audio/
a2dp.c 93 struct a2dp_sep *sep; member in struct:a2dp_setup
246 cb->config_cb(s->session, s->sep, stream, s->err,
306 cb->select_cb(s->session, s->sep, s->caps, cb->user_data);
359 struct a2dp_sep *sep = user_data; local
364 if (sep->suspend_timer) {
365 g_source_remove(sep->suspend_timer);
366 sep->suspend_timer = 0;
369 if (sep->session) {
370 avdtp_unref(sep->session);
371 sep->session = NULL
1079 struct a2dp_sep *sep = setup->sep; local
1582 struct a2dp_sep *sep; local
1724 struct a2dp_sep *sep = l->data; local
1926 struct a2dp_sep *sep = list->data; local
1953 struct a2dp_sep *sep; local
1979 struct a2dp_sep *sep; local
2340 const struct a2dp_sep *sep = data; local
    [all...]
avdtp.c 377 gboolean starting; /* only valid while sep state == OPEN */
451 struct avdtp_local_sep *sep,
745 struct avdtp_remote_sep *sep = l->data; local
747 if (sep->seid == seid)
748 return sep;
823 struct avdtp_local_sep *sep = stream->lsep; local
825 if (stream->close_int && sep->cfm && sep->cfm->close)
826 sep->cfm->close(stream->session, sep, stream, NULL
878 struct avdtp_local_sep *sep = stream->lsep; local
1127 struct avdtp_local_sep *sep = stream->lsep; local
1255 struct avdtp_local_sep *sep = l->data; local
1273 struct avdtp_remote_sep *sep = l->data; local
1370 struct avdtp_local_sep *sep = l->data; local
1387 struct avdtp_local_sep *sep = NULL; local
1439 struct avdtp_local_sep *sep; local
1468 struct avdtp_local_sep *sep; local
1582 struct avdtp_local_sep *sep = NULL; local
1633 struct avdtp_local_sep *sep; local
1681 struct avdtp_local_sep *sep; local
1741 struct avdtp_local_sep *sep; local
1790 struct avdtp_local_sep *sep; local
1846 struct avdtp_local_sep *sep; local
1890 struct avdtp_local_sep *sep; local
2737 struct avdtp_remote_sep *sep; local
2779 struct avdtp_remote_sep *sep; local
2820 struct avdtp_local_sep *sep = stream->lsep; local
2841 struct avdtp_local_sep *sep = stream->lsep; local
2858 struct avdtp_local_sep *sep = stream->lsep; local
2875 struct avdtp_local_sep *sep = stream->lsep; local
2888 struct avdtp_local_sep *sep = stream->lsep; local
2902 struct avdtp_local_sep *sep = stream->lsep; local
2918 struct avdtp_local_sep *sep = stream->lsep; local
3046 struct avdtp_local_sep *sep = stream ? stream->lsep : NULL; local
3269 struct avdtp_remote_sep *sep = l->data; local
3693 struct avdtp_local_sep *sep; local
    [all...]
a2dp.h 126 struct a2dp_sep *sep, GSList *caps,
128 typedef void (*a2dp_config_cb_t) (struct avdtp *session, struct a2dp_sep *sep,
142 void a2dp_remove_sep(struct a2dp_sep *sep);
144 struct a2dp_sep *a2dp_get(struct avdtp *session, struct avdtp_remote_sep *sep);
150 unsigned int a2dp_config(struct avdtp *session, struct a2dp_sep *sep,
153 unsigned int a2dp_resume(struct avdtp *session, struct a2dp_sep *sep,
155 unsigned int a2dp_suspend(struct avdtp *session, struct a2dp_sep *sep,
159 gboolean a2dp_sep_lock(struct a2dp_sep *sep, struct avdtp *session);
160 gboolean a2dp_sep_unlock(struct a2dp_sep *sep, struct avdtp *session);
161 gboolean a2dp_sep_get_lock(struct a2dp_sep *sep);
    [all...]
  /external/bouncycastle/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 212 String sep = System.getProperty("line.separator"); local
216 buf.append(sep);
219 appendObject(buf, sep, "distributionPoint", distributionPoint.toString());
223 appendObject(buf, sep, "onlyContainsUserCerts", booleanToString(onlyContainsUserCerts));
227 appendObject(buf, sep, "onlyContainsCACerts", booleanToString(onlyContainsCACerts));
231 appendObject(buf, sep, "onlySomeReasons", onlySomeReasons.toString());
235 appendObject(buf, sep, "onlyContainsAttributeCerts", booleanToString(onlyContainsAttributeCerts));
239 appendObject(buf, sep, "indirectCRL", booleanToString(indirectCRL));
242 buf.append(sep);
246 private void appendObject(StringBuffer buf, String sep, String name, String value
    [all...]
DistributionPointName.java 119 String sep = System.getProperty("line.separator"); local
122 buf.append(sep);
125 appendObject(buf, sep, "fullName", name.toString());
129 appendObject(buf, sep, "nameRelativeToCRLIssuer", name.toString());
132 buf.append(sep);
136 private void appendObject(StringBuffer buf, String sep, String name, String value)
143 buf.append(sep);
147 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/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/bluetooth/glib/gio/xdgmime/
xdgmimealias.c 138 char *sep; local
142 sep = strchr (line, ' ');
143 if (sep == NULL)
145 *(sep++) = '\000';
146 sep[strlen (sep) -1] = '\000';
154 list->aliases[list->n_aliases].mime_type = strdup (sep);
xdgmimeicon.c 137 char *sep; local
141 sep = strchr (line, ':');
142 if (sep == NULL)
144 *(sep++) = '\000';
145 sep[strlen (sep) -1] = '\000';
153 list->icons[list->n_icons].icon_name = strdup (sep);
  /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;
  /development/tools/emulator/system/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 1499 milliseconds

1 2 3 4 5 6 7 8 9