HomeSort by relevance Sort by last modified time
    Searched refs:pos (Results 101 - 125 of 2626) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Token.java 10 private int pos; field in class:Token
34 return this.pos;
37 public void setPos(@SuppressWarnings("hiding") int pos)
39 this.pos = pos;
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
d2_11pf.cpp 160 Word16 pos[NB_PULSE]; local
170 pos[0] = i * 5 + j * 2 + 1;
185 pos[1] = i * 5 + 4;
189 pos[1] = i * 5 + j;
210 * cod[pos[j]] = 8191;
214 * cod[pos[j]] = -8192;
218 cod[pos[j]] = i * 16383 - 8192;
  /libcore/luni/src/main/java/java/sql/
Blob.java 47 * offset {@code pos}, and returns them as a binary stream.
54 public InputStream getBinaryStream(long pos, long length) throws SQLException;
59 * @param pos
65 * at {@code pos} and is up to {@code length} bytes long.
69 public byte[] getBytes(long pos, int length) throws SQLException;
120 * @param pos
129 public OutputStream setBinaryStream(long pos) throws SQLException;
135 * @param pos
146 public int setBytes(long pos, byte[] theBytes) throws SQLException;
152 * @param pos
    [all...]
  /external/libvpx/mkvparser/
mkvparser.cpp 27 long long mkvparser::ReadUInt(IMkvReader* pReader, long long pos, long& len)
30 assert(pos >= 0);
39 // assert(pos < available);
40 // assert((available - pos) >= 1); //assume here max u-int len is 8
47 status = pReader->Read(pos, 1, &b);
67 // assert((available - pos) >= len);
71 ++pos;
75 status = pReader->Read(pos, 1, &b);
92 ++pos;
100 long long pos,
1063 long long pos = m_pos; local
2256 long long pos = m_pos; local
2432 long long pos = start; local
2775 long long pos = start; local
2924 long long pos = m_start; local
3569 long long pos = pos_; local
3655 long long pos = start_; local
3819 long long pos = pCurr->m_element_start; local
4762 long long pos = start; local
5161 long long pos = s.start; local
5356 long long pos = s.start; local
5567 long long pos = m_start; local
5623 long long pos = start; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 16 private int pos; field in class:Lexer
60 int start_pos = this.pos;
89 this.pos = 0;
94 this.pos = 0;
98 this.pos++;
148 accept_pos = this.pos;
165 this.pos = accept_pos;
180 this.pos = accept_pos;
194 this.pos = accept_pos;
208 this.pos = accept_pos
    [all...]
  /external/icu4c/test/intltest/
