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:fParagraphIndex
(Results
1 - 2
of
2
) sorted by relevance
/third_party/skia/modules/skplaintexteditor/src/
H
A
D
editor.cpp
128
const TextLine& cLine = fLines[cursor.
fParagraphIndex
];
in getLocation()
152
if (pos.
fParagraphIndex
< fLines.size()) {
in insert()
153
fLines[pos.
fParagraphIndex
].fText.insert(pos.fTextByteIndex, utf8Text, byteLen);
in insert()
154
this->markDirty(&fLines[pos.
fParagraphIndex
]);
in insert()
156
SkASSERT(pos.
fParagraphIndex
== fLines.size());
in insert()
160
pos = Editor::TextPosition{pos.fTextByteIndex + byteLen, pos.
fParagraphIndex
};
in insert()
161
size_t newlinecount = count_char(fLines[pos.
fParagraphIndex
].fText, '\n');
in insert()
163
StringSlice src = std::move(fLines[pos.
fParagraphIndex
].fText);
in insert()
164
std::vector<TextLine>::const_iterator next = fLines.begin() + pos.
fParagraphIndex
+ 1;
in insert()
166
TextLine* line = &fLines[pos.
fParagraphIndex
];
in insert()
[all...]
/third_party/skia/modules/skplaintexteditor/include/
H
A
D
editor.h
60
size_t
fParagraphIndex
= SIZE_MAX; // logical line, based on hard newline characters.
member
130
return u.
fParagraphIndex
== v.
fParagraphIndex
&& u.fTextByteIndex == v.fTextByteIndex;
in operator ==()
137
return u.
fParagraphIndex
< v.
fParagraphIndex
||
in operator <()
138
(u.
fParagraphIndex
== v.
fParagraphIndex
&& u.fTextByteIndex < v.fTextByteIndex);
in operator <()
Completed in 2 milliseconds