HomeSort by relevance Sort by last modified time
    Searched full:substr (Results 126 - 150 of 1935) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator.cpp 152 const StringPiece16 substr = text.substr(cursor, span->first_char - cursor); local
153 cursor += substr.size();
156 std::string new_substr = util::Utf16ToUtf8(substr);
179 const StringPiece16 substr = text.substr(cursor, parent_span->last_char - cursor + 1); local
180 cursor += substr.size();
183 std::string new_substr = util::Utf16ToUtf8(substr);
201 new_string += localizer.Text(util::Utf16ToUtf8(text.substr(cursor, text.size() - cursor)));
255 result += localizer_.Text(original_string.substr(start, len))
    [all...]
  /system/libvintf/
KernelConfigParser.cpp 79 std::string key = mRemaining.substr(0, equalPos);
80 std::string value = mRemaining.substr(equalPos + 1);
84 mError << "Duplicated key in configs: " << mRemaining.substr(0, equalPos) << "\n";
  /external/llvm/lib/Target/
TargetRecip.cpp 55 StringRef RefStepString = In.substr(Position + 1);
78 RefStepString = ArgSub.substr(RefPos + 1);
79 ArgSub = ArgSub.substr(0, RefPos);
120 Val = Val.substr(1);
127 RefStepString = Val.substr(RefPos + 1);
128 Val = Val.substr(0, RefPos);
  /external/webrtc/webrtc/base/
pathutils.cc 119 SetFolder(pathname.substr(0, pos + 1));
120 SetFilename(pathname.substr(pos + 1));
149 return folder_.substr(pos + 1);
161 return folder_.substr(0, pos + 1);
223 return SetExtension(filename.substr(pos)) && SetBasename(filename.substr(0, pos));
  /system/extras/multinetwork/
httpurl.cpp 54 parameters->host = std::string(args.arg1).substr(strlen(HTTP_PREFIX));
57 parameters->path = parameters->host.substr(first_slash);
72 parameters->hostname = parameters->host.substr(1, closing_bracket - 1);
80 parameters->port = parameters->host.substr(closing_bracket + 2);
85 parameters->port = parameters->host.substr(first_colon + 1);
86 parameters->hostname = parameters->host.substr(0, first_colon);
  /external/tcpdump/
send-ack.awk 29 strtSeq = substr($6,1,i-1)
30 endSeq = substr($6,i+1,j-i-1)
  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_Substr.pbtxt 2 graph_op_name: "Substr"
41 *NOTE*: `Substr` supports broadcasting up to two dimensions. More about
  /external/webrtc/talk/media/devices/
macdeviceinfo.cc 41 std::string id_vendor = device.id.substr(vid_location, id_size);
43 std::string id_product = device.id.substr(pid_location, id_size);
win32deviceinfo.cc 47 std::string id_vendor = device.id.substr(vid_location + sizeof(vid) - 1,
49 std::string id_product = device.id.substr(pid_location + sizeof(pid) -1,
  /frameworks/native/cmds/installd/
system_properties.h 40 std::string key = line.substr(0, equals_pos);
41 std::string value = line.substr(equals_pos + 1,
  /system/core/base/
parsenetaddress.cpp 42 *host = address.substr(1, (address.find("]:") - 1));
43 port_str = address.substr(address.rfind("]:") + 2);
  /test/vts-testcase/security/poc/target/
poc_test.cpp 71 string key = key_value.substr(0, delim);
72 string value = key_value.substr(delim + 1);
  /prebuilts/go/darwin-x86/src/strings/
strings.go 76 func countGeneric(s, substr string) int {
78 if len(substr) == 0 {
83 i := Index(s, substr)
88 s = s[i+len(substr):]
92 // Contains reports whether substr is within s.
93 func Contains(s, substr string) bool {
94 return Index(s, substr) >= 0
107 // LastIndex returns the index of the last instance of substr in s, or -1 if substr is not present in s.
108 func LastIndex(s, substr string) int
    [all...]
  /prebuilts/go/linux-x86/src/strings/
strings.go 76 func countGeneric(s, substr string) int {
78 if len(substr) == 0 {
83 i := Index(s, substr)
88 s = s[i+len(substr):]
92 // Contains reports whether substr is within s.
93 func Contains(s, substr string) bool {
94 return Index(s, substr) >= 0
107 // LastIndex returns the index of the last instance of substr in s, or -1 if substr is not present in s.
108 func LastIndex(s, substr string) int
    [all...]
  /cts/suite/audio_quality/lib/include/
StringUtil.h 34 static android::String8 substr(const android::String8& str, size_t pos, size_t n);
  /dalvik/dx/tests/110-dex-preserve-this/
run 26 regs = substr($2, 4, 1);
  /external/autotest/client/cros/
service_login.js 41 continueUrlElement.value.substr(0, prevAttemptIndex);
  /external/icu/icu4c/source/test/intltest/
strtest.cpp 254 // substr() method with pos, using len=npos.
255 sp=abcd.substr(-1);
257 errln("abcd.substr(-1) failed");
259 sp=abcd.substr(5);
261 errln("abcd.substr(5) failed");
263 sp=abcd.substr(2);
265 errln("abcd.substr(-1) failed");
267 // substr() method with pos and len.
268 sp=abcd.substr(-1, 8);
270 errln("abcd.substr(-1, 8) failed")
    [all...]
  /external/libvncserver/utils/
consolefont2c.pl 26 printf OUT "0x%02x,", ord(substr($x,$i));
  /external/llvm/lib/Object/
MachOUniversal.cpp 77 ObjectData = ParentData.substr(Header.offset, Header.size);
79 ObjectData = ParentData.substr(Header64.offset, Header64.size);
94 ObjectData = ParentData.substr(Header.offset, Header.size);
96 ObjectData = ParentData.substr(Header64.offset, Header64.size);
  /external/llvm/lib/Support/
Regex.cpp 137 Repl = Repl.substr(1);
143 Repl = Repl.substr(1);
147 Repl = Repl.substr(1);
155 Repl = Repl.substr(Ref.size());
  /external/llvm/unittests/IR/
TypesTest.cpp 23 Struct->setName(Struct->getName().substr(0, 3));
  /external/perf_data_converter/src/quipper/
scoped_temp_path_test.cc 80 path.substr(0, strlen(kTempPathTemplatePrefix)));
94 EXPECT_EQ(prefix, path.substr(0, prefix.size()));
125 path.substr(0, strlen(kTempPathTemplatePrefix)));
141 EXPECT_EQ(prefix, path.substr(0, prefix.size()));
  /external/spirv-llvm/lib/SPIRV/Mangler/
Mangler.cpp 48 bstr += charset.substr(SeqID % 36, 1);
112 substitutions[m_stream.str().substr(fpos + 1)] = seqId++;
114 substitutions[m_stream.str().substr(fpos)] = seqId++;
130 substitutions[m_stream.str().substr(index)] = seqId++;
  /external/swiftshader/src/Common/
Configurator.cpp 64 line = line.substr(0, line.length() - 1);
86 keyName = line.substr(pLeft + 1, pRight - pLeft - 1);
93 string valueName = line.substr(0, pLeft);
94 string value = line.substr(pLeft + 1);

Completed in 965 milliseconds

1 2 3 4 56 7 8 91011>>