/external/pdfium/core/src/fpdfdoc/ |
D | doc_vt.cpp | 33 CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace & place) const in GetPrevWordPlace() 35 if (place.nWordIndex > m_LineInfo.nEndWordIndex) { in GetPrevWordPlace() 36 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, m_LineInfo.nEndWordIndex); in GetPrevWordPlace() 38 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex - 1); in GetPrevWordPlace() 40 CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace & place) const in GetNextWordPlace() 42 if (place.nWordIndex < m_LineInfo.nBeginWordIndex) { in GetNextWordPlace() 43 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, m_LineInfo.nBeginWordIndex); in GetNextWordPlace() 45 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex + 1); in GetNextWordPlace() 78 CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace & place, const CPVT_WordInfo & wordinfo) in AddWord() argument 81 FX_INT32 nWordIndex = FPDF_MAX(FPDF_MIN(place.nWordIndex, this->m_WordArray.GetSize()), 0); in AddWord() [all …]
|
D | pdf_vt.h | 225 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace & place) const; 226 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace & place) const; 290 CPVT_WordPlace AddWord(const CPVT_WordPlace & place, const CPVT_WordInfo & wordinfo); 293 void ClearWord(const CPVT_WordPlace & place); 298 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace & place) const; 299 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace & place) const; 300 void UpdateWordPlace(CPVT_WordPlace & place) const; 474 … CPVT_WordPlace InsertWord(const CPVT_WordPlace & place, FX_WORD word, FX_INT32 charset = 1, 476 …CPVT_WordPlace InsertSection(const CPVT_WordPlace & place, const CPVT_SecProps * pSecProps =… 478 …CPVT_WordPlace InsertText(const CPVT_WordPlace & place, FX_LPCWSTR text, FX_INT32 charset = … [all …]
|
/external/tcpdump/win32/Src/ |
D | getopt.c | 63 static char *place = EMSG; /* option letter processing */ local 66 if (optreset || !*place) { /* update scanning pointer */ 68 if (optind >= nargc || *(place = nargv[optind]) != '-') { 69 place = EMSG; 72 if (place[1] && *++place == '-') { /* found "--" */ 74 place = EMSG; 78 if ((optopt = (int)*place++) == (int)':' || 86 if (!*place) 95 if (!*place) 99 if (*place) /* no white space */ [all …]
|
/external/libpcap/Win32/Src/ |
D | getopt.c | 67 static char *place = EMSG; /* option letter processing */ local 70 if (optreset || !*place) { /* update scanning pointer */ 72 if (optind >= nargc || *(place = nargv[optind]) != '-') { 73 place = EMSG; 76 if (place[1] && *++place == '-') { /* found "--" */ 78 place = EMSG; 82 if ((optopt = (int)*place++) == (int)':' || 90 if (!*place) 99 if (!*place) 103 if (*place) /* no white space */ [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/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 | 561 int place = 0; in fmtint() local 586 convert[place++] = in fmtint() 590 } while(uvalue && (place < 20)); in fmtint() 591 if (place == 20) place--; in fmtint() 592 convert[place] = 0; in fmtint() 594 zpadlen = max - place; in fmtint() 595 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0); in fmtint() 607 zpadlen, spadlen, min, max, place); in fmtint() 629 while (place > 0) { in fmtint() 630 --place; in fmtint() [all …]
|
/external/pdfium/core/include/fpdfdoc/ |
D | fpdf_vt.h | 157 CPVT_WordPlace place = EndPos; in SwapWordPlace() local 159 BeginPos = place; in SwapWordPlace() 325 virtual void SetAt(const CPVT_WordPlace & place) = 0; 381 …virtual CPVT_WordPlace InsertWord(const CPVT_WordPlace & place, FX_WORD word, FX_INT32 charset… 384 …virtual CPVT_WordPlace InsertSection(const CPVT_WordPlace & place, const CPVT_SecProps * pSecP… 387 …virtual CPVT_WordPlace InsertText(const CPVT_WordPlace & place, FX_LPCWSTR text, FX_INT32 char… 392 virtual CPVT_WordPlace DeleteWord(const CPVT_WordPlace & place) = 0; 394 virtual CPVT_WordPlace BackSpaceWord(const CPVT_WordPlace & place) = 0; 422 virtual CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace & place) const = 0; 424 virtual CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace & place) const = 0; [all …]
|
/external/pdfium/fpdfsdk/include/pdfwindow/ |
D | PWL_Edit.h | 104 virtual void OnInsertWord(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 105 virtual void OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 106 virtual void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 107 virtual void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 108 virtual void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 109 virtual void OnSetText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 110 virtual void OnInsertText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace); 124 CPVT_WordRange GetLatinWordsRange(const CPVT_WordPlace & place) const; 125 CPVT_WordRange GetArabicWordsRange(const CPVT_WordPlace & place) const; 126 …CPVT_WordRange GetSameWordsRange(const CPVT_WordPlace & place, FX_BOOL bLatin, FX_BOOL bArabic…
|
D | PWL_EditCtrl.h | 49 virtual void OnInsertWord(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnInsertWord() argument 50 virtual void OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnInsertReturn() argument 51 virtual void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnBackSpace() argument 52 virtual void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnDelete() argument 53 virtual void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnClear() argument 54 virtual void OnInsertText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnInsertText() argument 55 virtual void OnSetText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){} in OnSetText() argument 157 …FX_BOOL bVisible,const CPDF_Point & ptHead,const CPDF_Point & ptFoot, const CPVT_WordPlace& place);
|
/external/libvorbis/examples/ |
D | frameview.pl | 189 place(-x=>10,-y=>36,-relwidth=>1.0,-relheight=>1.0, 193 place(-x=>-1,-y=>-1,-relx=>1.0,-rely=>1.0,-anchor=>'se'); 196 place(-x=>5,-y=>5,-anchor=>'nw'); 200 place(-x=>10,-y=>36,-relwidth=>1.0,-relheight=>1.0, 204 place(-x=>5,-y=>5,-anchor=>'nw'); 209 place(-x=>-5,-relx=>1.,-y=>$panely,-anchor=>'ne'); 216 place(-x=>5,-y=>-5,-rely=>1.,-relwidth=>.2,-width=>-5,-anchor=>'sw'); 220 place(-x=>-5,-y=>-5,-relwidth=>.2,-rely=>1.,-width=>-5,-relx=>1.,-anchor=>'se'); 224 place(-x=>5,-y=>-5,-relwidth=>.3,-width=>-7,-rely=>1.,-relx=>.2,-anchor=>'sw'); 228 place(-x=>-5,-y=>-5,-relwidth=>.3,-width=>-7,-rely=>1.,-relx=>.8,-anchor=>'se'); [all …]
|
/external/pdfium/fpdfsdk/src/fxedit/ |
D | fxet_pageobjs.cpp | 108 CPVT_WordPlace place = pIterator->GetAt(); in DrawUnderline() local 109 if (pRange && place.WordCmp(pRange->EndPos) > 0) break; in DrawUnderline() 182 CPVT_WordPlace place = pIterator->GetAt(); in DrawEdit() local 183 if (pRange && place.WordCmp(pRange->EndPos) > 0) break; in DrawEdit() 187 bSelect = place.WordCmp(wrSelect.BeginPos) > 0 && place.WordCmp(wrSelect.EndPos) <= 0; in DrawEdit() 233 if (place.LineCmp(oldplace) != 0 || word.nFontIndex != nFontIndex || in DrawEdit() 256 oldplace = place; in DrawEdit() 316 CPVT_WordPlace place = pIterator->GetAt(); in DrawRichEdit() local 317 if (pRange && place.WordCmp(pRange->EndPos) > 0) break; in DrawRichEdit() 328 bSelect = place.WordCmp(wrSelect.BeginPos) > 0 && place.WordCmp(wrSelect.EndPos) <= 0; in DrawRichEdit() [all …]
|
D | fxet_edit.cpp | 115 void CFX_Edit_Iterator::SetAt(const CPVT_WordPlace & place) in SetAt() argument 119 m_pVTIterator->SetAt(place); in SetAt() 852 CFXEU_SetSecProps::CFXEU_SetSecProps(CFX_Edit * pEdit, const CPVT_WordPlace & place, EDIT_PROPS_E e… in CFXEU_SetSecProps() argument 856 m_wpPlace(place), in CFXEU_SetSecProps() 900 CFXEU_SetWordProps::CFXEU_SetWordProps(CFX_Edit * pEdit, const CPVT_WordPlace & place, EDIT_PROPS_E… in CFXEU_SetWordProps() argument 903 m_wpPlace(place), in CFXEU_SetWordProps() 1241 CPVT_WordPlace place = pIterator->GetAt(); in GetText() local 1255 if (oldplace.SecCmp(place) != 0) in GetText() 1261 oldplace = place; in GetText() 1288 CPVT_WordPlace place = pIterator->GetAt(); in GetRangeText() local [all …]
|
D | fxet_ap.cpp | 87 CPVT_WordPlace place = pIterator->GetAt(); in GetEditAppearanceStream() local 89 if (pRange && place.WordCmp(pRange->EndPos) > 0) break; in GetEditAppearanceStream() 93 if (place.LineCmp(oldplace) != 0) in GetEditAppearanceStream() 138 oldplace = place; in GetEditAppearanceStream() 205 CPVT_WordPlace place = pIterator->GetAt(); in GetSelectAppearanceStream() local 207 if (pRange && place.WordCmp(pRange->EndPos) > 0) break; in GetSelectAppearanceStream()
|
/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/valgrind/drd/ |
D | Testing.txt | 40 ./vg-in-place --tool=drd --check-stack-var=yes drd/tests/tsan_unittest 2>&1|less 48 ./vg-in-place --tool=drd --read-var-info=yes kate 49 ./vg-in-place --tool=drd --read-var-info=yes --check-stack-var=yes kate 50 ./vg-in-place --tool=drd --read-var-info=yes --trace-children=yes knode 51 ./vg-in-place --tool=drd --read-var-info=yes --check-stack-var=yes --trace-children=yes knode 52 ./vg-in-place --tool=drd --read-var-info=yes --check-stack-var=yes /usr/bin/designer 55 …./vg-in-place --tool=drd --trace-fork-join=yes --show-confl-seg=no --gen-suppressions=all /Applica… 56 …./vg-in-place --tool=drd --trace-fork-join=yes --show-confl-seg=no --gen-suppressions=all /Applica… 61 ./vg-in-place --tool=drd --read-var-info=yes --trace-children=yes gnome-terminal 79 …make -j2 -s MEMCHECK="$HOME/software/valgrind/vg-in-place --tool=drd --check-stack-var=yes --read-… [all …]
|
/external/bison/tests/ |
D | existing.at | 1686 | LABEL ':' optional_separator place 1773 | place 1795 place: 1899 | place DOT_X 1900 | place DOT_Y 1901 | place DOT_HT 1902 | place DOT_WID 1903 | place DOT_RAD 1972 place go to state 114 1981 place go to state 114 [all …]
|
/external/pdfium/fpdfsdk/src/pdfwindow/ |
D | PWL_Edit.cpp | 1094 void CPWL_Edit::OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) in OnInsertReturn() argument 1098 …m_pEdit->RefreshWordRange(CombineWordRange(GetLatinWordsRange(oldplace),GetLatinWordsRange(place))… in OnInsertReturn() 1103 m_pEditNotify->OnInsertReturn(place, oldplace); in OnInsertReturn() 1107 void CPWL_Edit::OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) in OnBackSpace() argument 1111 …m_pEdit->RefreshWordRange(CombineWordRange(GetLatinWordsRange(oldplace),GetLatinWordsRange(place))… in OnBackSpace() 1116 m_pEditNotify->OnBackSpace(place, oldplace); in OnBackSpace() 1120 void CPWL_Edit::OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) in OnDelete() argument 1124 …m_pEdit->RefreshWordRange(CombineWordRange(GetLatinWordsRange(oldplace),GetLatinWordsRange(place))… in OnDelete() 1129 m_pEditNotify->OnDelete(place, oldplace); in OnDelete() 1133 void CPWL_Edit::OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) in OnClear() argument [all …]
|
/external/pdfium/fpdfsdk/include/fxedit/ |
D | fx_edit.h | 96 …OOL bVisible,const CPDF_Point & ptHead,const CPDF_Point & ptFoot, const CPVT_WordPlace& place) = 0; 111 virtual void OnInsertWord(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 113 virtual void OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 115 virtual void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 117 virtual void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 119 virtual void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 121 virtual void OnInsertText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 123 virtual void OnSetText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0; 156 virtual void SetAt(const CPVT_WordPlace & place) = 0; 353 virtual FX_INT32 WordPlaceToWordIndex(const CPVT_WordPlace & place) const = 0; [all …]
|
D | fxet_edit.h | 510 CFXEU_SetSecProps(CFX_Edit * pEdit, const CPVT_WordPlace & place, EDIT_PROPS_E ep, 533 CFXEU_SetWordProps(CFX_Edit * pEdit, const CPVT_WordPlace & place, EDIT_PROPS_E ep, 633 CPVT_WordPlace DoInsertText(const CPVT_WordPlace& place, FX_LPCWSTR text, FX_INT32 charset, 637 FX_INT32 WordPlaceToWordIndex(const CPVT_WordPlace & place) const; 640 CPVT_WordPlace GetLineBeginPlace(const CPVT_WordPlace & place) const; 641 CPVT_WordPlace GetLineEndPlace(const CPVT_WordPlace & place) const; 642 CPVT_WordPlace GetSectionBeginPlace(const CPVT_WordPlace & place) const; 643 CPVT_WordPlace GetSectionEndPlace(const CPVT_WordPlace & place) const; 693 FX_BOOL SetSecProps(EDIT_PROPS_E eProps, const CPVT_WordPlace & place, 695 FX_BOOL SetWordProps(EDIT_PROPS_E eProps, const CPVT_WordPlace & place, [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/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 '…
|
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/examples/ |
D | import.apt | 4 as imports in your main .g files, you need to place the imported grammar 8 For a default layout, place your import grammars in the directory: <<<src/main/antlr3/imports>>>
|
/external/antlr/antlr-3.4/runtime/C/doxygen/ |
D | atsections.dox | 92 /// Here you could for instance place a <code>\#include</code> 94 /// may use multiple parsers and lexers in your solution, you should probably not place 119 /// You should use this section when you wish to place #defines and other definitions 132 /// Code you place here then will be subject to any macros defined by your own includes, by the 133 /// generated include and by the standard ANTLR3 includes. This is a good place to <code>\#undef</c… 137 /// This is also a good place to <code>#define</code> any macros you may wish to use in the generat…
|
/external/mesa3d/docs/ |
D | README.WIN32 | 37 After building, you can copy the above DLL files to a place in your 39 in a system directory, place them in the same directory as the
|