HomeSort by relevance Sort by last modified time
    Searched refs:place (Results 1 - 25 of 624) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/core/fpdfdoc/
cline.cpp 24 CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace& place) const {
25 if (place.nWordIndex > m_LineInfo.nEndWordIndex) {
26 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex,
29 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex,
30 place.nWordIndex - 1);
33 CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace& place) const {
34 if (place.nWordIndex < m_LineInfo.nBeginWordIndex) {
35 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex
    [all...]
cline.h 21 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace& place) const;
22 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace& place) const;
cpdf_variabletext.cpp 95 void CPDF_VariableText::Iterator::SetAt(const CPVT_WordPlace& place) {
97 m_CurPos = place;
201 CPVT_WordPlace place;
202 place.nSecIndex = 0;
203 AddSection(place);
208 AddLine(place, lineinfo);
216 CPVT_WordPlace CPDF_VariableText::InsertWord(const CPVT_WordPlace& place,
221 return place;
223 return place;
225 CPVT_WordPlace newplace = place;
359 CPVT_WordPlace place = GetBeginWordPlace(); local
431 CPVT_WordPlace place = GetBeginWordPlace(); local
882 CPVT_WordPlace place; local
    [all...]
csection.cpp 34 CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace& place,
37 place.nWordIndex, 0, pdfium::CollectionSize<int32_t>(m_WordArray));
40 return place;
70 CPVT_WordPlace CSection::GetPrevWordPlace(const CPVT_WordPlace& place) const {
71 if (place.nLineIndex < 0)
74 if (place.nLineIndex >= pdfium::CollectionSize<int32_t>(m_LineArray))
77 CLine* pLine = m_LineArray[place.nLineIndex].get();
78 if (place.nWordIndex == pLine->m_LineInfo.nBeginWordIndex)
79 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1)
128 CPVT_WordPlace place = GetBeginWordPlace(); local
    [all...]
cpdf_variabletext.h 43 void SetAt(const CPVT_WordPlace& place);
96 CPVT_WordPlace InsertWord(const CPVT_WordPlace& place,
99 CPVT_WordPlace InsertSection(const CPVT_WordPlace& place);
101 CPVT_WordPlace DeleteWord(const CPVT_WordPlace& place);
102 CPVT_WordPlace BackSpaceWord(const CPVT_WordPlace& place);
117 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace& place) const;
118 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace& place) const;
120 CPVT_WordPlace GetUpWordPlace(const CPVT_WordPlace& place,
122 CPVT_WordPlace GetDownWordPlace(const CPVT_WordPlace& place,
124 CPVT_WordPlace GetLineBeginPlace(const CPVT_WordPlace& place) const
    [all...]
csection.h 32 CPVT_WordPlace AddWord(const CPVT_WordPlace& place,
36 void ClearWord(const CPVT_WordPlace& place);
41 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace& place) const;
42 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace& place) const;
43 void UpdateWordPlace(CPVT_WordPlace& place) const;
  /external/libpcap/missing/
getopt.c 66 static char *place = EMSG; /* option letter processing */ local
75 if (optreset || !*place) { /* update scanning pointer */
77 if (optind >= nargc || *(place = nargv[optind]) != '-') {
78 place = EMSG;
81 if (place[1] && *++place == '-') { /* found "--" */
83 place = EMSG;
87 if ((optopt = (int)*place++) == (int)':' ||
95 if (!*place)
104 if (!*place)
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
farcall-b-none-function.s 4 # We will place the section .text at 0x1000.
12 # We will place the section .foo at 0x8001000.
farcall-b.s 4 # We will place the section .text at 0x1000.
12 # We will place the section .foo at 0x8001000.
farcall-bl-none-function.s 4 # We will place the section .text at 0x1000.
12 # We will place the section .foo at 0x8001000.
farcall-bl.s 4 # We will place the section .text at 0x1000.
12 # We will place the section .foo at 0x8001000.
farcall-b-defsym.s 4 # We will place the section .text at 0x1000.
farcall-bl-defsym.s 4 # We will place the section .text at 0x1000.
farcall-b-section.s 3 # We will place the section .text at 0x1000.
12 # We will place the section .foo at 0x8001000.
farcall-bl-section.s 3 # We will place the section .text at 0x1000.
12 # We will place the section .foo at 0x8001000.
limit-b.s 6 # We will place the section .text at 0x1000.
14 # We will place the section .foo at 0x8000ffc
limit-bl.s 6 # We will place the section .text at 0x1000.
14 # We will place the section .foo at 0x8000ffc
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
getopt_long.c 107 static char *place = EMSG; /* option letter processing */ variable
202 current_argv = place;
391 if (optreset || !*place) { /* update scanning pointer */
394 place = EMSG;
411 if (*(place = nargv[optind]) != '-' ||
413 place[1] == '\0') {
415 (place[1] == '\0' && strchr(options, '-') == NULL)) {
417 place = EMSG; /* found non-option */
453 if (place[1] != '\0' && *++place == '-' && place[1] == '\0')
    [all...]
  /external/tcpdump/missing/
getopt_long.c 92 static const char *place = EMSG; /* option letter processing */ variable
199 current_argv = place;
392 if (!*place) { /* update scanning pointer */
394 place = EMSG;
411 if (*(place = nargv[optind]) != '-' ||
413 place[1] == '\0') {
415 (place[1] == '\0' && strchr(options, '-') == NULL)) {
417 place = EMSG; /* found non-option */
453 if (place[1] != '\0' && *++place == '-' && place[1] == '\0')
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
group-relocs-ldr-bad-2.s 3 @ We will place .text at 0x8000.
12 @ We will place the section foo at 0x8001000.
group-relocs-ldrs-bad-2.s 3 @ We will place .text at 0x8000.
12 @ We will place the section foo at 0x8000100.
thumb1-bl.s 7 @ We will place the section .text at 0x1000.
15 @ We will place the section .foo at 0x401000.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
orphan-8.d 1 #name: Place orphan sections
2 #ld: --script orphan.ld --orphan-handling=place
  /external/mesa3d/src/getopt/
getopt_long.c 84 static char *place = EMSG; /* option letter processing */ variable
166 current_argv = place;
311 if (optreset || !*place) { /* update scanning pointer */
314 place = EMSG;
331 if (*(place = nargv[optind]) != '-' ||
332 (place[1] == '\0' && strchr(options, '-') == NULL)) {
333 place = EMSG; /* found non-option */
369 if (place[1] != '\0' && *++place == '-' && place[1] == '\0')
    [all...]
  /system/core/logcat/
getopt_long.cpp 117 const char* current_argv = context->place;
261 if (context->optreset || !*context->place) { // update scanning pointer
264 context->place = EMSG;
275 if (*(context->place = nargv[context->optind]) != '-' ||
276 context->place[1] == '\0') {
277 context->place = EMSG; // found non-option
303 if (context->place[1] != '\0' && *++(context->place) == '-' &&
304 context->place[1] == '\0') {
306 context->place = EMSG
    [all...]

Completed in 320 milliseconds

1 2 3 4 5 6 7 8 91011>>