Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:colonPos
(Results
1 - 3
of
3
) sorted by relevance
/foundation/multimedia/drm_framework/services/utils/
H
A
D
drm_api_operation.cpp
76
size_t
colonPos
= line.find(':');
in ParseKeyValue()
local
77
if (
colonPos
!= std::string::npos) {
in ParseKeyValue()
78
std::string key = Trim(line.substr(0,
colonPos
));
in ParseKeyValue()
79
std::string value = Trim(line.substr(
colonPos
+ 1));
in ParseKeyValue()
/foundation/multimedia/drm_framework/services/drm_service/server/src/
H
A
D
drm_host_manager.cpp
386
size_t
colonPos
= line.find(':');
in parseLazyLoadService()
local
387
if (
colonPos
!= std::string::npos) {
in parseLazyLoadService()
388
std::string key = StringTrim(line.substr(0,
colonPos
));
in parseLazyLoadService()
389
std::string value = StringTrim(line.substr(
colonPos
+ 1));
in parseLazyLoadService()
/foundation/multimedia/media_library/frameworks/services/media_thumbnail/src/
H
A
D
thumbnail_utils.cpp
832
std::size_t
colonPos
= str.find(":", keyPos);
in GetHighlightValue()
local
833
if (
colonPos
== std::string::npos) {
in GetHighlightValue()
836
std::size_t commaPos = str.find(",",
colonPos
);
in GetHighlightValue()
838
commaPos = str.find("}",
colonPos
);
in GetHighlightValue()
843
std::string valueStr = str.substr(
colonPos
+ 1, commaPos -
colonPos
- 1);
in GetHighlightValue()
Completed in 7 milliseconds