Searched refs:pos (Results 51 - 75 of 1683) sorted by relevance

1234567891011>>

/macosx-10.9.5/llvmCore-3425.0.33/lib/DebugInfo/
H A DDWARFDebugAbbrev.cpp44 DWARFAbbreviationDeclarationCollConstIter pos; local
46 for (pos = Decls.begin(); pos != end; ++pos) {
47 if (pos->getCode() == abbrCode)
48 return &(*pos);
84 DWARFAbbreviationDeclarationCollMapConstIter pos; local
85 for (pos = AbbrevCollMap.begin(); pos != AbbrevCollMap.end(); ++pos) {
94 DWARFAbbreviationDeclarationCollMapConstIter pos; local
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dxstrchr.c46 char *pos; local
56 pos = (char *)s;
62 mblength = mbrlen (pos, strlength, &state);
66 if (c == (unsigned char)*pos)
67 return pos;
70 pos += mblength;
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/cc_hash_table_map_/
H A Diterators_fn_imps.hpp62 std::pair<entry_pointer, size_type> pos; local
63 get_start_it_state(p_value, pos);
64 return iterator(p_value, pos, this);
79 std::pair<entry_pointer, size_type> pos; local
80 get_start_it_state(p_value, pos);
81 return const_iterator(p_value, pos, this);
H A Dconstructor_destructor_store_hash_fn_imps.hpp51 constructor_insert_new_imp(const_reference r_val, size_type pos, true_type) argument
57 p->m_p_next = m_entries[pos];
60 m_entries[pos] = p;
H A Ddebug_fn_imps.hpp64 for (size_type pos = 0; pos < m_num_e; ++pos)
66 entry_pointer p_e = a_p_entries[pos];
/macosx-10.9.5/remote_cmds-41.90.1/revnetgroup.tproj/
H A Dparse_netgroup.c184 char *pos, *gpos; local
212 pos = lp->l_line;
214 while (pos != NULL && *pos != '\0') {
215 if (*pos == '(') {
220 pos++;
221 gpos = strsep(&pos, ")");
270 spos = strsep(&pos, ", \t");
275 if (pos != NULL)
276 while (*pos
289 char *pos, *spos, *linep = NULL, *olinep = NULL; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/os2/
H A Dfilesys.c70 char *pos; local
85 for (pos=path; *pos; pos++) {
86 if (*pos == '\\')
87 *pos = '/';
116 char *pos; local
126 for (pos=*defpath; *pos; pos
[all...]
/macosx-10.9.5/apr-30/apr/apr/file_io/os2/
H A Dfilesys.c70 char *pos; local
85 for (pos=path; *pos; pos++) {
86 if (*pos == '\\')
87 *pos = '/';
116 char *pos; local
126 for (pos=*defpath; *pos; pos
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/gnus/
H A Dhex-util.el45 (idx 0)(pos 0))
46 (while (< pos len)
48 ;;; (aset dst idx (logior (lsh (hex-char-to-num (aref string pos)) 4)
49 ;;; (hex-char-to-num (aref string (1+ pos)))))
50 (aset dst idx (+ (* (hex-char-to-num (aref string pos)) 16)
51 (hex-char-to-num (aref string (1+ pos)))))
53 pos (+ 2 pos)))
60 (idx 0)(pos 0))
61 (while (< pos le
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/gp_hash_table_map_/
H A Dconstructor_destructor_store_hash_fn_imps.hpp51 constructor_insert_new_imp(const_mapped_reference r_val, size_type pos, argument
54 _GLIBCXX_DEBUG_ASSERT(m_entries[pos].m_stat != valid_entry_status);
55 entry* const p_e = m_entries + pos;
H A Ddebug_store_hash_fn_imps.hpp56 for (size_type pos = 0; pos < m_num_e; ++pos)
58 const_entry_pointer p_e =& a_entries[pos];
H A Derase_fn_imps.hpp65 for (size_type pos = 0; pos < m_num_e; ++pos)
67 entry_pointer p_e = &m_entries[pos];
83 for (size_type pos = 0; pos < m_num_e; ++pos)
85 entry_pointer p_e = &m_entries[pos];
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DMultipleRecnoDataEntry.java62 pos = 0;
88 if (pos == 0)
89 pos = ulen - INT32SZ;
91 final int keyoff = DbUtil.array2int(this.data, pos);
97 pos -= INT32SZ;
98 final int dataoff = DbUtil.array2int(this.data, pos);
99 pos -= INT32SZ;
100 final int datasz = DbUtil.array2int(this.data, pos);
101 pos -= INT32SZ;
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dftell.c92 fpos_t pos; local
107 pos = fp->_offset;
109 pos = _sseek(fp, (fpos_t)0, SEEK_CUR);
110 if (pos == -1)
119 if ((pos -= (HASUB(fp) ? fp->_ur : fp->_r)) < 0) {
125 pos -= fp->_r; /* Can be negative at this point. */
133 if (pos > OFF_MAX - n) {
137 pos += n;
139 *offset = pos;
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DPositionIterator.h46 PositionIterator(const Position& pos) argument
47 : m_anchorNode(pos.anchorNode())
48 , m_nodeAfterPositionInAnchor(m_anchorNode->childNode(pos.deprecatedEditingOffset()))
49 , m_offsetInAnchor(m_nodeAfterPositionInAnchor ? 0 : pos.deprecatedEditingOffset())
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXPathFunctions.h41 Expression* arg(int pos) { return subExpr(pos); } argument
42 const Expression* arg(int pos) const { return subExpr(pos); }
/macosx-10.9.5/cctools-845/include/architecture/nrw/
H A Dreg_help.h46 #define BIT_WIDTH(pos) (1) /* mostly to record the position */
51 #define BITMASK(pos) MKMASK(BIT_WIDTH(pos), pos & 0x1f)
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/java/CyrusSasl/
H A DServerFactory.java78 int pos =0;
80 while (pos < list.length()) {
81 if (list.charAt(pos)=='\n')
83 pos++;
89 pos =0;
92 while (pos < list.length()) {
93 if (list.charAt(pos)=='\n') {
97 temp+=list.charAt(pos);
99 pos++;
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/grammar_peg/
H A Dpeg_interp.tcl148 set pos [icl_get]
155 isv_nonterminal_reduce $nt $pos $mrk
157 isv_nonterminal_range $nt $pos
159 isv_nonterminal_leaf $nt $pos
164 inc_save $nt $pos
172 ier_nonterminal "Expected $nt" $pos
179 set pos [icl_get]
183 icl_rewind $pos
191 set pos [icl_get]
197 icl_rewind $pos
[all...]
/macosx-10.9.5/less-23/less/
H A Dposition.c61 add_forw_pos(pos)
62 POSITION pos;
71 table[sc_height - 1] = pos;
78 add_back_pos(pos)
79 POSITION pos;
88 table[0] = pos;
122 scrpos.pos = NULL_POSITION;
126 if (scrpos.pos != NULL_POSITION)
127 table[scrpos.ln-1] = scrpos.pos;
136 onscreen(pos)
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dfphdlimp.cpp40 : pos(_pos) {
48 if (pos.getField() == id) {
49 pos.setBeginIndex(start);
50 pos.setEndIndex(limit);
56 if (delta != 0 && pos.getField() != FieldPosition::DONT_CARE && pos.getBeginIndex() != -1) {
57 pos.setBeginIndex(delta + pos.getBeginIndex());
58 pos.setEndIndex(delta + pos
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dstring.c36 int pos; local
39 for( pos=0; (*str) ; pos++,str++) {
49 return pos;
52 return pos;
75 char *(ldap_pvt_strtok)( char *str, const char *delim, char **pos )
79 if (pos==NULL) {
84 if (*pos==NULL) {
88 str=*pos;
99 *pos
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DHTTPParsers.cpp47 // true if there is more to parse, after incrementing pos past whitespace.
48 // Note: Might return pos == str.length()
49 static inline bool skipWhiteSpace(const String& str, unsigned& pos, bool fromHttpEquivMeta) argument
54 while (pos < len && str[pos] <= ' ')
55 ++pos;
57 while (pos < len && (str[pos] == '\t' || str[pos] == ' '))
58 ++pos;
67 skipToken(const String& str, unsigned& pos, const char* token) argument
86 skipEquals(const String& str, unsigned &pos) argument
93 skipValue(const String& str, unsigned& pos) argument
172 unsigned pos = 0; local
303 unsigned int pos, len; local
313 size_t pos = start; local
363 unsigned pos = 0; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclvfs/tclvfs/library/
H A Dvfslib.tcl50 upvar #0 ::vfs::_memchan(pos,$chan) pos
57 set pos 0
64 unset buf pos name
69 current { incr offset $pos }
79 return [set pos $offset]
83 set r [string range $buf $pos [expr {$pos + $count - 1}]]
84 incr pos [string length $r]
90 if { $pos >
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Ducharstrieiterator.cpp103 const UChar *pos=pos_; local
104 if(pos==NULL) {
112 pos=uchars_+stack_->elementAti(stackSize-2);
117 pos=branchNext(pos, length, errorCode);
118 if(pos==NULL) {
122 str_.append(*pos++);
131 int32_t node=*pos++;
134 pos=skipNodeValue(pos, nod
184 branchNext(const UChar *pos, int32_t length, UErrorCode &errorCode) argument
[all...]

Completed in 224 milliseconds

1234567891011>>