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

<<11121314151617181920>>

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/cc_hash_table_map_/
insert_no_store_hash_fn_imps.hpp 49 const size_type pos = ranged_hash_fn_base::operator()(r_key); local
50 entry_pointer p_e = m_entries[pos];
68 return std::make_pair(insert_new_imp(r_val, pos), true);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
equally_split.h 52 difference_type pos = 0; local
55 *s++ = pos;
56 pos += (i < num_longer_chunks) ? (chunk_length + 1) : chunk_length;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
insert_no_store_hash_fn_imps.hpp 49 const size_type pos = ranged_hash_fn_base::operator()(r_key); local
50 entry_pointer p_e = m_entries[pos];
68 return std::make_pair(insert_new_imp(r_val, pos), true);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
insert_no_store_hash_fn_imps.hpp 49 const size_type pos = ranged_hash_fn_base::operator()(r_key); local
50 entry_pointer p_e = m_entries[pos];
68 return std::make_pair(insert_new_imp(r_val, pos), true);
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
insert_no_store_hash_fn_imps.hpp 49 const size_type pos = ranged_hash_fn_base::operator()(r_key); local
50 entry_pointer p_e = m_entries[pos];
68 return std::make_pair(insert_new_imp(r_val, pos), true);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/
MockNodeProxy.java 58 int pos = xmlName.lastIndexOf('.'); local
59 if (pos > 0) {
60 xmlName = xmlName.substring(pos + 1);
  /external/webkit/Source/WebCore/platform/network/
MIMESniffing.cpp 145 static inline void skipWhiteSpace(const char* data, size_t& pos, size_t dataSize)
147 while (pos < dataSize && isWhiteSpace(data[pos]))
148 ++pos;
272 size_t pos = 0; local
273 skipWhiteSpace(data, pos, dataSize);
274 data += pos;
275 dataSize -= pos;
380 static inline bool checkText(const char* data, size_t& pos, size_t dataSize, const char* text, size_t textSize)
382 if (dataSize - pos < textSize || memcmp(data + pos, text, textSize)
431 size_t pos = 0; local
    [all...]
  /development/tools/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp 31 int pos =0; local
33 attrib[pos++] = EGL_SURFACE_TYPE; attrib[pos++] = EGL_WINDOW_BIT;
34 if (config & CONFIG_DEPTH) {attrib[pos++] = EGL_DEPTH_SIZE; attrib[pos++] = 1;}
35 attrib[pos++] = EGL_NONE;
  /external/icu4c/common/
util.h 82 * Skip over a sequence of zero or more white space characters at pos.
83 * @param advance if true, advance pos to the first non-white-space
84 * character at or after pos, or str.length(), if there is none.
85 * Otherwise leave pos unchanged.
87 * after pos, or str.length(), if there is none.
89 static int32_t skipWhitespace(const UnicodeString& str, int32_t& pos,
102 * @param pos either the start or limit of a range of 'text', to skip
107 * 'pos'
111 //? int32_t pos, int32_t stop);
117 * @param pos INPUT-OUTPUT parameter. On input, pos[0] is th
    [all...]
  /external/wpa_supplicant/wpa_gui-qt4/
userdatarequest.cpp 45 char *tmp, *pos, *pos2; local
50 pos = strchr(tmp, '-');
51 if (pos == NULL) {
55 *pos++ = '\0';
57 pos2 = strchr(pos, ':');
64 networkid = atoi(pos);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_md5.c 40 const u8 *pos, *challenge, *password; local
52 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_MD5, reqData, &len);
53 if (pos == NULL || len == 0) {
54 wpa_printf(MSG_INFO, "EAP-MD5: Invalid frame (pos=%p len=%lu)",
55 pos, (unsigned long) len);
64 challenge_len = *pos++;
73 challenge = pos;
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
userdatarequest.cpp 45 char *tmp, *pos, *pos2; local
50 pos = strchr(tmp, '-');
51 if (pos == NULL) {
55 *pos++ = '\0';
57 pos2 = strchr(pos, ':');
64 networkid = atoi(pos);
  /external/wpa_supplicant_8/src/eap_peer/
eap_md5.c 40 const u8 *pos, *challenge, *password; local
52 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_MD5, reqData, &len);
53 if (pos == NULL || len == 0) {
54 wpa_printf(MSG_INFO, "EAP-MD5: Invalid frame (pos=%p len=%lu)",
55 pos, (unsigned long) len);
64 challenge_len = *pos++;
73 challenge = pos;
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
userdatarequest.cpp 45 char *tmp, *pos, *pos2; local
50 pos = strchr(tmp, '-');
51 if (pos == NULL) {
55 *pos++ = '\0';
57 pos2 = strchr(pos, ':');
64 networkid = atoi(pos);
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 82 private int pos; field in class:ChunkedInputStream
101 this.pos = 0;
124 if (this.pos >= this.chunkSize) {
130 pos++;
154 if (pos >= chunkSize) {
160 len = Math.min(len, chunkSize - pos);
162 pos += count;
188 pos = 0;
  /external/icu4c/i18n/
currfmt.h 73 FieldPosition& pos,
81 ParsePosition& pos) const;
  /external/icu4c/samples/msgfmt/answers/
main_2.cpp 25 FieldPosition pos; local
37 msg.format(msgArgs, 2, str, pos, status);
main_3.cpp 25 FieldPosition pos; local
37 msg.format(msgArgs, 2, str, pos, status);
  /external/icu4c/samples/msgfmt/
main.cpp 25 FieldPosition pos; local
37 msg.format(msgArgs, 2, str, pos, status);
  /external/javassist/src/main/javassist/expr/
Cast.java 30 protected Cast(int pos, CodeIterator i, CtClass declaring, MethodInfo m) {
31 super(pos, i, declaring, m);
65 int pos = currentPos; local
66 int index = iterator.u16bitAt(pos + 1);
92 int pos = currentPos; local
93 int index = iterator.u16bitAt(pos + 1);
116 jc.recordLocalVariables(ca, pos);
124 replace0(pos, bytecode, 3);
ConstructorCall.java 35 protected ConstructorCall(int pos, CodeIterator i, CtClass decl, MethodInfo m) {
36 super(pos, i, decl, m);
Instanceof.java 30 protected Instanceof(int pos, CodeIterator i, CtClass declaring,
32 super(pos, i, declaring, m);
68 int pos = currentPos; local
69 int index = iterator.u16bitAt(pos + 1);
95 int pos = currentPos; local
96 int index = iterator.u16bitAt(pos + 1);
122 jc.recordLocalVariables(ca, pos);
130 replace0(pos, bytecode, 3);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
TAlt.java 15 public TAlt(int line, int pos)
19 setPos(pos);
TAnd.java 15 public TAnd(int line, int pos)
19 setPos(pos);
TArgWhitespace.java 15 public TArgWhitespace(String text, int line, int pos)
19 setPos(pos);

Completed in 1911 milliseconds

<<11121314151617181920>>