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

1 2 3 4 5 6 7 8 910

  /sdk/emulator/opengl/host/tools/emugen/
getopt.c 15 static const char* place = kEmpty; local
16 if (!*place) {
36 place = arg + 1;
39 place = arg + 2;
52 if (!*place)
59 if (*place) {
60 optarg = (char *)place;
65 place = kEmpty;
70 place = kEmpty;
  /external/libpcap/Win32/Src/
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)
    [all...]
  /external/tcpdump/win32/Src/
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)
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
getopt_long.c 107 static char *place = EMSG; /* option letter processing */ variable
202 current_argv = place;
397 if (optreset || !*place) { /* update scanning pointer */
400 place = EMSG;
417 if (*(place = nargv[optind]) != '-' ||
419 place[1] == '\0') {
421 (place[1] == '\0' && strchr(options, '-') == NULL)) {
423 place = EMSG; /* found non-option */
459 if (place[1] != '\0' && *++place == '-' && place[1] == '\0')
    [all...]
  /external/chromium_org/third_party/mesa/src/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...]
  /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...]
  /external/pdfium/core/src/fpdfdoc/
doc_vt.cpp 33 CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace & place) const
35 if (place.nWordIndex > m_LineInfo.nEndWordIndex) {
36 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, m_LineInfo.nEndWordIndex);
38 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex - 1);
40 CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace & place) const
42 if (place.nWordIndex < m_LineInfo.nBeginWordIndex) {
43 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, m_LineInfo.nBeginWordIndex);
188 CPVT_WordPlace place = GetBeginWordPlace(); local
841 CPVT_WordPlace place; local
1078 CPVT_WordPlace place = GetBeginWordPlace(); local
1162 CPVT_WordPlace place = GetBeginWordPlace(); local
1609 CPVT_WordPlace place; local
    [all...]
pdf_vt.h 223 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace & place) const;
224 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace & place) const;
293 CPVT_WordPlace AddWord(const CPVT_WordPlace & place, const CPVT_WordInfo & wordinfo);
296 void ClearWord(const CPVT_WordPlace & place);
301 CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace & place) const;
302 CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace & place) const;
303 void UpdateWordPlace(CPVT_WordPlace & place) const;
477 CPVT_WordPlace InsertWord(const CPVT_WordPlace & place, FX_WORD word, FX_INT32 charset = 1,
479 CPVT_WordPlace InsertSection(const CPVT_WordPlace & place, const CPVT_SecProps * pSecProps = NULL,
481 CPVT_WordPlace InsertText(const CPVT_WordPlace & place, FX_LPCWSTR text, FX_INT32 charset = 1,
    [all...]
  /external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.place/
Android.mk 17 test_makefile := external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.place/Android.mk
19 test_name := utilities/function.objects/bind/func.bind/func.bind.place/placeholders
  /external/pdfium/fpdfsdk/include/pdfwindow/
PWL_Edit.h 99 virtual void OnInsertWord(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace);
100 virtual void OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace);
101 virtual void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace);
102 virtual void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace);
103 virtual void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace);
104 virtual void OnSetText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace);
105 virtual void OnInsertText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace);
119 CPVT_WordRange GetLatinWordsRange(const CPVT_WordPlace & place) const;
120 CPVT_WordRange GetArabicWordsRange(const CPVT_WordPlace & place) const;
121 CPVT_WordRange GetSameWordsRange(const CPVT_WordPlace & place, FX_BOOL bLatin, FX_BOOL bArabic) const;
    [all...]
PWL_EditCtrl.h 43 virtual void OnInsertWord(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){}
44 virtual void OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){}
45 virtual void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){}
46 virtual void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){}
47 virtual void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){}
48 virtual void OnInsertText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){}
49 virtual void OnSetText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace){}
151 virtual void IOnSetCaret(FX_BOOL bVisible,const CPDF_Point & ptHead,const CPDF_Point & ptFoot, const CPVT_WordPlace& place);
  /external/pdfium/core/include/fpdfdoc/
