OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nWordIndex
(Results
1 - 2
of
2
) sorted by null
/external/pdfium/core/include/fpdfdoc/
fpdf_vt.h
23
CPVT_WordPlace() : nSecIndex(-1), nLineIndex(-1),
nWordIndex
(-1) {}
30
nWordIndex
= other_nWordIndex;
33
void Default() { nSecIndex = nLineIndex =
nWordIndex
= -1; }
37
wp.
nWordIndex
==
nWordIndex
;
42
wp.
nWordIndex
!=
nWordIndex
;
58
if (
nWordIndex
> wp.
nWordIndex
) {
61
if (
nWordIndex
< wp.nWordIndex)
[
all
...]
/external/pdfium/core/src/fpdfdoc/
doc_vt.cpp
34
if (place.
nWordIndex
> m_LineInfo.nEndWordIndex) {
39
place.
nWordIndex
- 1);
42
if (place.
nWordIndex
< m_LineInfo.nBeginWordIndex) {
47
place.
nWordIndex
+ 1);
76
int32_t
nWordIndex
=
77
std::max(std::min(place.
nWordIndex
, m_WordArray.GetSize()), 0);
78
if (
nWordIndex
== m_WordArray.GetSize()) {
81
m_WordArray.InsertAt(
nWordIndex
, pWord);
117
if (place.
nWordIndex
== pLine->m_LineInfo.nBeginWordIndex) {
120
if (place.
nWordIndex
< pLine->m_LineInfo.nBeginWordIndex)
[
all
...]
Completed in 3287 milliseconds