Home
last modified time | relevance | path

Searched refs:kNowhere (Results 1 – 4 of 4) sorted by relevance

/external/brotli/research/
Dsieve.cc16 static const TextIdx kNowhere = static_cast<TextIdx>(-1); variable
20 TextIdx from = kNowhere; in dryRun()
21 TextIdx to = kNowhere; in dryRun()
32 if ((to == kNowhere) || (to < i)) { in dryRun()
33 if (from != kNowhere) { in dryRun()
42 if (from != kNowhere) { in dryRun()
52 TextIdx from = kNowhere; in createDictionary()
53 TextIdx to = kNowhere; in createDictionary()
63 if ((to == kNowhere) || (to < i)) { in createDictionary()
64 if (from != kNowhere) { in createDictionary()
[all …]
/external/skia/modules/skplaintexteditor/src/
Deditor.cpp126 cursor = this->move(Editor::Movement::kNowhere, cursor); in getLocation()
150 pos = this->move(Editor::Movement::kNowhere, pos); in insert()
175 pos1 = this->move(Editor::Movement::kNowhere, pos1); in remove()
176 pos2 = this->move(Editor::Movement::kNowhere, pos2); in remove()
214 pos1 = this->move(Editor::Movement::kNowhere, pos1); in copy()
215 pos2 = this->move(Editor::Movement::kNowhere, pos2); in copy()
299 case Editor::Movement::kNowhere: in move()
/external/skia/modules/skplaintexteditor/include/
Deditor.h63 kNowhere, enumerator
/external/skia/modules/skplaintexteditor/app/
Deditor_application.cpp69 default: return Editor::Movement::kNowhere; in convert()