HomeSort by relevance Sort by last modified time
    Searched full:delimiter (Results 201 - 225 of 1073) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/rs/api/
Scanner.h 46 * the delimiter is found, a new line, or the eof. The delimiter is added.
48 void readUpTo(char delimiter, std::string* segment);
  /libcore/ojluni/src/main/java/sun/util/locale/
StringTokenIterator.java 35 private String dlms; // null if a single char delimiter
36 private char delimiterChar; // delimiter if a single char delimiter
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
MoreDatabaseUtils.java 75 String delimiter = ""; local
77 sb.append(delimiter).append("?");
78 delimiter = ",";
  /external/libbrillo/brillo/http/
http_form_data_unittest.cc 83 MultiPartFormField form_field{"foo", mime::multipart::kFormData, "Delimiter"};
97 "Content-Type: multipart/form-data; boundary=\"Delimiter\"\r\n"
101 "--Delimiter\r\n"
105 "--Delimiter\r\n"
112 "--Delimiter\r\n"
119 "--Delimiter--";
  /external/libchrome/base/strings/
string_tokenizer.h 125 // Call this method to advance the tokenizer to the next delimiter. This
140 // Returns true if token is a delimiter. When the tokenizer is constructed
142 // returned token is actually a delimiter.
180 // else skip over delimiter.
202 // else skip over delimiter.
224 // Returns true if a delimiter was not hit.
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
ORAddressTest.java 38 String delimiter, byte[] data) {
44 System.out.print(prefix + "0x" + tail + delimiter);
  /external/toybox/toys/posix/
paste.c 35 // Process delimiter list
42 error_exit("bad delimiter: \\%c", *p);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ScannerParseLargeFileBenchmarkTest.java 32 String delimiter = "\r?\n"; local
33 Scanner scanner = new Scanner(reader).useDelimiter(delimiter);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
_csv.so 
  /frameworks/opt/net/voip/src/java/android/net/sip/
SimpleSessionDescription.java 385 * has three parts: a key, a delimiter, and a value. Delimiters are special
388 * the delimiter as an argument.
532 char delimiter = '='; local
534 delimiter = ' ';
536 delimiter = ':';
538 int i = line.indexOf(delimiter);
540 set(line, delimiter, "");
542 set(line.substring(0, i), delimiter, line.substring(i + 1));
549 private String[] cut(String prefix, char delimiter) {
554 int i = line.indexOf(delimiter);
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.c 138 char delimiter[MAX_DELIMITER_LENGTH]; member in struct:FwdLockConv_Session
308 * Removes trailing spaces from the delimiter.
316 pSession->delimiter[pSession->delimiterLength - 1] == ' ') {
326 * Matches the open delimiter.
348 // The delimiter starts with "\r\n--" (the open delimiter may omit the initial "\r\n").
350 pSession->delimiter[0] = '\r';
351 pSession->delimiter[1] = '\n';
352 pSession->delimiter[2] = '-';
353 pSession->delimiter[3] = '-'
    [all...]
  /external/guava/guava/src/com/google/common/io/
LineProcessor.java 38 * @param line the line read from the input, without delimiter
  /external/icu/icu4c/source/tools/toolutil/
uparse.h 63 * All other lines are separated into fields with one delimiter character
65 * a line does not need to be terminated with a delimiter.
72 * points behind the field, i.e., to the delimiter or the line end.
84 u_parseDelimitedFile(const char *filename, char delimiter,
  /external/libcxx/test/std/experimental/string.view/string.view.nonmem/
quoted.pass.cpp 202 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
203 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
204 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
205 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
  /external/libcxx/test/std/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 207 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
208 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
209 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
210 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
  /external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/
ostream_delem.pass.cpp 14 // ostream_iterator(ostream_type& s, const charT* delimiter);
  /external/minijail/
util.c 150 * If the delimiter is NULL or empty,
165 * The delimiter was not found, so the full string
174 /* There's a non-empty token before the delimiter. */
182 * The delimiter was found at the start of the string,
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContentImpl.java 87 String delimiter = this.getContentTypeHeader().getParameter(BOUNDARY); local
89 if (delimiter == null) {
91 ContentImpl content = new ContentImpl(body, delimiter);
97 String[] fragments = body.split("--" + delimiter + "\r\n");
  /external/pdfium/xfa/src/fgas/include/
fx_alg.h 19 FX_WCHAR delimiter,
  /external/webrtc/webrtc/base/
pathutils.h 37 // non-period/non-delimiter characters, and basename is non-empty.
50 // Set's the default folder delimiter for this Pathname
52 void SetFolderDelimiter(char delimiter);
80 // SetFolder and AppendFolder will append a folder delimiter, if needed.
  /frameworks/av/media/libstagefright/
MediaCodecListOverrides.h 36 bool splitString(const AString &s, const AString &delimiter, AString *s1, AString *s2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 207 assert ( unquote ( "abc" ) == "abc" ); // no delimiter
208 assert ( unquote ( L"abc" ) == L"abc" ); // no delimiter
209 assert ( unquote ( "abc def" ) == "abc" ); // no delimiter
210 assert ( unquote ( L"abc def" ) == L"abc" ); // no delimiter
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/
ostream_delem.pass.cpp 14 // ostream_iterator(ostream_type& s, const charT* delimiter);
  /external/chromium-trace/catapult/perf_insights/third_party/cloudstorage/
cloudstorage_api.py 189 delimiter=None, retry_params=None, _account_id=None):
197 2. Directory emulation mode: If you specify the 'delimiter' argument,
199 In this mode, the "path_prefix" argument should end in the delimiter
202 subdirectories returned will end with the delimiter. So listbucket
217 delimiter: Use to turn on directory mode. str of one or multiple chars
234 listbucket("/bucket/", delimiter="/")
236 listbucket("/bucket/foo/", delimiter="/")
270 if delimiter:
271 options['delimiter'] = delimiter
    [all...]
  /external/selinux/libsepol/src/
util.c 219 * delimiter is not included when returning the token.
230 /* Squash spaces if the delimiter is a whitespace character */
240 * delim - The delimiter used to tokenize line_buf. A whitespace delimiter will
249 * contain the remaining content of line_buf. If the delimiter is any whitespace

Completed in 1286 milliseconds

1 2 3 4 5 6 7 891011>>