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:info
(Results
1 - 18
of
18
) sorted by relevance
/ide/tools/previewer/test/unittest/mock_lite/
H
A
D
VirtualMessageImplTest.cpp
62
MessageInfo
info
;
in TEST()
local
63
info
.deviceID = "1234";
in TEST()
64
info
.bundleName = "index";
in TEST()
65
info
.abilityName = "entry";
in TEST()
66
info
.message = "test";
in TEST()
69
VirtualMessageImpl::GetInstance().SendVirtualMessage(
info
);
in TEST()
H
A
D
VirtualScreenImplTest.cpp
124
OHOS::BufferInfo*
info
= VirtualScreenImpl::GetInstance().GetFBBufferInfo();
in TEST_F()
local
125
EXPECT_EQ(
info
->color, 0x44);
in TEST_F()
/ide/tools/previewer/mock/
H
A
D
VirtualMessage.cpp
18
void VirtualMessage::SendVirtualMessage(MessageInfo
info
)
in SendVirtualMessage()
argument
20
(void)
info
;
in SendVirtualMessage()
H
A
D
VirtualMessage.h
31
virtual void SendVirtualMessage(MessageInfo
info
);
/ide/tools/previewer/mock/lite/
H
A
D
VirtualMessageImpl.cpp
47
void VirtualMessageImpl::SendVirtualMessage(MessageInfo
info
)
in SendVirtualMessage()
argument
50
std::vector<char> deviceId = StringToCharVector(
info
.deviceID);
in SendVirtualMessage()
51
std::vector<char> bundleName = StringToCharVector(
info
.bundleName);
in SendVirtualMessage()
52
std::vector<char> abilityName = StringToCharVector(
info
.abilityName);
in SendVirtualMessage()
53
std::vector<char> message = StringToCharVector(
info
.message);
in SendVirtualMessage()
69
iter->second.first((reinterpret_cast<void*>(&
info
)));
in SendVirtualMessage()
H
A
D
VirtualMessageImpl.h
33
virtual void SendVirtualMessage(MessageInfo
info
) override;
/ide/tools/previewer/mock/rich/
H
A
D
VirtualMessageImpl.cpp
24
void VirtualMessageImpl::SendVirtualMessage(MessageInfo
info
)
in SendVirtualMessage()
argument
26
(void)
info
;
in SendVirtualMessage()
H
A
D
VirtualScreenImpl.cpp
429
ScreenInfo
info
;
in GetScreenInfo()
local
430
info
.orignalResolutionWidth = GetOrignalWidth();
in GetScreenInfo()
431
info
.orignalResolutionHeight = GetOrignalHeight();
in GetScreenInfo()
432
info
.compressionResolutionWidth = GetCompressionWidth();
in GetScreenInfo()
433
info
.compressionResolutionHeight = GetCompressionHeight();
in GetScreenInfo()
434
info
.foldStatus = GetFoldStatus();
in GetScreenInfo()
435
info
.foldable = GetFoldable();
in GetScreenInfo()
436
info
.foldWidth = GetFoldWidth();
in GetScreenInfo()
437
info
.foldHeight = GetFoldHeight();
in GetScreenInfo()
438
return
info
;
in GetScreenInfo()
444
FoldInfo
info
;
InitFoldParams()
local
[all...]
H
A
D
VirtualMessageImpl.h
24
virtual void SendVirtualMessage(MessageInfo
info
) override;
/ide/tools/previewer/test/mock/mock/
H
A
D
MockVirtualScreenImpl.cpp
55
ScreenInfo
info
;
in GetScreenInfo()
local
56
return
info
;
in GetScreenInfo()
H
A
D
MockVirtualMessageImpl.cpp
26
void VirtualMessageImpl::SendVirtualMessage(MessageInfo
info
)
in SendVirtualMessage()
argument
/ide/tools/previewer/util/
H
A
D
CommandParser.cpp
1021
void CommandParser::GetCommandInfo(CommandInfo&
info
) const
in GetCommandInfo()
1023
info
.deviceType = GetDeviceType();
in GetCommandInfo()
1024
info
.pages = GetPages();
in GetCommandInfo()
1025
info
.appResourcePath = GetAppResourcePath();
in GetCommandInfo()
1026
info
.isCardDisplay = IsCardDisplay();
in GetCommandInfo()
1027
info
.containerSdkPath = GetContainerSdkPath();
in GetCommandInfo()
1028
info
.isComponentMode = IsComponentMode();
in GetCommandInfo()
1029
info
.loaderJsonPath = GetLoaderJsonPath();
in GetCommandInfo()
1030
info
.abilityPath = GetAbilityPath();
in GetCommandInfo()
1031
info
in GetCommandInfo()
[all...]
H
A
D
FileSystem.cpp
96
struct stat
info
{};
in GetFileMode()
struct
97
if (stat(path.data(), &
info
) != 0) {
in GetFileMode()
100
return
info
.st_mode;
in GetFileMode()
H
A
D
CommandParser.h
96
void GetCommandInfo(CommandInfo&
info
) const;
97
void GetFoldInfo(FoldInfo&
info
) const;
/ide/tools/previewer/test/mock_lite/ui_lite/
H
A
D
MockSoftEngine.cpp
40
void SoftEngine::ClipCircle(const ImageInfo*
info
, float x, float y, float radius) {}
in ClipCircle()
argument
/ide/tools/previewer/test/unittest/util/
H
A
D
CommandParserTest.cpp
1139
CommandInfo
info
;
in TEST_F()
local
1140
CommandParser::GetInstance().GetCommandInfo(
info
);
in TEST_F()
1141
EXPECT_EQ(
info
.deviceType, "phone");
in TEST_F()
1142
EXPECT_TRUE(
info
.isComponentMode);
in TEST_F()
1147
FoldInfo
info
;
in TEST_F()
local
1148
CommandParser::GetInstance().GetFoldInfo(
info
);
in TEST_F()
1149
EXPECT_TRUE(
info
.foldable);
in TEST_F()
1150
EXPECT_EQ(
info
.foldStatus, "half_fold");
in TEST_F()
/ide/tools/previewer/cli/
H
A
D
CommandLine.cpp
863
MessageInfo
info
;
in RunAction()
local
864
info
.deviceID = args["DeviceId"].AsString();
in RunAction()
865
info
.bundleName = args["bundleName"].AsString();
in RunAction()
866
info
.abilityName = args["abilityName"].AsString();
in RunAction()
867
info
.message = args["message"].AsString();
in RunAction()
868
VirtualMessageImpl::GetInstance().SendVirtualMessage(
info
);
in RunAction()
/ide/tools/previewer/test/unittest/mock/
H
A
D
VirtualScreenImplTest.cpp
397
ScreenInfo
info
= VirtualScreenImpl::GetInstance().GetScreenInfo();
in TEST_F()
local
398
EXPECT_EQ(
info
.orignalResolutionWidth, width);
in TEST_F()
Completed in 21 milliseconds