Searched refs:pos (Results 76 - 100 of 1683) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itk/generic/
H A Ditk_util.c86 int i, first, last, cmp, pos, size;
112 pos = (first+last)/2;
113 optname = Tcl_GetHashKey(olist->options, olist->list[pos]) + 1;
128 first = pos+1;
130 last = pos-1;
137 pos = first;
139 for (i=olist->len; i > pos; i--) {
142 olist->list[pos] = entry;
165 int pos = 0;
174 pos
83 int i, first, last, cmp, pos, size; local
161 int pos = 0; local
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DMultipleNIODataEntry.java46 pos = 0;
70 if (pos == 0)
71 pos = ulen - INT32SZ;
78 this.data_nio.position(pos - INT32SZ);
92 pos -= INT32SZ*2;
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dhelp-at-pt.el265 (let ((pos (point)))
267 (setq pos (next-single-char-property-change pos prop))
268 (unless (get-char-property pos prop)
269 (setq pos (next-single-char-property-change pos prop))
270 (unless (get-char-property pos prop)
279 (goto-char pos)
291 (let ((pos (point)) (val (get-char-property (point) prop)))
293 (eq val (get-char-property (1- pos) pro
[all...]
/macosx-10.9.5/ntfs-83/kext/
H A Dntfs_secure.h89 le32 *pos, *end; local
92 pos = (le32*)sd;
94 for (hash = 0; pos < end; pos++)
95 hash = le32_to_cpup(pos) + ntfs_rol32(hash, 3);
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/examples/
H A Dmkmemoio.py11 # pos = f.tell() # get current position
12 # f.seek(pos) # set current position
13 # f.seek(pos, mode) # mode 0: absolute; 1: relative; 2: relative to EOF
39 self.pos = 0
45 del self.view, self.memo, self.row, self.pos
50 def seek(self, pos, mode = 0):
54 pos = pos + self.pos
56 pos
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dbytestrie.h111 const uint8_t *pos; member in class:BytesTrie::State
124 state.pos=pos_;
141 pos_=state.pos;
207 const uint8_t *pos=pos_; local
208 int32_t leadByte=*pos++;
210 return readValue(pos, leadByte>>1);
223 const uint8_t *pos=pos_; local
225 return pos!=NULL && findUniqueValue(pos+remainingMatchLength_+1, FALSE, uniqueValue);
319 const uint8_t *branchNext(const uint8_t *pos, int32_
366 skipValue(const uint8_t *pos, int32_t leadByte) argument
379 skipValue(const uint8_t *pos) argument
387 skipDelta(const uint8_t *pos) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Dmatchbrackets.js11 var cur = cm.getCursor(), line = cm.getLineHandle(cur.line), pos = cur.ch - 1;
12 var match = (pos >= 0 && matching[line.text.charAt(pos)]) || matching[line.text.charAt(++pos)];
15 var style = cm.getTokenAt(Pos(cur.line, pos + 1)).type;
17 var stack = [line.text.charAt(pos)], re = /[(){}[\]]/;
20 var pos = forward ? 0 : line.text.length - 1, end = forward ? line.text.length : -1;
21 if (start != null) pos = start + d;
22 for (; pos != end; pos
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Druleiter.cpp26 pos(thePos),
33 return buf == 0 && pos.getIndex() == text.length();
48 UnicodeString name = sym->parseReference(text, pos, text.length());
91 p.pos = pos.getIndex();
97 pos.setIndex(p.pos);
118 text.extract(pos.getIndex(), maxLookAhead, result);
129 int32_t b = pos.getIndex();
139 int i = pos
[all...]
H A Dbytestrieiterator.cpp104 const uint8_t *pos=pos_; local
105 if(pos==NULL) {
113 pos=bytes_+stack_->elementAti(stackSize-2);
118 pos=branchNext(pos, length, errorCode);
119 if(pos==NULL) {
123 str_->append((char)*pos++, errorCode);
132 int32_t node=*pos++;
136 value_=readValue(pos, node>>1);
140 pos_=skipValue(pos, nod
180 branchNext(const uint8_t *pos, int32_t length, UErrorCode &errorCode) argument
[all...]
H A Dunisetspan.cpp647 int32_t pos=spanLength, rest=length-pos; local
660 // Try to match this string at pos-overlap..pos.
675 if(!offsets.containsOffset(inc) && matches16CPB(s, pos-overlap, length, s16, length16)) {
699 // Try to match this string at pos-overlap..pos.
715 matches16CPB(s, pos-overlap, length, s16, length16)
729 pos+=maxInc;
738 // Finished trying to match all strings at pos
796 int32_t pos=spanSet.spanBack(s, length, USET_SPAN_CONTAINED); local
969 int32_t pos=spanLength, rest=length-pos; local
1138 int32_t pos=spanSet.spanBackUTF8((const char *)s, length, USET_SPAN_CONTAINED); local
1340 int32_t pos=0, rest=length; local
1382 int32_t pos=length; local
1424 int32_t pos=0, rest=length; local
1469 int32_t pos=length; local
[all...]
H A Dutil.h81 * Skip over a sequence of zero or more white space characters at pos.
82 * @param advance if true, advance pos to the first non-white-space
83 * character at or after pos, or str.length(), if there is none.
84 * Otherwise leave pos unchanged.
86 * after pos, or str.length(), if there is none.
88 static int32_t skipWhitespace(const UnicodeString& str, int32_t& pos,
101 * @param pos either the start or limit of a range of 'text', to skip
106 * 'pos'
110 //? int32_t pos, int32_t stop);
116 * @param pos INPU
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Datomicio.c55 size_t pos = 0; local
61 while (n > pos) {
62 res = (f) (fd, s + pos, n - pos);
74 return pos;
76 pos += (size_t)res;
79 return pos;
83 return pos;
100 size_t pos = 0, rem; local
131 return pos;
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dtrnserr.cpp62 UTransPosition pos; local
69 pos.contextLimit = 0;
70 pos.contextStart = 0;
71 pos.limit = 0;
72 pos.start = 0;
88 pos.start = 100;
89 pos.limit = testString.length();
90 t->transliterate(testString, pos, status);
95 pos.limit = 100;
96 pos
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGElementInstanceList.cpp47 unsigned pos = 0; local
49 while (instance && pos < index) {
51 pos++;
/macosx-10.9.5/emacs-92/emacs/lisp/emacs-lisp/
H A Dsyntax.el55 (defun syntax-ppss-toplevel-pos (ppss)
106 (if (<= beg (or (syntax-ppss-toplevel-pos (cdr syntax-ppss-last))
126 (defun syntax-ppss (&optional pos)
132 (unless pos (setq pos (point)))
135 (old-pos (car syntax-ppss-last))
138 (if (and old-pos (> old-pos pos)) (setq old-pos ni
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/efl/
H A DPageViewportControllerClientEfl.cpp56 FloatPoint pos(contentsPoint);
58 pos.scale(scaleFactor, scaleFactor);
59 WKViewSetContentPosition(m_view->wkView(), WKPointMake(pos.x(), pos.y()));
/macosx-10.9.5/architecture-265/i386/
H A Dreg_help.h44 #define BIT_WIDTH(pos) (1) /* mostly to record the position */
49 #define BITMASK(pos) MKMASK(BIT_WIDTH(pos), pos & 0x1f)
/macosx-10.9.5/less-23/less/
H A Dbrac.c36 POSITION pos; local
46 pos = position((forwdir) ? TOP : BOTTOM);
47 if (pos == NULL_POSITION || ch_seek(pos))
/macosx-10.9.5/xnu-2422.115.4/EXTERNAL_HEADERS/architecture/i386/
H A Dreg_help.h49 #define BIT_WIDTH(pos) (1) /* mostly to record the position */
54 #define BITMASK(pos) MKMASK(BIT_WIDTH(pos), pos & 0x1f)
/macosx-10.9.5/CPANInternal-140/Net-DNS/
H A DDNS.xs60 int pos;
68 pos = netdns_dn_expand(buf, buf+len , buf+offset, &name[0], MAXDNAME);
72 if (pos < 0) {
77 PUSHs(sv_2mortal(newSViv(pos + offset)));
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DFrameSelection.cpp147 void FrameSelection::moveTo(const VisiblePosition &pos, EUserTriggered userTriggered, CursorAlignOnScroll align) argument
150 setSelection(VisibleSelection(pos.deepEquivalent(), pos.deepEquivalent(), pos.affinity(), m_selection.isDirectional()), options, align);
160 void FrameSelection::moveTo(const Position &pos, EAffinity affinity, EUserTriggered userTriggered) argument
163 setSelection(VisibleSelection(pos, affinity, m_selection.isDirectional()), options);
610 static void adjustPositionForUserSelectAll(VisiblePosition& pos, bool isForward) argument
612 if (Node* rootUserSelectAll = Position::rootUserSelectAllForNode(pos.deepEquivalent().anchorNode()))
613 pos = isForward ? positionAfterNode(rootUserSelectAll).downstream(CanCrossEditingBoundary) : positionBeforeNode(rootUserSelectAll).upstream(CanCrossEditingBoundary);
619 VisiblePosition pos(m_selectio
705 VisiblePosition pos; local
743 VisiblePosition pos; local
881 VisiblePosition pos; local
917 VisiblePosition pos; local
1094 VisiblePosition pos; local
1220 setStart(const VisiblePosition &pos, EUserTriggered trigger) argument
1228 setEnd(const VisiblePosition &pos, EUserTriggered trigger) argument
1236 setBase(const VisiblePosition &pos, EUserTriggered userTriggered) argument
1242 setExtent(const VisiblePosition &pos, EUserTriggered userTriggered) argument
1248 setBase(const Position &pos, EAffinity affinity, EUserTriggered userTriggered) argument
1254 setExtent(const Position &pos, EAffinity affinity, EUserTriggered userTriggered) argument
1515 int pos; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/accessibility/atk/
H A DWebKitAccessibleInterfaceComponent.cpp54 IntPoint pos(x, y);
60 return frameView->screenToContents(pos);
62 return frameView->windowToContents(pos);
66 return pos;
71 IntPoint pos = atkToContents(core(component), coordType, x, y); local
73 AccessibilityObject* target = core(component)->accessibilityHitTest(pos);
/macosx-10.9.5/ruby-104/ruby/template/
H A Dinsns_info.inc.tmpl66 insn_op_type(VALUE insn, long pos)
69 if(pos < len){
70 return insn_operand_info[(int)insn][pos];
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/examples/diagrams/
H A Ddraw_fraction.tcl15 set pos [currentpos]
16 lset pos 2 15
19 currentpos $pos
/macosx-10.9.5/emacs-92/emacs/src/
H A Dregion-cache.c67 int pos;
102 ? (c)->buffer_beg + (c)->boundaries[(i)].pos \
103 : (c)->buffer_end + (c)->boundaries[(c)->gap_len + (i)].pos)
155 c->boundaries[0].pos = 0; /* from buffer_beg */
181 find_cache_boundary (c, pos)
183 int pos;
194 if (pos < boundary)
201 if (BOUNDARY_POS (c, low) > pos
203 && BOUNDARY_POS (c, low + 1) <= pos))
218 move_cache_gap (c, pos, min_siz
66 int pos; member in struct:boundary
822 int pos = BOUNDARY_POS (c, i); local
[all...]

Completed in 253 milliseconds

1234567891011>>