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:alphabet
(Results
1 - 6
of
6
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components/indexer/
H
A
D
indexer_component.cpp
57
std::vector<std::u16string>
alphabet
= Localization::GetInstance()->GetIndexAlphabet(); // get
alphabet
in BuildIndexerAlphabet()
local
58
if (
alphabet
.empty()) {
in BuildIndexerAlphabet()
59
LOGE("fail to build indexer
alphabet
due to
alphabet
is empty");
in BuildIndexerAlphabet()
63
//
alphabet
must begin with "#", and items "." can not be neighbors
in BuildIndexerAlphabet()
64
if (
alphabet
[0] != INDEXER_STR_SHARP || indexerLabel_[0] != INDEXER_STR_SHARP) {
in BuildIndexerAlphabet()
65
LOGE("fail to build indexer
alphabet
due to
alphabet
is wrong");
in BuildIndexerAlphabet()
81
while (countAlphabet <
alphabet
in BuildIndexerAlphabet()
[all...]
H
A
D
indexer_component.h
232
std::vector<std::u16string>
alphabet
;
in GetU16StrVector()
local
234
alphabet
.emplace_back(StringUtils::Str8ToStr16(item));
in GetU16StrVector()
236
return
alphabet
;
in GetU16StrVector()
288
bool userDefineList_ = false; // user define
alphabet
list
/foundation/arkui/ace_engine/frameworks/core/components_v2/indexer/
H
A
D
indexer_component.h
178
std::vector<std::u16string>
alphabet
;
in GetU16StrVector()
local
180
alphabet
.push_back(StringUtils::Str8ToStr16(item));
in GetU16StrVector()
182
return
alphabet
;
in GetU16StrVector()
H
A
D
indexer_component.cpp
44
std::vector<std::u16string>
alphabet
= Localization::GetInstance()->GetIndexAlphabet(); // get
alphabet
in BuildIndexerAlphabet()
local
45
if (
alphabet
.empty()) {
in BuildIndexerAlphabet()
46
LOGE("fail to build indexer
alphabet
due to
alphabet
is empty");
in BuildIndexerAlphabet()
/foundation/arkui/ace_engine/frameworks/base/i18n/
H
A
D
localization.h
252
* Gets
alphabet
strings. For example: "A", "B", etc.
253
* @return the
alphabet
string vector.
274
std::vector<std::u16string> GetLetters(bool
alphabet
);
H
A
D
localization.cpp
741
std::vector<std::u16string> Localization::GetLetters(bool
alphabet
)
in GetLetters()
argument
767
LOGI("[
alphabet
] Localization::GetLetters. language: %{private}s", language.c_str());
in GetLetters()
775
std::string letterType =
alphabet
? "
alphabet
" : "index";
in GetLetters()
Completed in 6 milliseconds