tokiter.cpp 19 pos = lastpos = -1;
37 pos = 0;
39 lastpos = pos;
65 ICU_Utility::skipWhitespace(line, pos, TRUE);
66 if (pos == line.length()) {
69 UChar c = line.charAt(pos++);
82 while (pos < line.length()) {
83 c = line.charAt(pos); // 16-bit ok
85 UChar32 c32 = line.unescapeAt(pos);
93 ++pos;
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
SimpleEscapingFunction.java 87 int pos = 0; local
88 int start = pos;
89 while (pos < len) {
92 final char chr = in.charAt(pos);
97 if (pos > start) {
98 out.append(in, start, pos);
101 pos += 1;
102 start = pos;
105 pos += 1;
107 if (pos > start)
    [all...]
  /external/javassist/src/main/javassist/convert/
TransformAfter.java 30 protected int match2(int pos, CodeIterator iterator) throws BadBytecode {
31 iterator.move(pos);
37 pos = iterator.next();
39 iterator.writeByte(iterator.byteAt(pos), p);
40 iterator.write16bit(iterator.u16bitAt(pos + 1), p + 1);
41 iterator.writeByte(INVOKESTATIC, pos);
42 iterator.write16bit(newIndex, pos + 1);
TransformNew.java 50 public int transform(CtClass clazz, int pos, CodeIterator iterator,
54 int c = iterator.byteAt(pos);
56 index = iterator.u16bitAt(pos + 1);
58 if (iterator.byteAt(pos + 3) != DUP)
62 iterator.writeByte(NOP, pos);
63 iterator.writeByte(NOP, pos + 1);
64 iterator.writeByte(NOP, pos + 2);
65 iterator.writeByte(NOP, pos + 3);
71 smt.removeNew(pos);
76 sm.removeNew(pos);
    [all...]
  /external/wpa_supplicant/
wpa_passphrase.c 25 char *ssid, *passphrase, buf[64], *pos; local
45 pos = buf;
46 while (*pos != '\0') {
47 if (*pos == '\r' || *pos == '\n') {
48 *pos = '\0';
51 pos++;
asn1.c 25 const u8 *pos, *end; local
29 pos = buf;
32 hdr->identifier = *pos++;
39 if (pos >= end) {
44 tmp = *pos++;
52 tmp = *pos++;
66 if (pos >= end) {
71 hdr->length = (hdr->length << 8) | *pos++;
78 if (end < pos || hdr->length > (unsigned int) (end - pos)) {
92 const u8 *pos, *end; local
146 char *pos = buf; local
187 const u8 *pos = buf; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_passphrase.c 25 char *ssid, *passphrase, buf[64], *pos; local
45 pos = buf;
46 while (*pos != '\0') {
47 if (*pos == '\r' || *pos == '\n') {
48 *pos = '\0';
51 pos++;
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_passphrase.c 25 char *ssid, *passphrase, buf[64], *pos; local
45 pos = buf;
46 while (*pos != '\0') {
47 if (*pos == '\r' || *pos == '\n') {
48 *pos = '\0';
51 pos++;
ctrl_iface.c 416 char *pos; local
421 for (pos = cmd, len = 0; *pos != '\0'; pos++) {
422 if (*pos < '0' || *pos > '9')
424 pin[len++] = *pos;
538 char *pos; local
544 pos = os_strchr(cmd, ' ');
545 if (pos)
595 char *uuid = cmd, *pin, *pos; local
706 char *pos, *id_pos; local
790 char *pos, *end, tmp[30]; local
933 char *pos; local
970 char *pos, *end, *stamp; local
1011 char *pos, *end; local
1058 char *pos, *end; local
1300 char *pos, *end; local
1368 char *pos, *end; local
1698 char *pos, *end; local
1746 char *pos, *end; local
1803 char *pos, *end; local
1856 char *pos, *end; local
1898 char *pos, *end; local
2007 char *pos, *end; local
2263 char *pos, *pos2; local
2358 char *pos; local
2405 char *pos; local
2471 char *pos, *pos2; local
2524 char *pos; local
2573 char *pos; local
2590 char *pos; local
2633 char *pos; local
2650 char *pos; local
2681 char *pos; local
2707 char *pos; local
2769 char *pos; local
2870 char *pos; local
2975 char *pos; local
3018 char *pos, *pos2; local
3050 char *pos; local
3546 char *pos; local
3653 char *pos, *end; local
3694 char *pos, *end; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
q_pulse.h 66 void dec_1p_N1(int32 index, int16 N, int16 offset, int16 pos[]);
67 void dec_2p_2N1(int32 index, int16 N, int16 offset, int16 pos[]);
68 void dec_3p_3N1(int32 index, int16 N, int16 offset, int16 pos[]);
69 void dec_4p_4N1(int32 index, int16 N, int16 offset, int16 pos[]);
70 void dec_4p_4N(int32 index, int16 N, int16 offset, int16 pos[]);
71 void dec_5p_5N(int32 index, int16 N, int16 offset, int16 pos[]);
72 void dec_6p_6N_2(int32 index, int16 N, int16 offset, int16 pos[]);
  /libcore/support/src/test/java/tests/support/
Support_ASimpleInputStream.java 18 public int pos; field in class:Support_ASimpleInputStream
36 pos = 0;
41 pos = 0;
59 return len - pos;
67 if (pos < len) {
68 int res = buf[pos];
69 pos++;
  /external/icu4c/i18n/
fpositer.cpp 26 pos = -1;
30 : data(NULL), pos(-1) {
34 : UObject(rhs), data(NULL), pos(rhs.pos) {
43 pos = -1;
52 if (pos != rhs.pos) {
101 pos = adopt == NULL ? -1 : 0;
105 if (pos == -1) {
109 fp.setField(data->elementAti(pos++))
    [all...]
  /libcore/json/src/main/java/org/json/
JSONTokener.java 71 private int pos; field in class:JSONTokener
110 pos--;
116 while (pos < in.length()) {
117 int c = in.charAt(pos++);
126 if (pos == in.length()) {
130 char peek = in.charAt(pos);
134 pos++;
135 int commentEnd = in.indexOf("*/", pos);
139 pos = commentEnd + 2;
144 pos++
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ie.c 37 u8 *pos, *count; local
43 pos = (u8 *) (hdr + 1);
46 RSN_SELECTOR_PUT(pos, WPA_CIPHER_SUITE_CCMP);
48 RSN_SELECTOR_PUT(pos, WPA_CIPHER_SUITE_TKIP);
50 RSN_SELECTOR_PUT(pos, WPA_CIPHER_SUITE_WEP104);
52 RSN_SELECTOR_PUT(pos, WPA_CIPHER_SUITE_WEP40);
58 pos += WPA_SELECTOR_LEN;
61 count = pos;
62 pos += 2;
65 RSN_SELECTOR_PUT(pos, WPA_CIPHER_SUITE_CCMP)
122 u8 *pos, *count; local
340 u8 *pos, buf[128]; local
782 const u8 *pos, *end; local
    [all...]
  /external/oprofile/libdb/
db_debug.c 19 odb_node_nr_t pos; local
24 for (pos = 0 ; pos < data->descr->size * BUCKET_FACTOR ; ++pos) {
26 odb_index_t index = data->hash_base[pos];
43 index = data->hash_base[pos];
57 index = data->hash_base[pos];
71 odb_node_nr_t pos; local
76 for (pos = 1 ; pos < data->descr->current_size ; ++pos)
91 odb_node_nr_t pos; local
    [all...]
  /external/webkit/Source/WebCore/editing/
InsertLineBreakCommand.cpp 54 void InsertLineBreakCommand::insertNodeAfterPosition(Node* node, const Position& pos)
59 Element* cb = pos.deprecatedNode()->enclosingBlockFlowElement();
60 if (cb == pos.deprecatedNode())
63 insertNodeAfter(node, pos.deprecatedNode());
66 void InsertLineBreakCommand::insertNodeBeforePosition(Node* node, const Position& pos)
71 Element* cb = pos.deprecatedNode()->enclosingBlockFlowElement();
72 if (cb == pos.deprecatedNode())
75 insertNodeBefore(node, pos.deprecatedNode());
101 Position pos(caret.deepEquivalent());
103 pos = positionAvoidingSpecialElementBoundary(pos)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
asn1.c 25 const u8 *pos, *end; local
29 pos = buf;
32 hdr->identifier = *pos++;
39 if (pos >= end) {
44 tmp = *pos++;
52 tmp = *pos++;
66 if (pos >= end) {
71 hdr->length = (hdr->length << 8) | *pos++;
78 if (end < pos || hdr->length > (unsigned int) (end - pos)) {
92 const u8 *pos, *end; local
146 char *pos = buf; local
187 const u8 *pos = buf; local
    [all...]
  /external/wpa_supplicant_8/src/tls/
asn1.c 22 const u8 *pos, *end; local
26 pos = buf;
29 hdr->identifier = *pos++;
36 if (pos >= end) {
41 tmp = *pos++;
49 tmp = *pos++;
63 if (pos >= end) {
68 hdr->length = (hdr->length << 8) | *pos++;
75 if (end < pos || hdr->length > (unsigned int) (end - pos)) {
87 const u8 *pos, *end; local
151 char *pos = buf; local
192 const u8 *pos = buf; local
    [all...]
  /external/emma/core/java12/com/vladium/util/
ByteArrayOStream.java 51 final int pos = m_pos; local
52 final int capacity = pos + 2;
60 if (pos < NATIVE_COPY_THRESHOLD)
61 for (int i = 0; i < pos; ++ i) newbuf [i] = mbuf [i];
63 System.arraycopy (mbuf, 0, newbuf, 0, pos);
68 mbuf [pos] = (byte) b1;
69 mbuf [pos + 1] = (byte) b2;
75 final int pos = m_pos; local
76 final int capacity = pos + 3;
84 if (pos < NATIVE_COPY_THRESHOLD
100 final int pos = m_pos; local
208 final int pos = m_pos; local
243 final int pos = m_pos; local
272 final int pos = m_pos; local
    [all...]
  /external/javassist/src/main/javassist/bytecode/
InstructionPrinter.java 48 int pos; local
50 pos = iterator.next();
55 stream.println(pos + ": " + instructionString(iterator, pos, pool));
59 public static String instructionString(CodeIterator iter, int pos, ConstPool pool) {
60 int opcode = iter.byteAt(pos);
63 throw new IllegalArgumentException("Invalid opcode, opcode: " + opcode + " pos: "+ pos);
68 return opstring + " " + iter.byteAt(pos + 1);
70 return opstring + " " + iter.s16bitAt(pos + 1)
    [all...]

Completed in 1860 milliseconds

1 2 3 45 6 7 8 91011>>