Searched refs:pos (Results 101 - 125 of 1683) sorted by relevance

1234567891011>>

/macosx-10.9.5/emacs-92/emacs/src/
H A Dindent.c218 skip_invisible (pos, next_boundary_p, to, window)
219 int pos;
228 XSETFASTINT (position, pos);
232 recenter_overlay_lists (current_buffer, pos);
246 if (XFASTINT (proplimit) > pos + 100 || XFASTINT (proplimit) >= to)
252 XSETFASTINT (proplimit, min (pos + 100, to));
262 if (end == pos + 100
265 while (pos < end && !CHAR_HEAD_P (POS_ADDR (end)))
280 return pos;
289 check_composition (pos, pos_byt
842 int pos = BYTE_TO_CHAR (pos_byte); local
933 register int pos; variable
1200 register int pos; local
1810 struct position *pos; variable in typeref:struct:position
1890 struct position pos; local
2073 struct position pos; variable in typeref:struct:position
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/t/
H A D096_characters.t65 my $pos = -1;
67 $pos = index($line, "\t", $pos + 1);
68 last if $pos <0;
69 push @tab_pos_from, $pos + 1;
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/t/
H A D096_characters.t65 my $pos = -1;
67 $pos = index($line, "\t", $pos + 1);
68 last if $pos <0;
69 push @tab_pos_from, $pos + 1;
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dformat.cpp115 FieldPosition pos(FieldPosition::DONT_CARE);
117 return format(obj, toAppendTo, pos, status);
168 * @param pos The position in pattern where the error occured
173 int32_t pos,
175 parseError.offset = pos;
179 int32_t start = (pos < U_PARSE_CONTEXT_LEN)? 0 : (pos - (U_PARSE_CONTEXT_LEN-1
181 int32_t stop = pos;
187 start = pos+1;
188 stop = ((pos
172 syntaxError(const UnicodeString& pattern, int32_t pos, UParseError& parseError) argument
[all...]
H A Dtridpars.cpp99 * @param pos INPUT-OUTPUT parameter. On input, the position of
107 TransliteratorIDParser::parseSingleID(const UnicodeString& id, int32_t& pos, argument
110 int32_t start = pos;
122 specsA = parseFilterID(id, pos, TRUE);
124 pos = start;
128 if (ICU_Utility::parseChar(id, pos, OPEN_REV)) {
130 if (!ICU_Utility::parseChar(id, pos, CLOSE_REV)) {
131 specsB = parseFilterID(id, pos, TRUE);
133 if (specsB == NULL || !ICU_Utility::parseChar(id, pos, CLOSE_REV)) {
135 pos
213 parseFilterID(const UnicodeString& id, int32_t& pos) argument
254 parseGlobalFilter(const UnicodeString& id, int32_t& pos, int32_t dir, int32_t& withParens, UnicodeString* canonID) argument
358 int32_t pos = 0; local
699 parseFilterID(const UnicodeString& id, int32_t& pos, UBool allowFilter) argument
[all...]
H A Drbt_pars.cpp154 ParsePosition& pos, int32_t limit) const;
207 ParsePosition& pos, int32_t limit) const {
208 int32_t start = pos.getIndex();
221 pos.setIndex(i);
303 int32_t parse(const UnicodeString& rule, int32_t pos, int32_t limit, UErrorCode& status);
305 int32_t parseSection(const UnicodeString& rule, int32_t pos, int32_t limit,
362 int32_t RuleHalf::parse(const UnicodeString& rule, int32_t pos, int32_t limit, UErrorCode& status) { argument
363 int32_t start = pos;
365 pos = parseSection(rule, pos, limi
206 parseReference(const UnicodeString& text, ParsePosition& pos, int32_t limit) const argument
397 parseSection(const UnicodeString& rule, int32_t pos, int32_t limit, UnicodeString& buf, const UnicodeString& illegal, UBool isSegment, UErrorCode& status) argument
925 int32_t pos = 0; local
1109 int32_t pos = -1; local
1199 resemblesPragma(const UnicodeString& rule, int32_t pos, int32_t limit) argument
1213 parsePragma(const UnicodeString& rule, int32_t pos, int32_t limit, UErrorCode& status) argument
1267 parseRule(const UnicodeString& rule, int32_t pos, int32_t limit, UErrorCode& status) argument
1471 syntaxError(UErrorCode parseErrorCode, const UnicodeString& rule, int32_t pos, UErrorCode& status) argument
1505 parseSet(const UnicodeString& rule, ParsePosition& pos, UErrorCode& status) argument
[all...]
H A Drbt_rule.cpp317 static inline int32_t posBefore(const Replaceable& str, int32_t pos) { argument
318 return (pos > 0) ?
319 pos - U16_LENGTH(str.char32At(pos-1)) :
320 pos - 1;
323 static inline int32_t posAfter(const Replaceable& str, int32_t pos) { argument
324 return (pos >= 0 && pos < str.length()) ?
325 pos + U16_LENGTH(str.char32At(pos))
350 matchAndReplace(Replaceable& text, UTransPosition& pos, UBool incremental) const argument
[all...]
/macosx-10.9.5/ncurses-42/ncurses/form/
H A Dfrm_data.c145 int pos; local
154 pos = form->begincol + field->cols;
155 while (pos < field->dcols)
157 check_len = field->dcols - pos;
161 wmove(form->w, 0, pos);
163 pos += field->cols;
173 pos = form->toprow + field->rows;
174 while (pos < field->drows)
177 wmove(form->w, pos, 0);
178 pos
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/language/
H A Dthai-word.el10773 (defun thai-find-word-ends (pos limit &optional ignore)
10774 (if (>= pos limit)
10776 (let* ((char (char-after pos))
10783 (setq pos (1+ pos)
10784 char (or (char-after pos) 0)
10797 (setq pos (1+ pos)
10798 char (char-after pos)))
10800 (or (memq pos ignor
[all...]
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DBreakBlockquoteCommand.cpp65 // pos is a position equivalent to the caret. We use downstream() so that pos will
67 Position pos = endingSelection().start().downstream(); local
70 Node* topBlockquote = highestEnclosingNodeOfType(pos, isMailBlockquote);
100 pos = pos.next();
103 while (isFirstVisiblePositionInNode(VisiblePosition(pos), enclosingNodeOfType(pos, isMailBlockquote)))
104 pos = pos
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/InspectorServer/
H A DHTTPRequest.cpp46 const char* pos = data; local
50 size_t requestLineLength = request->parseRequestLine(pos, remainingLength, failureReason);
53 pos += requestLineLength;
57 size_t headersLength = request->parseHeaders(pos, remainingLength, failureReason);
60 pos += headersLength;
64 size_t dataLength = request->parseRequestBody(pos, remainingLength);
65 pos += dataLength;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/user/win32/
H A Dgroupinfo.c37 char *pos;
39 if ((pos = strchr(groupname, '/'))) {
40 domain = apr_pstrndup(p, groupname, pos - groupname);
41 groupname = pos + 1;
43 else if ((pos = strchr(groupname, '\\'))) {
44 domain = apr_pstrndup(p, groupname, pos - groupname);
45 groupname = pos + 1;
/macosx-10.9.5/apr-30/apr/apr/user/win32/
H A Dgroupinfo.c37 char *pos;
39 if ((pos = strchr(groupname, '/'))) {
40 domain = apr_pstrndup(p, groupname, pos - groupname);
41 groupname = pos + 1;
43 else if ((pos = strchr(groupname, '\\'))) {
44 domain = apr_pstrndup(p, groupname, pos - groupname);
45 groupname = pos + 1;
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A Deditable_listbox.rb27 if idx = @ebox.pos
70 @ebox.pos = idx
82 @ebox.pos = nil
90 list[@ebox.pos] = @ebox.value if @ebox.pos
106 if !@ebox.pos || bbox(@ebox.pos).empty?
109 _ebox_move(@ebox.pos)
122 @pos = nil
123 def self.pos; singleton method in class:Tk.create_self
124 def self.pos=(idx); @pos = idx; end singleton method in class:Tk.create_self
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DAutoTableLayout.cpp354 for (unsigned pos = effCol; pos < lastCol; ++pos) {
355 if (!m_layoutStruct[pos].effectiveLogicalWidth.isPercent())
356 totalWidth += m_layoutStruct[pos].effectiveMaxLogicalWidth;
359 for (unsigned pos = effCol; pos < lastCol && totalWidth > 0; ++pos) {
360 if (!m_layoutStruct[pos].effectiveLogicalWidth.isPercent()) {
361 float percent = percentMissing * static_cast<float>(m_layoutStruct[pos]
471 unsigned pos = 0; local
757 int pos = 0; local
[all...]
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/java/CyrusSasl/
H A DGenericClient.java103 int pos = 0;
112 cbs[pos] = nc;
113 pos++;
118 cbs[pos] = nc2;
119 pos++;
124 cbs[pos] = pc;
125 pos++;
130 cbs[pos] = rc;
131 pos++;
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DMultipleKeyNIODataEntry.java46 pos = 0;
70 if (pos == 0)
71 pos = ulen - INT32SZ;
78 this.data_nio.position(pos - INT32SZ*3);
93 pos -= INT32SZ*4;
H A DMultipleRecnoNIODataEntry.java46 pos = 0;
74 if (pos == 0)
75 pos = ulen - INT32SZ;
82 this.data_nio.position(pos - INT32SZ*2);
96 pos -= INT32SZ*3;
/macosx-10.9.5/Chess-310.5/Sources/
H A DMBCBoardViewMouse.mm69 NSPoint Project(MBCPosition pos);
94 NSPoint MBCProjector::Project(MBCPosition pos)
98 gluProject(pos[0], pos[1], pos[2], fMVMatrix, fProjMatrix, fViewport,
113 MBCPosition pos;
127 pos[0] = wv[0];
128 pos[1] = wv[1];
129 pos[2] = wv[2];
133 fWinX, fWinY, z, pos[
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/port/
H A Dastcopy.c55 off_t pos; local
67 if (!fstat(rfd, &st) && S_ISREG(st.st_mode) && (pos = lseek(rfd, (off_t)0, 1)) != ((off_t)-1))
69 if (pos >= st.st_size) return(0);
70 mapsize = st.st_size - pos;
72 if (mapsize >= BUFSIZ * 2 && (mapbuf = (char*)mmap(NiL, mapsize, PROT_READ, MAP_SHARED, rfd, pos)) != ((caddr_t)-1))
/macosx-10.9.5/cxxfilt-11/cxxfilt/opcodes/
H A Dm68hc11-dis.c77 int pos = 1; local
143 status = read_memory (memaddr + pos, &buffer[0], 2, info);
149 pos += 2;
167 status = read_memory (memaddr + pos,
177 pos += 2;
185 pos++;
220 return pos;
231 long format, pos, i; local
245 pos = 0;
250 pos
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dbutton.el356 (defun button-at (pos)
358 (let ((button (get-char-property pos 'button)))
362 (copy-marker pos t))))
364 (defun next-button (pos &optional count-current)
370 (setq pos (next-single-char-property-change pos 'button)))
371 (and (< pos (point-max))
372 (or (button-at pos)
375 (next-button pos))))
377 (defun previous-button (pos
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/cc_hash_table_map_/
H A Dinsert_no_store_hash_fn_imps.hpp55 const size_type pos = ranged_hash_fn_base::operator()(r_key); local
56 entry_pointer p_e = m_entries[pos];
74 return std::make_pair(insert_new_imp(r_val, pos), true);
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/lib/
H A Dseterror.c108 size_t pos = 0; /* current position in format string */ local
144 while(pos<formatlen)
146 if (fmt[pos]!='%') /* regular character */
151 (*error_buf)[outlen]=fmt[pos];
153 pos++;
160 pos++;
164 switch(fmt[pos])
205 frmt[frmtpos++]=fmt[pos];
220 frmt[frmtpos++]=fmt[pos];
234 frmt[frmtpos++]=fmt[pos]; /* ad
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DMIMESniffing.cpp154 static inline void skipWhiteSpace(const char* data, size_t& pos, size_t dataSize) argument
156 while (pos < dataSize && isWhiteSpace(data[pos]))
157 ++pos;
298 size_t pos = 0; local
299 skipWhiteSpace(data, pos, dataSize);
300 data += pos;
301 dataSize -= pos;
406 static inline bool checkText(const char* data, size_t& pos, size_t dataSize, const char* text, size_t textSize) argument
408 if (dataSize - pos < textSiz
418 checkRDF(const char* data, size_t pos, size_t dataSize) argument
443 skipTag(const char*& data, size_t& pos, size_t dataSize, const char* tag, size_t tagSize, const char* tagEnd, size_t tagEndSize) argument
457 size_t pos = 0; local
[all...]

Completed in 292 milliseconds

1234567891011>>