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

1 2 34 5 6 7 8 9

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ConstraintManager.h 59 const char *sep) = 0;
  /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/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);
  /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/bluetooth/bluez/audio/
media.c 71 struct a2dp_sep *sep; member in struct:media_endpoint
119 if (endpoint->sep)
120 a2dp_remove_sep(endpoint->sep);
211 endpoint->sep = a2dp_add_sep(&adapter->src,
214 if (endpoint->sep == NULL)
217 endpoint->sep = a2dp_add_sep(&adapter->src,
220 if (endpoint->sep == NULL)
697 return endpoint->sep;
transport.c 233 struct a2dp_sep *sep = media_endpoint_get_sep(transport->endpoint); local
244 stream = a2dp_sep_get_stream(sep);
281 struct a2dp_sep *sep = media_endpoint_get_sep(endpoint); local
292 transport->in_use = a2dp_sep_lock(sep, transport->session);
297 return a2dp_resume(transport->session, sep, a2dp_resume_complete,
306 struct a2dp_sep *sep = media_endpoint_get_sep(transport->endpoint); local
315 a2dp_sep_unlock(sep, transport->session);
324 struct a2dp_sep *sep = media_endpoint_get_sep(endpoint); local
327 a2dp_sep_unlock(sep, transport->session);
332 return a2dp_suspend(transport->session, sep, a2dp_suspend_complete
    [all...]
  /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);
tznames.cpp 277 int32_t sep = tzID.lastIndexOf((UChar)0x2F /* '/' */); local
278 if (sep > 0 && sep + 1 < tzID.length()) {
279 name.setTo(tzID, sep + 1);
  /external/strace/
desc.c 497 const char *sep; local
521 for (j = 0, sep = ""; j < nfds; j++) {
523 tprintf("%s", sep);
525 sep = " ";
537 const char *sep = ""; local
565 sprintf(str, "%s%s [%u", sep,
570 sep = ", ";
591 sprintf(str, "%sleft ", sep);
  /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/iptables/extensions/
libipt_addrtype.c 152 const char *sep = ""; local
157 printf("%s%s", sep, rtn_names[i]);
158 sep = ",";
libxt_time.c 67 "[!] --weekdays value List of weekdays on which to match, sep. by comma\n"
195 const char *sep; local
199 sep = strchr(*arg, delim);
200 if (sep == NULL) {
205 snprintf(buf, buflen, "%.*s", (unsigned int)(sep - *arg), *arg);
206 *arg = sep + 1;
  /external/webkit/Tools/Scripts/webkitpy/common/system/
filesystem_unittest.py 194 self.assertEquals(fs.sep, os.sep)
200 fs.sep = ' '
  /ndk/sources/host-tools/sed-4.2.1/
autoboot 476 sep=
487 copied=$copied${sep}$gnulib_mk; sep=$nl
498 copied=$copied$sep$file; sep=$nl
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
EmulatorConnection.java 159 int sep = query_str.indexOf(':'); local
160 if (sep == -1) {
166 query = query_str.substring(0, sep);
169 query_param = (sep < (query_str.length() - 1)) ? query_str.substring(sep + 1) : "";
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
interworking.c 444 const char *sep; local
449 sep = os_strchr(imsi, '-');
450 if (sep == NULL || (sep - imsi != 5 && sep - imsi != 6))
456 if (sep - imsi == 6)
510 const char *sep, *msin; local
525 sep = os_strchr(imsi, '-');
526 if (sep == NULL)
528 plmn_len = sep - imsi
    [all...]
  /external/webkit/Tools/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,'__')
  /packages/apps/Browser/src/com/android/browser/
BreadCrumbView.java 196 View sep = makeDividerView(); local
197 sep.setLayoutParams(makeDividerLayoutParams());
198 addView(sep);
  /sdk/find_java/
utils.h 174 CArray<CString> * split(char sep) const {
181 if (*s == sep && s != mStr && (last == NULL || s > last+1)) {
191 if (*s == sep) {
  /development/testrunner/test_defs/
native_test.py 85 full_path = os.path.join(os.sep, "system", "bin", f)
  /docs/source.android.com/scripts/
build.py 69 outdir = curdir.split(os.path.sep)

Completed in 911 milliseconds

1 2 34 5 6 7 8 9