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:otherObj
(Results
1 - 16
of
16
) sorted by relevance
/foundation/ability/ability_base/interfaces/inner_api/base/src/
H
A
D
remote_object_wrapper.cpp
26
RemoteObjectWrap *
otherObj
= static_cast<RemoteObjectWrap *>(IRemoteObjectWrap::Query(&other));
in Equals()
local
27
return
otherObj
!= nullptr &&
otherObj
->remoteObject_ == remoteObject_;
in Equals()
H
A
D
string_wrapper.cpp
32
String *
otherObj
= static_cast<String *>(IString::Query(&other));
in Equals()
local
33
return
otherObj
!= nullptr &&
otherObj
->string_ == string_;
in Equals()
H
A
D
bool_wrapper.cpp
31
Boolean *
otherObj
= static_cast<Boolean *>(IBoolean::Query(&other));
in Equals()
local
32
return
otherObj
!= nullptr &&
otherObj
->value_ == value_;
in Equals()
H
A
D
double_wrapper.cpp
32
Double *
otherObj
= static_cast<Double *>(IDouble::Query(&other));
in Equals()
local
33
return
otherObj
!= nullptr &&
otherObj
->value_ == value_;
in Equals()
H
A
D
short_wrapper.cpp
32
Short *
otherObj
= static_cast<Short *>(IShort::Query(&other));
in Equals()
local
33
return
otherObj
!= nullptr &&
otherObj
->value_ == value_;
in Equals()
H
A
D
float_wrapper.cpp
32
Float *
otherObj
= static_cast<Float *>(IFloat::Query(&other));
in Equals()
local
33
return
otherObj
!= nullptr &&
otherObj
->value_ == value_;
in Equals()
H
A
D
int_wrapper.cpp
32
Integer *
otherObj
= static_cast<Integer *>(IInteger::Query(&other));
in Equals()
local
33
return
otherObj
!= nullptr &&
otherObj
->value_ == value_;
in Equals()
H
A
D
long_wrapper.cpp
32
Long *
otherObj
= static_cast<Long *>(ILong::Query(&other));
in Equals()
local
33
return
otherObj
!= nullptr &&
otherObj
->value_ == value_;
in Equals()
H
A
D
byte_wrapper.cpp
32
Byte *
otherObj
= static_cast<Byte *>(IByte::Query(&other));
in Equals()
local
33
return
otherObj
!= nullptr &&
otherObj
->value_ == value_;
in Equals()
H
A
D
user_object_wrapper.cpp
36
UserObject *
otherObj
= static_cast<UserObject *>(IUserObject::Query(&other));
in Equals()
local
37
if (
otherObj
== nullptr) {
in Equals()
40
if (value_->GetClassName() ==
otherObj
->value_->GetClassName()) {
in Equals()
41
return
otherObj
->value_->Equals(value_);
in Equals()
H
A
D
zchar_wrapper.cpp
32
Char *
otherObj
= static_cast<Char *>(IChar::Query(&other));
in Equals()
local
33
return
otherObj
!= nullptr &&
otherObj
->value_ == value_;
in Equals()
H
A
D
base_object.cpp
147
Object *
otherObj
= nullptr;
in Equals()
local
148
otherObj
= static_cast<Object *>(&other);
in Equals()
149
return this ==
otherObj
;
in Equals()
/foundation/ability/ability_base/interfaces/kits/native/want/src/
H
A
D
array_wrapper.cpp
83
Array *
otherObj
= static_cast<Array *>(IArray::Query(&other));
in Equals()
local
84
if (
otherObj
== nullptr) {
in Equals()
88
if (this ==
otherObj
) {
in Equals()
92
if (
otherObj
->size_ != size_ ||
otherObj
->typeId_ != typeId_) {
in Equals()
101
if (!Object::Equals(*(values_[i].GetRefPtr()), *(
otherObj
->values_[i].GetRefPtr()))) {
in Equals()
H
A
D
want_params_wrapper.cpp
52
WantParamWrapper *
otherObj
= static_cast<WantParamWrapper *>(IWantParams::Query(&other));
in Equals()
local
53
return
otherObj
!= nullptr &&
otherObj
->wantParams_ == wantParams_;
in Equals()
H
A
D
pac_map.cpp
1874
PacMap *
otherObj
= static_cast<PacMap *>(IPacMap::Query(&other));
in Equals()
local
1875
if (
otherObj
== nullptr) {
in Equals()
1879
return Equals(
otherObj
);
in Equals()
/foundation/ability/dmsfwk/services/dtbschedmgr/src/distributedWant/
H
A
D
distributed_want_params_wrapper.cpp
37
DistributedWantParamWrapper*
otherObj
=
in Equals()
local
39
return
otherObj
!= nullptr &&
otherObj
->wantParams_ == wantParams_;
in Equals()
Completed in 8 milliseconds