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:callframes
(Results
1 - 2
of
2
) sorted by relevance
/developtools/hiperf/test/unittest/common/native/
H
A
D
report_test.cpp
147
std::vector<ReportItemCallFrame>
callframes
;
in HWTEST_F()
local
150
ReportItemCallFrame::OrderCallFrames(
callframes
);
in HWTEST_F()
152
callframes
.emplace_back(a100);
in HWTEST_F()
153
callframes
.emplace_back(a200);
in HWTEST_F()
154
callframes
.emplace_back(a200);
in HWTEST_F()
155
callframes
.emplace_back(a300);
in HWTEST_F()
158
ReportItemCallFrame::OrderCallFrames(
callframes
);
in HWTEST_F()
159
ASSERT_EQ(
callframes
.size() == 4u, true);
in HWTEST_F()
160
EXPECT_EQ(
callframes
[0] == a300, true);
in HWTEST_F()
161
EXPECT_EQ(
callframes
[
in HWTEST_F()
[all...]
/developtools/hiperf/include/
H
A
D
report.h
67
static void OrderCallFrames(std::vector<ReportItemCallFrame> &
callframes
, int indent = 2)
in OrderCallFrames()
argument
70
if (
callframes
.size() > 0) {
in OrderCallFrames()
71
std::sort(
callframes
.begin(),
callframes
.end(),
in OrderCallFrames()
74
for (auto &callframe :
callframes
) {
in OrderCallFrames()
84
static void DumpCallFrames(std::vector<ReportItemCallFrame> &
callframes
, int indent = 2)
in DumpCallFrames()
argument
87
if (
callframes
.size() > 0) {
in DumpCallFrames()
88
for (auto &callframe :
callframes
) {
in DumpCallFrames()
Completed in 3 milliseconds