fpdf_vt.h 153 CPVT_WordPlace place = EndPos; local
155 BeginPos = place;
319 virtual void SetAt(const CPVT_WordPlace & place) = 0;
377 virtual CPVT_WordPlace InsertWord(const CPVT_WordPlace & place, FX_WORD word, FX_INT32 charset = 1,
380 virtual CPVT_WordPlace InsertSection(const CPVT_WordPlace & place, const CPVT_SecProps * pSecProps = NULL,
383 virtual CPVT_WordPlace InsertText(const CPVT_WordPlace & place, FX_LPCWSTR text, FX_INT32 charset = 1,
388 virtual CPVT_WordPlace DeleteWord(const CPVT_WordPlace & place) = 0;
390 virtual CPVT_WordPlace BackSpaceWord(const CPVT_WordPlace & place) = 0;
418 virtual CPVT_WordPlace GetPrevWordPlace(const CPVT_WordPlace & place) const = 0;
420 virtual CPVT_WordPlace GetNextWordPlace(const CPVT_WordPlace & place) const = 0;
    [all...]
  /external/clang/test/Sema/
parentheses.cpp 8 // expected-note {{place parentheses around the '+' expression to silence this warning}} \
9 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
16 // expected-note {{place parentheses around the '-' expression to silence this warning}} \
17 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
24 // expected-note {{place parentheses around the '*' expression to silence this warning}} \
25 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
43 // expected-note {{place parentheses around the '<<' expression to silence this warning}} \
44 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
51 // expected-note {{place parentheses around the '<<' expression to silence this warning}} \
52 // expected-note {{place parentheses around comparison expression to evaluate it first}
    [all...]
  /external/oprofile/module/
op_dcache.h 64 char * place = op_pool_pos; local
68 strcpy(place, str);
70 return place - op_pool_start;
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 59 enum place { _ }; enum in namespace:ParameterPackExpansions
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/libvorbis/examples/
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/chromium_org/ui/base/cocoa/
nsview_additions.h 26 isPositioned:(NSWindowOrderingMode)place
  /external/valgrind/main/drd/tests/
verify-xml-output 19 ../../vg-in-place --tool=drd --xml=yes --xml-file="$b-%q{USER}.xml" --xml-user-comment="<runBy>$(basename $0)</runBy>" --child-silent-after-fork=yes --gen-suppressions=all $vgopts ./$prog $args
  /external/pdfium/fpdfsdk/include/fxedit/
fx_edit.h 76 virtual void IOnSetCaret(FX_BOOL bVisible,const CPDF_Point & ptHead,const CPDF_Point & ptFoot, const CPVT_WordPlace& place) = 0;
90 virtual void OnInsertWord(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0;
92 virtual void OnInsertReturn(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0;
94 virtual void OnBackSpace(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0;
96 virtual void OnDelete(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0;
98 virtual void OnClear(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0;
100 virtual void OnInsertText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0;
102 virtual void OnSetText(const CPVT_WordPlace& place, const CPVT_WordPlace& oldplace) = 0;
135 virtual void SetAt(const CPVT_WordPlace & place) = 0;
331 //map word place to word index.
    [all...]
  /external/chromium_org/net/websockets/
websocket_test_util.cc 107 for (size_t place = 0; place < detail_->return_to_read.size();
108 place += kHttpStreamParserBufferSize) {
110 MockRead(SYNCHRONOUS, detail_->return_to_read.data() + place,
111 std::min(detail_->return_to_read.size() - place,
  /external/chromium_org/third_party/skia/tools/
reformat-json.py 46 parser = argparse.ArgumentParser(description='Reformat JSON files in-place.')
  /external/skia/tools/
reformat-json.py 46 parser = argparse.ArgumentParser(description='Reformat JSON files in-place.')
  /system/core/libbacktrace/
GetPss.cpp 37 static bool ReadData(int fd, unsigned long place, uint64_t *data) {
38 if (lseek(fd, place * sizeof(uint64_t), SEEK_SET) < 0) {
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_ap.cpp 87 CPVT_WordPlace place = pIterator->GetAt(); local
89 if (pRange && place.WordCmp(pRange->EndPos) > 0) break;
93 if (place.LineCmp(oldplace) != 0)
138 oldplace = place;
205 CPVT_WordPlace place = pIterator->GetAt(); local
207 if (pRange && place.WordCmp(pRange->EndPos) > 0) break;
fxet_pageobjs.cpp 108 CPVT_WordPlace place = pIterator->GetAt(); local
109 if (pRange && place.WordCmp(pRange->EndPos) > 0) break;
182 CPVT_WordPlace place = pIterator->GetAt(); local
183 if (pRange && place.WordCmp(pRange->EndPos) > 0) break;
187 bSelect = place.WordCmp(wrSelect.BeginPos) > 0 && place.WordCmp(wrSelect.EndPos) <= 0;
233 if (place.LineCmp(oldplace) != 0 || word.nFontIndex != nFontIndex ||
256 oldplace = place;
316 CPVT_WordPlace place = pIterator->GetAt(); local
317 if (pRange && place.WordCmp(pRange->EndPos) > 0) break;
521 CPVT_WordPlace place = pIterator->GetAt(); local
583 CPVT_WordPlace place = pIterator->GetAt(); local
670 CPVT_WordPlace place = pIterator->GetAt(); local
    [all...]

Completed in 1962 milliseconds

1 2 3 4 5 6 7 8 910