Searched refs:pos (Results 251 - 275 of 1683) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Drbbistbl.cpp139 ParsePosition& pos, int32_t limit) const
141 int32_t start = pos.getIndex();
154 pos.setIndex(i);
233 int32_t pos = -1; local
236 e = uhash_nextElement(fHashTable, &pos);
249 pos = -1;
251 e = uhash_nextElement(fHashTable, &pos);
138 parseReference(const UnicodeString& text, ParsePosition& pos, int32_t limit) const argument
H A Dutil.cpp126 * Skip over a sequence of zero or more white space characters at pos.
127 * @param advance if true, advance pos to the first non-white-space
128 * character at or after pos, or str.length(), if there is none.
129 * Otherwise leave pos unchanged.
131 * after pos, or str.length(), if there is none.
133 int32_t ICU_Utility::skipWhitespace(const UnicodeString& str, int32_t& pos, argument
135 int32_t p = pos;
139 pos = p;
154 * @param pos either the start or limit of a range of 'text', to skip
159 * 'pos'
199 parseChar(const UnicodeString& id, int32_t& pos, UChar ch) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DRegularExpression.cpp140 int pos; local
145 pos = match(str, start, &matchLength);
146 if (pos >= 0) {
147 if (pos + matchLength > lastPos + lastMatchLength) {
149 lastPos = pos;
152 start = pos + 1;
154 } while (pos != -1);
/macosx-10.9.5/llvmCore-3425.0.33/lib/DebugInfo/
H A DDWARFDebugArangeSet.cpp123 for (DescriptorConstIter pos = ArangeDescriptors.begin(),
124 end = ArangeDescriptors.end(); pos != end; ++pos)
125 OS << format("[0x%*.*" PRIx64 " -", hex_width, hex_width, pos->Address)
127 hex_width, hex_width, pos->getEndAddress());
144 DescriptorConstIter pos = local
147 if (pos != end)
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Drbbiapts.cpp325 int32_t pos; local
326 pos = wordIter1->first();
327 TEST_ASSERT(pos==0);
328 pos = wordIter1->next();
329 TEST_ASSERT(pos==5);
330 pos = wordIter1->next();
331 TEST_ASSERT(pos==6);
332 pos = wordIter1->next();
333 TEST_ASSERT(pos==11);
334 pos
671 int32_t pos, tag; local
704 int32_t pos, tag; local
754 int32_t pos; local
[all...]
H A Dmsfmrgts.cpp102 FieldPosition pos(FieldPosition::DONT_CARE);
103 tempBuffer = messageFormatter->format(params, 2, tempBuffer, pos, status);
121 tempBuffer = messageFormatter->format(NULL, 0, tempBuffer, pos, status);
128 tempBuffer = messageFormatter->format(params, 2, tempBuffer, pos, status);
196 FieldPosition pos(FieldPosition::DONT_CARE);
197 tempBuffer = messageFormatter->format(params, 1, tempBuffer, pos, status);
262 tempBuffer = messageFormatter->format(params, 1, tempBuffer, pos, status);
281 ParsePosition pos(0);
282 if (pos.getErrorIndex() != -1) {
292 fmt->parse(str, pos, coun
[all...]
H A Dnumfmtst.h172 void expectPosition(FieldPosition& pos, int32_t id, int32_t start, int32_t limit,
215 int32_t pos, int32_t width, UChar pad);
218 int32_t pos, int32_t width, UChar pad) {
219 expectPad(fmt, UnicodeString(pat, ""), pos, width, pad);
223 int32_t pos, int32_t width, const UnicodeString& pad);
226 int32_t pos, int32_t width, const UnicodeString& pad) {
227 expectPad(fmt, UnicodeString(pat, ""), pos, width, pad);
237 int32_t pos);
240 int32_t pos) {
241 expectPad(fmt, pat, pos,
217 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, UChar pad) argument
225 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, const UnicodeString& pad) argument
239 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos) argument
[all...]
/macosx-10.9.5/network_cmds-433/alias/
H A Dalias_smedia.c176 int i, j, pos, state, port_dlen, new_dlen, delta; local
199 pos = search_string(data, dlen, transport_str);
200 if (pos < 0) {
206 if (pos >= sizeof(newdata)) {
212 port_data = data + pos;
213 port_dlen = dlen - pos;
215 memcpy(newdata, data, pos);
216 port_newdata = newdata + pos;
220 pos = search_string(port_data, port_dlen, port_str);
221 if (pos <
[all...]
/macosx-10.9.5/text_cmds-87/cut/
H A Dcut.c171 char *pos; local
208 for (pos = positions + start; start++ <= stop; *pos++ = 1);
245 char *pos; local
249 pos = positions + 1;
255 if (*pos++)
342 char *pos; local
346 pos = positions + 1;
352 if (*pos++)
377 char *pos, * local
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/gnus/
H A Dsha1.el286 (idx 0)(pos 0))
299 (while (< pos lim)
303 (aset block-high idx (+ (* (aref string pos) 256)
304 (aref string (1+ pos))))
305 (setq pos (+ pos 2))
306 (aset block-low idx (+ (* (aref string pos) 256)
307 (aref string (1+ pos))))
308 (setq pos (+ pos
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dunum.cpp161 UFieldPosition *pos,
164 return unum_formatInt64(fmt, number, result, resultLength, pos, status);
172 UFieldPosition *pos,
187 if(pos != 0)
188 fp.setField(pos->field);
192 if(pos != 0) {
193 pos->beginIndex = fp.getBeginIndex();
194 pos->endIndex = fp.getEndIndex();
205 UFieldPosition *pos, /* 0 if ignore */
220 if(pos !
157 unum_format( const UNumberFormat* fmt, int32_t number, UChar* result, int32_t resultLength, UFieldPosition *pos, UErrorCode* status) argument
168 unum_formatInt64(const UNumberFormat* fmt, int64_t number, UChar* result, int32_t resultLength, UFieldPosition *pos, UErrorCode* status) argument
201 unum_formatDouble( const UNumberFormat* fmt, double number, UChar* result, int32_t resultLength, UFieldPosition *pos, UErrorCode* status) argument
235 unum_formatDecimal(const UNumberFormat* fmt, const char * number, int32_t length, UChar* result, int32_t resultLength, UFieldPosition *pos, UErrorCode* status) argument
279 unum_formatDoubleCurrency(const UNumberFormat* fmt, double number, UChar* currency, UChar* result, int32_t resultLength, UFieldPosition* pos, UErrorCode* status) argument
[all...]
/macosx-10.9.5/ntfs-83/kext/
H A Dntfs_logfile.c65 * @pos: position in @ni at which the restart page header resides
74 RESTART_PAGE_HEADER *rp, s64 pos)
97 * We must be either at !pos (1st restart page) or at pos = system page
100 if (pos && pos != logfile_system_page_size) {
350 * @pos: position in @ni at which the restart page resides
374 s64 pos, RESTART_PAGE_HEADER **wrp, LSN *lsn)
383 if (!ntfs_restart_page_header_is_valid(ni, rp, pos)) {
408 size = PAGE_SIZE - ((unsigned)pos
73 ntfs_restart_page_header_is_valid(ntfs_inode *ni, RESTART_PAGE_HEADER *rp, s64 pos) argument
373 ntfs_restart_page_load(ntfs_inode *ni, RESTART_PAGE_HEADER *rp, s64 pos, RESTART_PAGE_HEADER **wrp, LSN *lsn) argument
517 s64 size, pos, ppos; local
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/blt/
H A Dtabset.rb37 def self.new(parent, pos=nil, name=nil, keys={})
38 if pos.kind_of?(Hash)
39 keys = pos
41 pos = nil
51 if pos
52 if pos.to_s == 'end'
55 obj.move_before(pos)
61 initialize(parent, pos, name, keys)
70 def initialize(parent, pos, name, keys)
76 if pos
[all...]
/macosx-10.9.5/zsh-60/zsh/Src/Zle/
H A Dzle_vi.c151 int pos = zlecs, ret = 0; local
200 zlecs = pos;
206 if (!zlell || (zlecs == pos && virangeflag != 2) || ret == -1)
215 zlecs = pos;
217 pos = zlecs;
222 * start of the range, and pos (the return value of this *
224 if (zlecs > pos) {
226 zlecs = pos;
227 pos = tmp;
232 * rather than just the sequence of characters delimited by pos *
249 int pos = zlecs, n = zmult; local
504 int pos = zlecs; local
822 int x, pos; local
834 int pos = zlecs; local
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/markup/
H A Dparser.rb453 pos = @s.pos
465 token = [:NEWLINE, @s.matched, *token_pos(pos)]
466 @line_pos = char_pos @s.pos
472 header = [:HEADER, level, *token_pos(pos)]
475 @s.pos -= @s[2].length
478 pos = @s.pos
481 [:TEXT, @s.matched.sub(/\r$/, ''), *token_pos(pos)]
485 [:RULE, @s[1].length - 2, *token_pos(pos)]
[all...]
/macosx-10.9.5/screen-22/screen/
H A Dsearch.c241 int pos, x, y, dir; local
249 pos = markdata->cx + markdata->cy * flayer->l_width;
255 pos = markdata->isstartpos;
269 pos = is_redo(markdata);
277 pos += dir;
297 pos = is_bm(markdata->isstr, markdata->isstrl, pos, flayer->l_width * (markdata->md_window->w_histheight + flayer->l_height), markdata->isdir);
298 if (pos >= 0)
300 x = pos % flayer->l_width;
301 y = pos / flaye
327 int i, pos, npos, dir; local
[all...]
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqhttpheader.cpp48 int pos = str.indexOf(QLatin1Char('\n')); local
49 if (pos > 0 && str.at(pos - 1) == QLatin1Char('\r'))
176 int pos = type.indexOf(QLatin1Char(';')); local
177 if (pos == -1)
180 return type.left(pos).trimmed();
211 int pos = l.indexOf(QLatin1Char(' '), 9); local
212 if (pos != -1) {
213 m_reasonPhrase = l.mid(pos + 1);
214 m_statusCode = l.mid(9, pos
[all...]
/macosx-10.9.5/bash-92/bash-3.2/examples/loadables/
H A Dcut.c172 char *pos; local
218 for (pos = positions + start; start++ <= stop; *pos++ = 1);
239 char *pos; local
243 pos = positions + 1;
249 if (*pos++)
270 char *pos, *p, sep; local
293 pos = positions + 1;
294 for (field = maxval, p = lbuf; field; --field, ++pos) {
295 if (*pos) {
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Dcmp.c154 Sfoff_t pos = 0; local
192 pos += c1;
215 sfprintf(sfstdout, "%s %s differ: char %I*d, line %I*u\n", file1, file2, sizeof(pos), pos - (last - p1), sizeof(lines), lines);
218 sfprintf(sfstdout, "%6I*d", sizeof(pos), pos - (last - p1));
224 sfprintf(sfstdout, "%6I*d", sizeof(pos), pos - (last - p1));
226 sfprintf(sfstdout, "%s %s differ: char %I*d, line %I*u", file1, file2, sizeof(pos), pos
[all...]
/macosx-10.9.5/libxml2-26/libxml2/
H A DgenChRanges.py29 pos = 0
30 while pos < len(lst):
32 s = lst[pos:].index(1) # look for start of next range
35 pos += s # pointer to start of possible range
37 e = lst[pos:].index(0) # look for end of range
38 e += pos
41 ret.append((pos, e-1)) # append range tuple to list
42 pos = e + 1 # ready to check for next range
124 pos = string.find(el, '..') variable
125 # pos <
[all...]
/macosx-10.9.5/swig-10/Lib/std/
H A Dstd_container.i49 iterator erase(iterator pos);
71 iterator insert(iterator pos, const value_type& x);
72 void insert(iterator pos, size_type n, const value_type& x);
92 iterator insert(iterator pos, value_type x);
93 void insert(iterator pos, size_type n, value_type x);
/macosx-10.9.5/tcl-102/tk84/tk/library/
H A Dtext.tcl504 set pos [$w index @$x,$y]
505 set bbox [$w bbox $pos]
507 return $pos
510 return $pos
512 $w index "$pos + 1 char"
699 # pos - The desired new position for the cursor in the window.
701 proc ::tk::TextSetCursor {w pos} {
703 if {[$w compare $pos == end]} {
704 set pos {end - 1 chars}
706 $w mark set insert $pos
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Dtzfmt.h543 * to <code>ParsePosition pos</code> and returns 0.
546 * @param pos The ParsePosition object.
553 int32_t parseOffsetISO8601(const UnicodeString& text, ParsePosition& pos) const;
558 * sets the current position as the error index to <code>ParsePosition pos</code>
561 * @param pos The ParsePosition object.
567 int32_t parseOffsetLocalizedGMT(const UnicodeString& text, ParsePosition& pos) const;
573 * sets the current position as the error index to <code>ParsePosition pos</code>
576 * @param pos The ParsePosition object.
582 int32_t parseOffsetShortLocalizedGMT(const UnicodeString& text, ParsePosition& pos) const;
591 * @param pos Th
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/test/
H A Dtestlfs.c201 apr_off_t pos; local
210 pos = 0;
212 apr_file_seek(fh, APR_END, &pos));
213 ABTS_ASSERT(tc, "seek to END gave 8GB", pos == eightGB);
215 pos = eightGB;
216 APR_ASSERT_SUCCESS(tc, "seek to 8GB", apr_file_seek(fh, APR_SET, &pos));
217 ABTS_ASSERT(tc, "seek gave 8GB offset", pos == eightGB);
219 pos = 0;
220 APR_ASSERT_SUCCESS(tc, "relative seek to 0", apr_file_seek(fh, APR_CUR, &pos));
221 ABTS_ASSERT(tc, "relative seek gave 8GB offset", pos
229 apr_off_t pos = eightGB - 4; local
[all...]
/macosx-10.9.5/apr-30/apr/apr/test/
H A Dtestlfs.c201 apr_off_t pos; local
210 pos = 0;
212 apr_file_seek(fh, APR_END, &pos));
213 ABTS_ASSERT(tc, "seek to END gave 8GB", pos == eightGB);
215 pos = eightGB;
216 APR_ASSERT_SUCCESS(tc, "seek to 8GB", apr_file_seek(fh, APR_SET, &pos));
217 ABTS_ASSERT(tc, "seek gave 8GB offset", pos == eightGB);
219 pos = 0;
220 APR_ASSERT_SUCCESS(tc, "relative seek to 0", apr_file_seek(fh, APR_CUR, &pos));
221 ABTS_ASSERT(tc, "relative seek gave 8GB offset", pos
229 apr_off_t pos = eightGB - 4; local
[all...]

Completed in 408 milliseconds

<<11121314151617181920>>