OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:atpos
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp
441
size_t
AtPos
= SymbolName.rfind('@');
442
if (
AtPos
!= StringRef::npos &&
443
std::all_of(SymbolName.begin() +
AtPos
+ 1, SymbolName.end(),
445
SymbolName = SymbolName.substr(0,
AtPos
);
/frameworks/av/media/libstagefright/httplive/
M3UParser.cpp
982
ssize_t
atPos
= line.find("@", colonPos + 1);
985
if (
atPos
< 0) {
988
lenStr = AString(line, colonPos + 1,
atPos
- colonPos - 1);
1001
if (
atPos
>= 0) {
1002
AString offStr = AString(line,
atPos
+ 1, line.size() -
atPos
- 1);
[
all
...]
/frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.cpp
155
ssize_t
atPos
= host->find("@");
157
if (
atPos
>= 0) {
160
AString userPass(*host, 0,
atPos
);
161
host->erase(0,
atPos
+ 1);
/packages/apps/Dialer/java/com/android/voicemail/impl/imap/
ImapHelper.java
276
int
atPos
= sender.indexOf('@');
277
if (
atPos
!= -1) {
279
sender = sender.substring(0,
atPos
);
Completed in 171 milliseconds