/external/pdfium/core/fpdfdoc/ |
D | cpdf_variabletext.cpp | 95 void CPDF_VariableText::Iterator::SetAt(const CPVT_WordPlace& place) { in SetAt() argument 97 m_CurPos = place; in SetAt() 201 CPVT_WordPlace place; in Initialize() local 202 place.nSecIndex = 0; in Initialize() 203 AddSection(place); in Initialize() 208 AddLine(place, lineinfo); in Initialize() 216 CPVT_WordPlace CPDF_VariableText::InsertWord(const CPVT_WordPlace& place, in InsertWord() argument 221 return place; in InsertWord() 223 return place; in InsertWord() 225 CPVT_WordPlace newplace = place; in InsertWord() [all …]
|
D | csection.cpp | 34 CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace& place, in AddWord() argument 37 place.nWordIndex, 0, pdfium::CollectionSize<int32_t>(m_WordArray)); in AddWord() 40 return place; in AddWord() 70 CPVT_WordPlace CSection::GetPrevWordPlace(const CPVT_WordPlace& place) const { in GetPrevWordPlace() 71 if (place.nLineIndex < 0) in GetPrevWordPlace() 74 if (place.nLineIndex >= pdfium::CollectionSize<int32_t>(m_LineArray)) in GetPrevWordPlace() 77 CLine* pLine = m_LineArray[place.nLineIndex].get(); in GetPrevWordPlace() 78 if (place.nWordIndex == pLine->m_LineInfo.nBeginWordIndex) in GetPrevWordPlace() 79 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1); in GetPrevWordPlace() 81 if (place.nWordIndex >= pLine->m_LineInfo.nBeginWordIndex) in GetPrevWordPlace() [all …]
|
D | cline.cpp | 24 CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace& place) const { in GetPrevWordPlace() 25 if (place.nWordIndex > m_LineInfo.nEndWordIndex) { in GetPrevWordPlace() 26 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetPrevWordPlace() 29 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetPrevWordPlace() 30 place.nWordIndex - 1); in GetPrevWordPlace() 33 CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace& place) const { in GetNextWordPlace() 34 if (place.nWordIndex < m_LineInfo.nBeginWordIndex) { in GetNextWordPlace() 35 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetNextWordPlace() 38 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, in GetNextWordPlace() 39 place.nWordIndex + 1); in GetNextWordPlace()
|
D | 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 …]
|
D | 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;
|
D | cline.h | 21 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace& place) const; 22 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace& place) const;
|
/external/openssh/openbsd-compat/ |
D | getopt_long.c | 101 static char *place = EMSG; /* option letter processing */ variable 183 current_argv = place; in parse_long_options() 328 if (optreset || !*place) { /* update scanning pointer */ in getopt_internal() 331 place = EMSG; in getopt_internal() 348 if (*(place = nargv[optind]) != '-' || in getopt_internal() 349 (place[1] == '\0' && strchr(options, '-') == NULL)) { in getopt_internal() 350 place = EMSG; /* found non-option */ in getopt_internal() 386 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { in getopt_internal() 388 place = EMSG; in getopt_internal() 409 if (long_options != NULL && place != nargv[optind] && in getopt_internal() [all …]
|
D | bsd-snprintf.c | 549 int place = 0; in fmtint() local 574 convert[place++] = in fmtint() 578 } while(uvalue && (place < 20)); in fmtint() 579 if (place == 20) place--; in fmtint() 580 convert[place] = 0; in fmtint() 582 zpadlen = max - place; in fmtint() 583 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0); in fmtint() 595 zpadlen, spadlen, min, max, place); in fmtint() 617 while (place > 0) { in fmtint() 618 --place; in fmtint() [all …]
|
/external/mesa3d/src/getopt/ |
D | getopt_long.c | 84 static char *place = EMSG; /* option letter processing */ variable 166 current_argv = place; in parse_long_options() 311 if (optreset || !*place) { /* update scanning pointer */ in getopt_internal() 314 place = EMSG; in getopt_internal() 331 if (*(place = nargv[optind]) != '-' || in getopt_internal() 332 (place[1] == '\0' && strchr(options, '-') == NULL)) { in getopt_internal() 333 place = EMSG; /* found non-option */ in getopt_internal() 369 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { in getopt_internal() 371 place = EMSG; in getopt_internal() 392 if (long_options != NULL && place != nargv[optind] && in getopt_internal() [all …]
|
/external/libpcap/missing/ |
D | getopt.c | 63 static char *place = EMSG; /* option letter processing */ in getopt() local 72 if (optreset || !*place) { /* update scanning pointer */ in getopt() 74 if (optind >= nargc || *(place = nargv[optind]) != '-') { in getopt() 75 place = EMSG; in getopt() 78 if (place[1] && *++place == '-') { /* found "--" */ in getopt() 80 place = EMSG; in getopt() 84 if ((optopt = (int)*place++) == (int)':' || in getopt() 92 if (!*place) in getopt() 101 if (!*place) in getopt() 105 if (*place) /* no white space */ in getopt() [all …]
|
/external/skqp/src/compute/skc/platforms/cl_12/ |
D | composition_cl_12.c | 151 cl(ReleaseKernel(impl->kernels.place)); in skc_composition_pfn_release() 174 struct skc_composition_place * const place = skc_grid_get_data(grid); in skc_composition_place_grid_pfn_dispose() local 175 struct skc_composition_impl * const impl = place->impl; in skc_composition_place_grid_pfn_dispose() 179 skc_runtime_release_cq_in_order(runtime,place->cq); in skc_composition_place_grid_pfn_dispose() 182 skc_extent_phw1g_tdrNs_snap_free(runtime,&place->cmds); in skc_composition_place_grid_pfn_dispose() 185 skc_runtime_host_temp_free(runtime,place,place->id); in skc_composition_place_grid_pfn_dispose() 208 struct skc_composition_place * const place = skc_grid_get_data(grid); in skc_composition_place_read_cb() local 209 struct skc_composition_impl * const impl = place->impl; in skc_composition_place_read_cb() 230 struct skc_composition_place * const place = skc_grid_get_data(grid); in skc_composition_place_grid_pfn_execute() local 231 struct skc_composition_impl * const impl = place->impl; in skc_composition_place_grid_pfn_execute() [all …]
|
D | composition_cl_12.h | 50 skc_grid_t place; member 57 cl_kernel place; member
|
/external/skia/src/compute/skc/platforms/cl_12/ |
D | composition_cl_12.c | 151 cl(ReleaseKernel(impl->kernels.place)); in skc_composition_pfn_release() 174 struct skc_composition_place * const place = skc_grid_get_data(grid); in skc_composition_place_grid_pfn_dispose() local 175 struct skc_composition_impl * const impl = place->impl; in skc_composition_place_grid_pfn_dispose() 179 skc_runtime_release_cq_in_order(runtime,place->cq); in skc_composition_place_grid_pfn_dispose() 182 skc_extent_phw1g_tdrNs_snap_free(runtime,&place->cmds); in skc_composition_place_grid_pfn_dispose() 185 skc_runtime_host_temp_free(runtime,place,place->id); in skc_composition_place_grid_pfn_dispose() 208 struct skc_composition_place * const place = skc_grid_get_data(grid); in skc_composition_place_read_cb() local 209 struct skc_composition_impl * const impl = place->impl; in skc_composition_place_read_cb() 230 struct skc_composition_place * const place = skc_grid_get_data(grid); in skc_composition_place_grid_pfn_execute() local 231 struct skc_composition_impl * const impl = place->impl; in skc_composition_place_grid_pfn_execute() [all …]
|
/external/tcpdump/missing/ |
D | getopt_long.c | 92 static const char *place = EMSG; /* option letter processing */ variable 199 current_argv = place; in parse_long_options() 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') { 455 place = EMSG; [all …]
|
/external/curl/tests/data/ |
D | Makefile.am | 11 @mkdir test-place; \ 12 cp "$(top_srcdir)"/tests/data/test[0-9]* test-place/; \ 13 rm test-place/*~; \ 22 ls test-place; \ 23 ! ls test-place | grep . >/dev/null ; \ 25 rm -rf test-place ; \
|
/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_edit.h | 97 void OnInsertWord(const CPVT_WordPlace& place, 99 void OnInsertReturn(const CPVT_WordPlace& place, 101 void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 102 void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 103 void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 104 void OnInsertText(const CPVT_WordPlace& place, 123 CPVT_WordRange GetLatinWordsRange(const CPVT_WordPlace& place) const; 124 CPVT_WordRange GetSameWordsRange(const CPVT_WordPlace& place,
|
D | cpwl_edit.cpp | 610 void CPWL_Edit::OnInsertReturn(const CPVT_WordPlace& place, in OnInsertReturn() argument 614 GetLatinWordsRange(place))); in OnInsertReturn() 618 void CPWL_Edit::OnBackSpace(const CPVT_WordPlace& place, in OnBackSpace() argument 622 GetLatinWordsRange(place))); in OnBackSpace() 626 void CPWL_Edit::OnDelete(const CPVT_WordPlace& place, in OnDelete() argument 630 GetLatinWordsRange(place))); in OnDelete() 634 void CPWL_Edit::OnClear(const CPVT_WordPlace& place, in OnClear() argument 638 GetLatinWordsRange(place))); in OnClear() 642 void CPWL_Edit::OnInsertWord(const CPVT_WordPlace& place, in OnInsertWord() argument 646 GetLatinWordsRange(place))); in OnInsertWord() [all …]
|
D | cpwl_edit_impl.cpp | 109 void CPWL_EditImpl_Iterator::SetAt(const CPVT_WordPlace& place) { in SetAt() argument 110 m_pVTIterator->SetAt(place); in SetAt() 468 CPVT_WordPlace place = pIterator->GetAt(); in DrawEdit() local 469 if (pRange && place > pRange->EndPos) in DrawEdit() 473 bSelect = place > wrSelect.BeginPos && place <= wrSelect.EndPos; in DrawEdit() 504 if (place.LineCmp(oldplace) != 0 || word.nFontIndex != nFontIndex || in DrawEdit() 529 oldplace = place; in DrawEdit() 731 CPVT_WordPlace place = pIterator->GetWordPlace(); in GetText() local 734 if (oldplace.nSecIndex != place.nSecIndex) in GetText() 736 oldplace = place; in GetText() [all …]
|
/external/clang/test/CXX/temp/temp.param/ |
D | p15-cxx0x.cpp | 59 enum place { _ }; enum 60 template<place...> struct places {}; 63 template<place...X1, place...X2> 75 template<place> struct inner { typedef T type; }; 79 template<place...X> struct takedrop_impl<places<X...>> { 81 template<place > class ...Drop>
|
/external/python/cpython3/Doc/c-api/ |
D | number.rst | 76 If *o3* is to be ignored, pass :c:data:`Py_None` in its place (passing *NULL* for 139 is done *in-place* when *o1* supports it. This is the equivalent of the Python 146 operation is done *in-place* when *o1* supports it. This is the equivalent of 153 operation is done *in-place* when *o1* supports it. This is the equivalent of 160 failure. The operation is done *in-place* when *o1* supports it. This is 169 The operation is done *in-place* when *o1* supports it. This is the equivalent 179 passed two integers. The operation is done *in-place* when *o1* supports it. 185 operation is done *in-place* when *o1* supports it. This is the equivalent of 194 is done *in-place* when *o1* supports it. This is the equivalent of the Python 195 statement ``o1 **= o2`` when o3 is :c:data:`Py_None`, or an in-place variant of [all …]
|
/external/python/cpython2/Demo/tkinter/matt/ |
D | placer-simple.py | 6 app.button.place(x=event.x, y=event.y) 21 f.place(relx=0.0, rely=0.0) 28 f.button.place(relx=0.5, rely=0.0, anchor=NW)
|
/external/python/cpython2/Doc/c-api/ |
D | number.rst | 78 If *o3* is to be ignored, pass :c:data:`Py_None` in its place (passing *NULL* for 141 is done *in-place* when *o1* supports it. This is the equivalent of the Python 148 operation is done *in-place* when *o1* supports it. This is the equivalent of 155 operation is done *in-place* when *o1* supports it. This is the equivalent of 162 operation is done *in-place* when *o1* supports it. This is the equivalent of 169 The operation is done *in-place* when *o1* supports it. This is the equivalent 181 passed two integers. The operation is done *in-place* when *o1* supports it. 189 operation is done *in-place* when *o1* supports it. This is the equivalent of 198 is done *in-place* when *o1* supports it. This is the equivalent of the Python 199 statement ``o1 **= o2`` when o3 is :c:data:`Py_None`, or an in-place variant of [all …]
|
/external/clang/test/Sema/ |
D | parentheses.cpp | 89 … expected-note {{place parentheses around the '+' expression to silence this warning}} in test() 94 … expected-note {{place parentheses around the '-' expression to silence this warning}} in test() 100 … expected-note {{place parentheses around the '+' expression to silence this warning}} in test()
|
/external/cldr/common/properties/ |
D | labels.txt | 91 [-] ; Travel & Places ; place-map 92 [⛰--] ; Travel & Places ; place-geographic 93 [--] ; Travel & Places ; place-building 94 [] ; Travel & Places ; place-building 95 [⛩⛪-] ; Travel & Places ; place-religious 96 [♨⛲⛺--] ; Travel & Places ; place-other 97 [] ; Travel & Places ; place-other
|
/external/clang/test/Parser/ |
D | attributes.mm | 12 EXP class C2 {}; // expected-warning {{attribute 'visibility' is ignored, place it after "class" to… 14 …ted-error {{postfix attributes are not allowed on Objective-C directives, place them in front of '… 24 …ted-error {{postfix attributes are not allowed on Objective-C directives, place them in front of '…
|