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:appMatches
(Results
1 - 4
of
4
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_sceneview.cpp
80
std::smatch
appMatches
;
in GetResourceId()
local
81
if (std::regex_match(uri,
appMatches
, MODEL_APP_RES_ID_REGEX) &&
appMatches
.size() == MODEL_RESOURCE_MATCH_SIZE) {
in GetResourceId()
82
resId = static_cast<uint32_t>(std::stoul(
appMatches
[1].str()));
in GetResourceId()
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H
A
D
rosen_media_player.cpp
340
std::smatch
appMatches
;
in GetResourceId()
local
341
if (std::regex_match(path,
appMatches
, MEDIA_APP_RES_ID_REGEX) &&
appMatches
.size() == MEDIA_RESOURCE_MATCH_SIZE) {
in GetResourceId()
342
resId = static_cast<uint32_t>(std::stoul(
appMatches
[1].str()));
in GetResourceId()
/foundation/arkui/ace_engine/frameworks/core/image/
H
A
D
image_loader.cpp
570
std::smatch
appMatches
;
in GetResourceId()
local
571
if (std::regex_match(uri,
appMatches
, MEDIA_APP_RES_ID_REGEX) &&
appMatches
.size() == MEDIA_RESOURCE_MATCH_SIZE) {
in GetResourceId()
572
resId = static_cast<uint32_t>(std::stoul(
appMatches
[1].str()));
in GetResourceId()
/foundation/arkui/ace_engine/frameworks/core/components/video/
H
A
D
video_element.cpp
453
std::smatch
appMatches
;
in GetResourceId()
local
454
if (std::regex_match(path,
appMatches
, MEDIA_APP_RES_ID_REGEX) &&
appMatches
.size() == MEDIA_RESOURCE_MATCH_SIZE) {
in GetResourceId()
455
resId = static_cast<uint32_t>(std::stoul(
appMatches
[1].str()));
in GetResourceId()
Completed in 6 milliseconds