HomeSort by relevance Sort by last modified time
    Searched refs:equal_pos (Results 1 - 4 of 4) sorted by null

  /external/cldr/tools/java/org/unicode/cldr/posix/
POSIXVariant.java 41 int equal_pos = buf.indexOf('='); local
42 if (equal_pos > 0) {
43 String field = buf.substring(0, equal_pos);
44 String field_value = buf.substring(equal_pos + 1);
  /external/webrtc/webrtc/tools/
simple_command_line_parser.cc 36 size_t equal_pos = flag.find("="); local
47 if (equal_pos > 0 && (equal_pos < 3 || equal_pos == flag_length)) {
57 size_t equal_pos = flag.find("="); local
58 if (equal_pos == string::npos) {
61 return flag.substr(dash_pos + 2, equal_pos - 2);
66 size_t equal_pos = flag.find("="); local
67 if (equal_pos == string::npos) {
70 return flag.substr(equal_pos + 1)
    [all...]
  /bootable/recovery/updater/
install.cpp 610 size_t equal_pos = line.find('='); local
611 if (equal_pos == std::string::npos) {
616 std::string str = android::base::Trim(line.substr(0, equal_pos));
621 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
    [all...]
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp 878 const char *equal_pos = strchr(key_start, '='); local
879 if (equal_pos == NULL) {
883 String8 key(key_start, equal_pos - key_start);
889 const char *value_start = equal_pos + 1;
    [all...]

Completed in 3571 milliseconds