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:idxInfo
(Results
1 - 4
of
4
) sorted by relevance
/developtools/smartperf_host/trace_streamer/src/table/base/
H
A
D
table_base.cpp
102
module.xBestIndex = [](sqlite3_vtab *pVTab, sqlite3_index_info *
idxInfo
) {
in SetModuleCallbacks()
103
TS_LOGD("xBestIndex: %s %d", static_cast<TableBase *>(pVTab)->name_.c_str(),
idxInfo
->nConstraint);
in SetModuleCallbacks()
104
return static_cast<TableBase *>(pVTab)->BestIndex(
idxInfo
);
in SetModuleCallbacks()
167
int32_t TableBase::BestIndex(sqlite3_index_info *
idxInfo
)
in BestIndex()
argument
170
for (int32_t i = 0; i <
idxInfo
->nConstraint; i++) {
in BestIndex()
171
const auto &constraint =
idxInfo
->aConstraint[i];
in BestIndex()
176
for (int32_t i = 0; i <
idxInfo
->nOrderBy; i++) {
in BestIndex()
177
filterConstraints.AddOrderBy(
idxInfo
->aOrderBy[i].iColumn,
idxInfo
->aOrderBy[i].desc);
in BestIndex()
180
EstimatedIndexInfo estimate = {
idxInfo
in BestIndex()
[all...]
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/table/
H
A
D
demo_table_base.cpp
101
demoModule.xBestIndex = [](sqlite3_vtab *pVTab, sqlite3_index_info *
idxInfo
) {
in SetModuleCallbacks()
102
TS_LOGD("xBestIndex: %s %d", static_cast<DemoTableBase *>(pVTab)->name_.c_str(),
idxInfo
->nConstraint);
in SetModuleCallbacks()
103
return static_cast<DemoTableBase *>(pVTab)->DemoBestIndex(
idxInfo
);
in SetModuleCallbacks()
H
A
D
demo_table_base.h
119
int32_t DemoBestIndex(sqlite3_index_info *
idxInfo
);
/developtools/smartperf_host/trace_streamer/src/table/base/include/
H
A
D
table_base.h
165
int32_t BestIndex(sqlite3_index_info *
idxInfo
);
Completed in 2 milliseconds