/device/asus/flo/conn_init/ |
wfc_util_common.c | 52 int i, pos; local 64 /* pos = (szAsciiString - i - 1) / 2; */ 65 pos = i / 2; 79 pHexaBuff[pos] = temp<<4; 81 pHexaBuff[pos] |= temp;
|
/device/lge/mako/conn_init/ |
wfc_util_common.c | 52 int i, pos; local 64 /* pos = (szAsciiString - i - 1) / 2; */ 65 pos = i / 2; 79 pHexaBuff[pos] = temp<<4; 81 pHexaBuff[pos] |= temp;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
StreamUtil.java | 97 int pos = stack.length; local 99 stack[--pos] = (byte)(tagNo & 0x7F); 104 stack[--pos] = (byte)(tagNo & 0x7F | 0x80); 108 length += stack.length - pos;
|
/external/chromium/base/ |
string_piece.h | 136 size_type copy(char* buf, size_type n, size_type pos = 0) const; 138 size_type find(const StringPiece& s, size_type pos = 0) const; 139 size_type find(char c, size_type pos = 0) const; 140 size_type rfind(const StringPiece& s, size_type pos = npos) const; 141 size_type rfind(char c, size_type pos = npos) const; 143 size_type find_first_of(const StringPiece& s, size_type pos = 0) const; 144 size_type find_first_of(char c, size_type pos = 0) const { 145 return find(c, pos); 147 size_type find_first_not_of(const StringPiece& s, size_type pos = 0) const; 148 size_type find_first_not_of(char c, size_type pos = 0) const [all...] |
/external/chromium/net/proxy/ |
proxy_config_service_android.cc | 40 size_t pos; local 41 while ( (pos = exList.find(',')) != std::string::npos) { 42 config.proxy_rules().bypass_rules.AddRuleFromString(exList.substr(0, pos)); 43 exList.erase(0, pos + 1);
|
/external/chromium/sdch/open-vcdiff/src/ |
addrcache.h | 143 // 0 <= pos < near_cache_size_ 145 VCDAddress NearAddress(int pos) const { 146 return near_addresses_[pos]; 152 // 0 <= pos < (same_cache_size_ * 256) 154 VCDAddress SameAddress(int pos) const { 155 return same_addresses_[pos];
|
/external/chromium_org/chrome/browser/chromeos/options/ |
network_property_ui_data.cc | 31 size_t pos = property_key.find_last_of('.'); 34 if (pos != std::string::npos) { 35 recommended_property_key = property_key.substr(0, pos + 1); 36 property_basename = property_key.substr(pos + 1);
|
/external/chromium_org/chrome/browser/spellchecker/ |
word_trimmer.cc | 29 if ((*start >= iter.prev() && *start < iter.pos()) || 30 (end > iter.prev() && end <= iter.pos())) { 33 last = iter.pos(); 41 last = iter.pos();
|
/external/chromium_org/remoting/host/setup/ |
oauth_helper_unittest.cc | 13 size_t pos = s.find(old_substr); local 14 if (pos == std::string::npos) { 17 return s.substr(0, pos) + new_substr + 18 s.substr(pos + old_substr.length(), std::string::npos);
|
/external/chromium_org/sdch/open-vcdiff/src/ |
addrcache.h | 143 // 0 <= pos < near_cache_size_ 145 VCDAddress NearAddress(int pos) const { 146 return near_addresses_[pos]; 152 // 0 <= pos < (same_cache_size_ * 256) 154 VCDAddress SameAddress(int pos) const { 155 return same_addresses_[pos];
|
/external/chromium_org/third_party/freetype/src/base/ |
ftapi.c | 57 FT_ULong pos ) 59 return FT_Stream_Seek( stream, pos ); 82 FT_ULong pos, 86 return FT_Stream_ReadAt( stream, pos, buffer, count );
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
stringpiece.h | 87 * @param pos start position in x; must be non-negative and <= x.length(). 90 StringPiece(const StringPiece& x, int32_t pos); 94 * @param pos start position in x; must be non-negative and <= x.length(). 96 * must be non-negative and will be pinned to at most x.length() - pos. 99 StringPiece(const StringPiece& x, int32_t pos, int32_t len); 190 * @param pos start position; must be non-negative and <= length(). 192 * must be non-negative and will be pinned to at most length() - pos. 196 StringPiece substr(int32_t pos, int32_t len = npos) const { 197 return StringPiece(*this, pos, len);
|
symtable.h | 93 * found, return the empty string and leave pos unchanged. That is, if the 94 * character at pos cannot start a name, or if pos is at or after 98 * @param pos on entry, the index of the first character to parse. 101 * failed, pos is unchanged on exit. 108 ParsePosition& pos, int32_t limit) const = 0;
|
/external/chromium_org/third_party/icu/source/i18n/ |
currfmt.cpp | 55 FieldPosition& pos, 58 return fmt->format(obj, appendTo, pos, ec); 63 ParsePosition& pos) const 65 fmt->parseCurrency(source, result, pos);
|
ucurrimp.h | 39 * @param pos input-output position; on input, the position within 40 * text to match; must have 0 <= pos.getIndex() < text.length(); 52 U_NAMESPACE_QUALIFIER ParsePosition& pos,
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/ |
string_piece.h | 136 size_type copy(char* buf, size_type n, size_type pos = 0) const; 138 size_type find(const StringPiece& s, size_type pos = 0) const; 139 size_type find(char c, size_type pos = 0) const; 140 size_type rfind(const StringPiece& s, size_type pos = npos) const; 141 size_type rfind(char c, size_type pos = npos) const; 143 size_type find_first_of(const StringPiece& s, size_type pos = 0) const; 144 size_type find_first_of(char c, size_type pos = 0) const { 145 return find(c, pos); 147 size_type find_first_not_of(const StringPiece& s, size_type pos = 0) const; 148 size_type find_first_not_of(char c, size_type pos = 0) const [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_tex_tile_cache.c | 50 uint pos; local 58 for (pos = 0; pos < NUM_ENTRIES; pos++) { 59 tc->entries[pos].addr.bits.invalid = 1; 71 uint pos; local 73 for (pos = 0; pos < NUM_ENTRIES; pos++) { 74 /*assert(tc->entries[pos].x < 0);* 191 int pos; local [all...] |
/external/chromium_org/ui/gfx/ |
utf16_indexing.h | 18 // |pos| in the given string. |UTF16OffsetToIndex| returns the index that is 33 // UTF16IndexToOffset(s, base, pos) == pos - base 35 // If |pos| does not point to the middle of a surrogate pair, then 36 // UTF16OffsetToIndex(s, base, UTF16IndexToOffset(s, base, pos)) == pos 42 size_t pos);
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_printf.cc | 57 int pos = 0; 59 RAW_CHECK_MSG((uptr)pos < kMaxLen, "AppendNumber buffer overflow"); 60 num_buffer[pos++] = absolute_value % base; 63 if (pos < minimal_num_length) { 65 internal_memset(&num_buffer[pos], 0, 66 sizeof(num_buffer[0]) * (minimal_num_length - pos)); 67 pos = minimal_num_length; 69 RAW_CHECK(pos > 0); 70 pos--; 71 for (; pos >= 0 && num_buffer[pos] == 0; pos--) [all...] |
/external/freetype/src/base/ |
ftapi.c | 57 FT_ULong pos ) 59 return FT_Stream_Seek( stream, pos ); 82 FT_ULong pos, 86 return FT_Stream_ReadAt( stream, pos, buffer, count );
|
/external/icu4c/common/unicode/ |
stringpiece.h | 87 * @param pos start position in x; must be non-negative and <= x.length(). 90 StringPiece(const StringPiece& x, int32_t pos); 94 * @param pos start position in x; must be non-negative and <= x.length(). 96 * must be non-negative and will be pinned to at most x.length() - pos. 99 StringPiece(const StringPiece& x, int32_t pos, int32_t len); 190 * @param pos start position; must be non-negative and <= length(). 192 * must be non-negative and will be pinned to at most length() - pos. 196 StringPiece substr(int32_t pos, int32_t len = npos) const { 197 return StringPiece(*this, pos, len);
|
symtable.h | 93 * found, return the empty string and leave pos unchanged. That is, if the 94 * character at pos cannot start a name, or if pos is at or after 98 * @param pos on entry, the index of the first character to parse. 101 * failed, pos is unchanged on exit. 108 ParsePosition& pos, int32_t limit) const = 0;
|
/external/icu4c/i18n/ |
currfmt.cpp | 56 FieldPosition& pos, 59 return fmt->format(obj, appendTo, pos, ec); 64 ParsePosition& pos) const 66 CurrencyAmount* currAmt = fmt->parseCurrency(source, pos);
|
ucurrimp.h | 39 * @param pos input-output position; on input, the position within 40 * text to match; must have 0 <= pos.getIndex() < text.length(); 52 icu::ParsePosition& pos,
|
/external/javassist/src/main/javassist/expr/ |
ExprEditor.java | 145 int pos; field in class:ExprEditor.NewOp 150 pos = p; 181 int pos = iterator.next(); local 182 int c = iterator.byteAt(pos); 190 expr = new MethodCall(pos, iterator, clazz, minfo); 196 expr = new FieldAccess(pos, iterator, clazz, minfo, c); 200 int index = iterator.u16bitAt(pos + 1); 201 context.newList = new NewOp(context.newList, pos, 208 iterator.u16bitAt(pos + 1)) > 0) { 209 expr = new NewExpr(pos, iterator, clazz, minfo [all...] |