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:declType
(Results
1 - 4
of
4
) sorted by relevance
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H
A
D
sqlite_relational_utils.cpp
278
const char *
declType
= sqlite3_column_decltype(stmt, cid);
in GetTypeValByStatement()
local
279
if (
declType
== nullptr) { // LCOV_EXCL_BR_LINE
in GetTypeValByStatement()
283
if (strcasecmp(
declType
, SchemaConstant::KEYWORD_TYPE_BOOL.c_str()) == 0 ||
in GetTypeValByStatement()
284
strcasecmp(
declType
, SchemaConstant::KEYWORD_TYPE_BOOLEAN.c_str()) == 0) { // LCOV_EXCL_BR_LINE
in GetTypeValByStatement()
318
const char *
declType
= sqlite3_column_decltype(stmt, cid);
in GetBlobByStatement()
local
320
if (
declType
!= nullptr && strcasecmp(
declType
, CloudDbConstant::ASSET) == 0) { // LCOV_EXCL_BR_LINE
in GetBlobByStatement()
332
} else if (
declType
!= nullptr && strcasecmp(
declType
, CloudDbConstant::ASSETS) == 0) {
in GetBlobByStatement()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H
A
D
shared_block_serializer_info.cpp
92
auto *
declType
= sqlite3_column_decltype(statement_, column);
in PutBlob()
local
93
if (
declType
!= nullptr) {
in PutBlob()
94
std::string type(
declType
);
in PutBlob()
H
A
D
share_block.cpp
295
auto *
declType
= sqlite3_column_decltype(statement, pos);
in FillOneRowOfBlob()
local
296
if (
declType
!= nullptr) {
in FillOneRowOfBlob()
297
std::string type(
declType
);
in FillOneRowOfBlob()
H
A
D
sqlite_statement.cpp
480
auto
declType
= SqliteUtils::StrToUpper(std::string(decl));
in GetColumnType()
local
481
if (
declType
== ValueObject::DeclType<ValueObject::Asset>()) {
in GetColumnType()
483
} else if (
declType
== ValueObject::DeclType<ValueObject::Assets>()) {
in GetColumnType()
485
} else if (
declType
== ValueObject::DeclType<ValueObject::FloatVector>()) {
in GetColumnType()
487
} else if (
declType
== ValueObject::DeclType<ValueObject::BigInt>()) {
in GetColumnType()
Completed in 4 milliseconds