Searched refs:pos (Results 226 - 250 of 1683) sorted by relevance

1234567891011>>

/macosx-10.9.5/emacs-92/emacs/lisp/mail/
H A Dmail-utils.el166 (let (pos)
188 (while (setq pos (string-match
203 (setq pos 0)
204 (while (setq pos (string-match
206 address pos))
210 (setq pos (match-end 0))
215 (while (setq pos (string-match "\\(,\\s-*\\|\\`\\)\\([^,]*<\\([^>,:]*\\)>[^,]*\\)\\(\\s-*,\\|\\'\\)"
248 (let ((start-pos 0) (cur-pos 0)
250 (while start-pos
[all...]
H A Demacsbug.el106 (let ((pos (point)))
108 (put-text-property pos (point) 'face 'highlight)))
110 (let ((pos (point)))
112 (put-text-property pos (point) 'face 'highlight))
188 (let (beg-pos
189 (end-pos message-end-point))
191 (goto-char end-pos)
193 (setq beg-pos (point)))
195 (insert-buffer-substring message-buf beg-pos end-pos))))
[all...]
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dregex.c36 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
37 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
38 # define re_match(bufp, string, size, pos, regs) \
39 __re_match (bufp, string, size, pos, regs)
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/blt/
H A Dhtext.rb61 def scan_mark(pos)
62 tk_send_without_enc('scan', 'mark', pos)
66 def scan_dragto(pos)
67 tk_send_without_enc('scan', 'dragto', pos)
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/demos/
H A Dmyio.cpp33 static char Encode(long pos, char c_) argument
34 { return (char) (c_ ^ pos ^ 211); }
35 static char Decode(long pos, char c_) argument
36 { return (char) (c_ ^ pos ^ 211); }
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dvsyslog.c84 int pos; local
86 pos = p2 - fmt2;
95 p2 = fmt2 + pos;
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Druleiter.h46 ParsePosition& pos; member in class:RuleCharacterIterator
97 * @param pos upon input, the index of the next character to return. If a
98 * variable has been dereferenced, then pos will <em>not</em> increment as
102 ParsePosition& pos);
136 int32_t pos; member in struct:RuleCharacterIterator::Pos
146 * RuleCharacterIterator::Pos pos;
147 * iterator.getPos(pos);
149 * iterator.getPos(pos);
153 * iterator.setPos(pos);
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Danytrans.cpp228 void AnyTransliterator::handleTransliterate(Replaceable& text, UTransPosition& pos, argument
230 int32_t allStart = pos.start;
231 int32_t allLimit = pos.limit;
233 ScriptRunIterator it(text, pos.contextStart, pos.contextLimit);
245 // pos.start up to date.
246 pos.start = it.limit;
255 pos.start = uprv_max(allStart, it.start);
256 pos.limit = uprv_min(allLimit, it.limit);
257 int32_t limit = pos
[all...]
H A Dwinnmfmt.h56 * @param pos On input: an alignment field, if desired.
62 FieldPosition& pos) const;
70 * @param pos On input: an alignment field, if desired.
76 FieldPosition& pos) const;
84 * @param pos On input: an alignment field, if desired.
90 FieldPosition& pos) const;
H A Ddecimfmt.cpp589 int32_t pos = -1; local
591 while ((element = pluralPtn->nextElement(pos)) != NULL) {
1352 FieldPosition& pos,
1354 FieldPositionOnlyHandler handler(pos);
1508 * @param pos the number of integer digits to the right of
1514 UBool DecimalFormat::isGroupingPosition(int32_t pos) const {
1516 if (isGroupingUsed() && (pos > 0) && (fGroupingSize > 0)) {
1517 if ((fGroupingSize2 > 0) && (pos > fGroupingSize)) {
1518 result = ((pos - fGroupingSize) % fGroupingSize2) == 0;
1520 result = pos
1350 format(const DigitList &number, UnicodeString& appendTo, FieldPosition& pos, UErrorCode &status) const argument
2103 int32_t pos = -1; local
2598 int32_t pos = position + tmp->length(); local
2801 compareAffix(const UnicodeString& text, int32_t pos, UBool isNegative, UBool isPrefix, const UnicodeString* affixPat, UBool currencyParsing, int8_t type, UChar* currency) const argument
2848 compareSimpleAffix(const UnicodeString& affix, const UnicodeString& input, int32_t pos, UBool lenient) argument
2972 skipPatternWhiteSpace(const UnicodeString& text, int32_t pos) argument
2981 skipUWhiteSpace(const UnicodeString& text, int32_t pos) argument
3004 compareComplexAffix(const UnicodeString& affixPat, const UnicodeString& text, int32_t pos, int8_t type, UChar* currency) const argument
3133 match(const UnicodeString& text, int32_t pos, const UnicodeString& str) argument
4347 int32_t pos = roundingDecimalPos - i; local
4369 int32_t pos = roundingDecimalPos; local
4564 int32_t pos = 0; local
5407 int32_t pos = -1; local
5426 int32_t pos = -1; local
5445 int32_t pos = -1; local
5674 int32_t pos = -1; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A Dbreak_lines.cpp151 static inline int nextBreakablePosition(LazyLineBreakIterator& lazyBreakIterator, const CharacterType* str, unsigned length, int pos) argument
156 CharacterType lastLastCh = pos > 1 ? str[pos - 2] : static_cast<CharacterType>(lazyBreakIterator.secondToLastCharacter());
157 CharacterType lastCh = pos > 0 ? str[pos - 1] : static_cast<CharacterType>(lazyBreakIterator.lastCharacter());
159 for (int i = pos; i < len; i++) {
188 int nextBreakablePositionIgnoringNBSP(LazyLineBreakIterator& lazyBreakIterator, int pos) argument
192 return nextBreakablePosition<LChar, false>(lazyBreakIterator, string.characters8(), string.length(), pos);
193 return nextBreakablePosition<UChar, false>(lazyBreakIterator, string.characters16(), string.length(), pos);
196 int nextBreakablePosition(LazyLineBreakIterator& lazyBreakIterator, int pos) argument
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/cc_hash_table_map_/
H A Derase_no_store_hash_fn_imps.hpp60 erase_in_pos_imp(const_key_reference r_key, size_type pos) argument
63 entry_pointer p_e = m_entries[pos];
77 erase_entry_pointer(m_entries[pos]);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/term/ansi/code/
H A Dmacros.tcl41 set pos [string first $c $label]
42 if {$shift || ($pos < 0)} {
44 set pos 0
50 set _($label) " [string replace $xlabel $pos $pos \
51 [cd::sda_fgred][cd::sda_bold][string index $xlabel $pos][cd::sda_reset]]"
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/dfalib/
H A DBTreeNodeOps.c191 void *pos; local
218 pos = (char *)node + btreePtr->nodeSize - 2; // find address of last offset
219 *(UInt16 *)pos = sizeof (BTNodeDescriptor); // set offset to beginning of free space
793 void *pos;
796 pos = (UInt8 *)node + btreePtr->nodeSize - (index << 1) - kOffsetSize;
798 return *(short *)pos;
822 UInt8 * pos;
824 pos = (UInt8 *)node + GetRecordOffset (btreePtr, node, index);
826 return pos;
851 UInt16 *pos; local
876 void *pos; local
904 UInt8 * pos; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/hfscommon/BTree/
H A DBTreeNodeOps.c264 void *pos; local
293 pos = (char *)node + btreePtr->nodeSize - 2; // find address of last offset
294 *(u_int16_t *)pos = sizeof (BTNodeDescriptor); // set offset to beginning of free space
879 void *pos;
882 pos = (u_int8_t *)node + btreePtr->nodeSize - (index << 1) - kOffsetSize;
884 return *(short *)pos;
908 u_int8_t * pos;
910 pos = (u_int8_t *)node + GetRecordOffset (btreePtr, node, index);
912 return pos;
937 u_int16_t *pos; local
962 void *pos; local
990 u_int8_t * pos; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dtextfile.cpp116 int32_t pos = 0;
117 ICU_Utility::skipWhitespace(line, pos, TRUE);
119 if (pos == line.length() || line.charAt(pos) == 0x23/*'#'*/) {
123 if (trim) line.remove(0, pos);
/macosx-10.9.5/emacs-92/emacs/lisp/erc/
H A Derc-imenu.el74 prev-pos)
76 (imenu-progress-message prev-pos 0)
82 (imenu-progress-message prev-pos nil t)
88 (pos (point)))
89 (push (cons notice-text pos) notice-alist)
92 (push (cons (match-string 1 notice-text) pos) join-alist))
94 (push (cons (match-string 1 notice-text) pos) left-alist))
111 (match-string 2 notice-text)) pos)
/macosx-10.9.5/emacs-92/emacs/lisp/obsolete/
H A Doptions.el132 (let ((buffer-read-only nil) var pos)
135 (setq pos (point))
137 (narrow-to-region pos (progn (end-of-line) (1- (point))))
138 (goto-char pos)
140 (goto-char pos)
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Instrumentation/
H A DBlackList.cpp54 for (size_t pos = 0; (pos = Regexp.find("*", pos)) != std::string::npos;
55 pos += strlen(".*")) {
56 Regexp.replace(pos, strlen("*"), ".*");
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/textutil/
H A Dtabify.tcl162 for {set pos [expr {$currPos - 2}]} {$pos >= $prevTab} {incr pos -1} {
163 if { [string index $line $pos] != " " } {
169 set line [string replace $line [expr {$pos + 1}] $currPos \t]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/uev/
H A Duevent.tcl69 set pos [lsearch -exact $db($te) $token]
70 if {$pos < 0} return
78 log::debug [linsert [linsert $te 0 shrink!] end @ $pos]
79 set db($te) [lreplace $db($te) $pos $pos]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Drbnf.h731 * @param pos the fieldposition
737 FieldPosition& pos) const;
743 * @param pos the fieldposition
749 FieldPosition& pos) const;
754 * @param pos the fieldposition
760 FieldPosition& pos) const;
768 * @param pos the fieldposition
776 FieldPosition& pos,
784 * @param pos the fieldposition
792 FieldPosition& pos,
[all...]
/macosx-10.9.5/adv_cmds-153/whois/
H A Dwhois.c216 char *pos, *retval; local
218 for (pos = strchr(domain, '\0'); pos > domain && *--pos == '.';)
219 *pos = '\0';
228 while (pos > domain && *pos != '.')
229 --pos;
230 if (pos <= domain)
232 if (isdigit((unsigned char)*++pos))
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/
H A Dprioqueue.tcl441 set pos -1
461 set pos $pivot
469 set pos -1
473 set pos $bound
478 if {$pos == -1} {
480 set pos $pivot
486 incr pos
487 if {$pos > [llength $list]} {break}
488 set element [lindex $list $pos]
493 set pos
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/win/
H A DtkWinPointer.c117 POINT pos;
121 pos.x = x;
122 pos.y = y;
129 ClientToScreen(hwnd, &pos);
141 hwnd = WindowFromPoint(pos);
147 Tk_UpdatePointer(tkwin, pos.x, pos.y, state);
234 POINT pos;
243 GetCursorPos(&pos);
244 Tk_PointerEvent(NULL, pos
115 POINT pos; local
229 POINT pos; local
[all...]

Completed in 256 milliseconds

1234567891011>>