/external/javasqlite/src/main/java/SQLite/ |
Stmt.java | 92 * @param pos parameter index, 1-based 96 public native void bind(int pos, int value) throws SQLite.Exception; 100 * @param pos parameter index, 1-based 104 public native void bind(int pos, long value) throws SQLite.Exception; 108 * @param pos parameter index, 1-based 112 public native void bind(int pos, double value) throws SQLite.Exception; 116 * @param pos parameter index, 1-based 120 public native void bind(int pos, byte[] value) throws SQLite.Exception; 124 * @param pos parameter index, 1-based 128 public native void bind(int pos, String value) throws SQLite.Exception [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
EOF.java | 15 public EOF(int line, int pos) 19 setPos(pos);
|
/external/qemu/distrib/sdl-1.2.15/src/cdrom/beos/ |
SDL_syscdrom.cc | 53 #define POS_TRACK(pos) pos.position[6] 54 #define POS_ABS_M(pos) pos.position[9] 55 #define POS_ABS_S(pos) pos.position[10] 56 #define POS_ABS_F(pos) pos.position[11] 57 #define POS_REL_M(pos) pos.position[13 320 scsi_position pos; local 353 scsi_play_position pos; local [all...] |
/external/qemu/hw/ |
isa.h | 15 int DMA_read_memory (int nchan, void *buf, int pos, int size); 16 int DMA_write_memory (int nchan, void *buf, int pos, int size);
|
/packages/apps/Exchange/src/com/android/exchange/ |
MockParserStream.java | 32 int pos = 0; field in class:MockParserStream 42 return array[pos++];
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
heapq.py | 239 # 'heap' is a heap at all indices >= startpos, except possibly for pos. pos 242 def _siftdown(heap, startpos, pos): 243 newitem = heap[pos] 246 while pos > startpos: 247 parentpos = (pos - 1) >> 1 250 heap[pos] = parent 251 pos = parentpos 254 heap[pos] = newitem 256 # The child indices of heap index pos are already heaps, and we want to mak [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
heapq.py | 239 # 'heap' is a heap at all indices >= startpos, except possibly for pos. pos 242 def _siftdown(heap, startpos, pos): 243 newitem = heap[pos] 246 while pos > startpos: 247 parentpos = (pos - 1) >> 1 250 heap[pos] = parent 251 pos = parentpos 254 heap[pos] = newitem 256 # The child indices of heap index pos are already heaps, and we want to mak [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
interworking.c | 287 static const u8 * nai_realm_parse_eap(struct nai_realm_eap *e, const u8 *pos, 293 if (pos + 3 > end) { 298 elen = *pos++; 299 if (pos + elen > end || elen < 2) { 303 e_end = pos + elen; 304 e->method = *pos++; 305 auth_count = *pos++; 312 if (pos + 2 > end || pos + 2 + pos[1] > end) 443 const u8 *pos, *end; local 481 char *tmp, *pos, *end; local 603 const u8 *pos, *end; local 687 char *end, *pos; local 874 const u8 *pos, *end; local 916 const u8 *pos, *end; local 1023 const char *pos; local 1489 const u8 *pos, *end; local 1851 const u8 *pos = data; local 1983 const u8 *pos; local [all...] |
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
utility.cc | 83 uint32_t pos; local 84 for (pos = 1; ; ++pos) { 85 if (0 == pos) { 89 int c = strval[pos]; 98 *length = pos;
|
/external/chromium_org/third_party/icu/source/i18n/ |
nfsubs.h | 33 int32_t pos; member in class:NFSubstitution 38 NFSubstitution(int32_t pos, 57 static NFSubstitution* makeSubstitution(int32_t pos, 111 * @param pos The position in toInsertInto where the owning rule's 115 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos) const; 123 * @param pos The position in toInsertInto where the owning rule's 127 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos) const; 226 int32_t getPos() const { return pos; }
|
/external/emma/core/java12/com/vladium/util/ |
ByteArrayIStream.java | 60 final int pos = m_pos; local 63 if (pos >= max) return -1; 64 if (pos + length > max) length = max - pos; 70 for (int i = 0; i < length; ++ i) buf [offset + i] = mbuf [pos + i]; 72 System.arraycopy (mbuf, pos, buf, offset, length);
|
/external/icu4c/common/ |
util.h | 81 * 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 INPUT-OUTPUT parameter. On input, pos[0] is th [all...] |
/external/icu4c/i18n/ |
nfsubs.h | 33 int32_t pos; member in class:NFSubstitution 38 NFSubstitution(int32_t pos, 57 static NFSubstitution* makeSubstitution(int32_t pos, 111 * @param pos The position in toInsertInto where the owning rule's 115 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos) const; 123 * @param pos The position in toInsertInto where the owning rule's 127 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos) const; 226 int32_t getPos() const { return pos; }
|
/external/openfst/src/lib/ |
util.cc | 66 int64 pos = strm.tellg(); local 67 if (pos < 0) { 71 if (pos % MappedFile::kArchAlignment == 0) break; 81 int64 pos = strm.tellp(); local 82 if (pos < 0) { 86 if (pos % MappedFile::kArchAlignment == 0) break;
|
/packages/apps/Email/src/com/android/email/mail/store/imap/ |
ImapMemoryLiteral.java | 38 int pos = 0; local 39 while (pos < mData.length) { 40 int read = in.read(mData, pos, mData.length - pos); 44 pos += read; 46 if (pos != mData.length) {
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
ProgressCallbackEntity.java | 58 int pos = 0, totalLen = mContent.length; local 59 while (pos < totalLen) { 60 int len = totalLen - pos; 64 outstream.write(mContent, pos, len); 67 pos += len; 69 broadcastProgressIfNeeded(100 * pos / totalLen);
|
/external/chromium_org/third_party/freetype/src/base/ |
ftstream.c | 41 stream->pos = 0; 58 FT_ULong pos ) 65 if ( stream->read( stream, pos, 0, 0 ) ) 68 " invalid i/o; pos = 0x%lx, size = 0x%lx\n", 69 pos, stream->size )); 75 else if ( pos > stream->size ) 78 " invalid i/o; pos = 0x%lx, size = 0x%lx\n", 79 pos, stream->size )); 85 stream->pos = pos; [all...] |
/external/freetype/src/base/ |
ftstream.c | 41 stream->pos = 0; 58 FT_ULong pos ) 65 if ( stream->read( stream, pos, 0, 0 ) ) 68 " invalid i/o; pos = 0x%lx, size = 0x%lx\n", 69 pos, stream->size )); 75 else if ( pos > stream->size ) 78 " invalid i/o; pos = 0x%lx, size = 0x%lx\n", 79 pos, stream->size )); 85 stream->pos = pos; [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_gpsk.c | 129 const u8 *pos, const u8 *end) 133 if (end - pos < 2) { 137 alen = WPA_GET_BE16(pos); 138 pos += 2; 139 if (end - pos < alen) { 149 os_memcpy(data->id_server, pos, alen); 153 pos += alen; 155 return pos; 160 const u8 *pos, const u8 *end) 162 if (pos == NULL 259 const u8 *csuite_list, *pos, *end; local 567 const u8 *pos, *end; local 647 const u8 *pos; local [all...] |
/external/chromium_org/chrome/test/security_tests/ |
ipc_security_tests.cc | 39 std::wstring::size_type pos = cl.find(key_name, 0); local 40 if (std::wstring::npos == pos) { 43 pos = cl.find(L"=", pos); 44 if (std::wstring::npos == pos) { 47 ++pos; 48 size_t dst = cl.length() - pos; 53 if (!isspace(cl[pos])) { 56 ++pos; 61 std::wstring::size_type pos2 = pos; 76 std::wstring::size_type pos = pipe_name.find(L".", 0); local [all...] |
/external/iproute2/include/linux/netfilter/ |
x_tables.h | 170 /* pos is normally a struct ipt_entry/ip6t_entry/etc. */ 171 #define xt_entry_foreach(pos, ehead, esize) \ 172 for ((pos) = (typeof(pos))(ehead); \ 173 (pos) < (typeof(pos))((char *)(ehead) + (esize)); \ 174 (pos) = (typeof(pos))((char *)(pos) + (pos)->next_offset) [all...] |
/external/wpa_supplicant_8/src/utils/ |
pcsc_funcs.c | 261 unsigned char *pos, *end; local 268 pos = buf; 269 end = pos + buf_len; 270 if (*pos != USIM_FSP_TEMPL_TAG) { 275 pos++; 276 if (pos >= end) 278 if ((pos + pos[0]) < end) 279 end = pos + 1 + pos[0] 501 unsigned long len, pos; local 1094 char *pos; local 1330 unsigned char resp[3], buf[64], *pos, *end; local [all...] |
/external/qemu/android/skin/ |
composer.c | 36 skin_region_translate( r, child->any.pos.x, child->any.pos.y ); 69 skin_region_translate(r, child->any.pos.x, child->any.pos.y); 122 skin_region_translate( r, child->any.pos.x, child->any.pos.y ); 124 skin_region_translate( r, -child->any.pos.x, -child->any.pos.y ); 130 skin_region_translate(r, parent->any.pos.x, parent->any.pos.y ) 223 SkinPos pos; local 286 SkinPos pos = plate->any.pos; local 325 SkinPos pos; local [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cbiapts.c | 140 int32_t start,pos,end,to; local 234 pos=ubrk_next(word); 235 if(pos!=4) 237 log_verbose("next (word = %d\n", (int32_t)pos); 238 pos=ubrk_following(word, 4); 239 if(pos!=5) 241 log_verbose("next (word = %d\n", (int32_t)pos); 247 pos=ubrk_previous(word); 248 log_verbose("%d %d\n", end, pos); 250 pos=ubrk_previous(word) 365 int32_t start,pos; local 547 int32_t pos; local 623 int32_t pos = 0; local 674 int32_t pos = 0; local [all...] |
/external/dropbear/ |
buffer.c | 58 buf->pos = 0; 79 /* resize a buffer, pos and len will be repositioned if required when 90 buf->pos = MIN(newsize, buf->pos); 122 void buf_setpos(buffer* buf, unsigned int pos) { 124 if (pos > buf->len) { 127 buf->pos = pos; 132 if (incr > BUF_MAX_INCR || buf->pos + incr > buf->size) { 135 buf->pos += incr [all...] |