/external/clang/test/CodeGen/ |
2003-08-17-DeadCodeShortCircuit.c | 3 int test(_Bool pos, _Bool color) { 5 return (pos && color);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
break_lines.h | 30 int nextBreakablePositionIgnoringNBSP(LazyLineBreakIterator&, int pos); 32 inline bool isBreakable(LazyLineBreakIterator& lazyBreakIterator, int pos, int& nextBreakable) 34 if (pos > nextBreakable) 35 nextBreakable = nextBreakablePositionIgnoringNBSP(lazyBreakIterator, pos); 36 return pos == nextBreakable;
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLMetaCharsetParser.cpp | 59 size_t pos = 0; local 62 while (pos < length) { 63 pos = value.find(charsetString, pos, false); 64 if (pos == kNotFound) 67 pos += charsetLength; 70 while (pos < length && value[pos] <= ' ') 71 ++pos; 73 if (value[pos] != '=' [all...] |
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
HeaderParser.java | 27 int pos = 0; local 28 while (pos < value.length()) { 29 int tokenStart = pos; 30 pos = skipUntil(value, pos, "=,"); 31 String directive = value.substring(tokenStart, pos).trim(); 33 if (pos == value.length() || value.charAt(pos) == ',') { 34 pos++; // consume ',' (if necessary) 39 pos++; // consume '= [all...] |
/external/icu4c/common/ |
bytestrie.cpp | 30 BytesTrie::readValue(const uint8_t *pos, int32_t leadByte) { 35 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos; 37 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1]; 39 value=(pos[0]<<16)|(pos[1]<<8)|pos[2]; 41 value=(pos[0]<<24)|(pos[1]<<16)|(pos[2]<<8)|pos[3] 68 const uint8_t *pos=pos_; local [all...] |
ucharstrie.cpp | 31 const UChar *pos=pos_; local 32 if(pos==NULL) { 36 return (remainingMatchLength_<0 && (node=*pos)>=kMinValueLead) ? 60 UCharsTrie::branchNext(const UChar *pos, int32_t length, int32_t uchar) { 63 length=*pos++; 69 if(uchar<*pos++) { 71 pos=jumpByDelta(pos); 74 pos=skipDelta(pos); 154 const UChar *pos=pos_; local 181 const UChar *pos=pos_; local 365 const UChar *pos=pos_; local [all...] |
/external/wpa_supplicant_8/src/rsn_supp/ |
wpa_ie.c | 42 u8 *pos; local 54 pos = (u8 *) (hdr + 1); 62 RSN_SELECTOR_PUT(pos, suite); 63 pos += WPA_SELECTOR_LEN; 65 *pos++ = 1; 66 *pos++ = 0; 75 RSN_SELECTOR_PUT(pos, suite); 76 pos += WPA_SELECTOR_LEN; 78 *pos++ = 1; 79 *pos++ = 0 110 u8 *pos; local 362 const u8 *pos, *end; local [all...] |
/external/wpa_supplicant_8/src/utils/ |
uuid.c | 16 const char *pos; local 19 pos = str; 22 if (hexstr2bin(pos, opos, 4)) 24 pos += 8; 27 if (*pos++ != '-' || hexstr2bin(pos, opos, 2)) 29 pos += 4; 32 if (*pos++ != '-' || hexstr2bin(pos, opos, 2)) 34 pos += 4 [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/ |
CharCache.java | 25 private int pos; field in class:CharCache 33 int available = cache.length - pos; 35 System.arraycopy(chars, 0, cache, pos, toWrite); 36 pos += toWrite; 40 return new String(cache, 0, pos); 44 pos = 0; 48 if (pos < cache.length - 1) { 49 cache[pos] = c; 50 pos++; 55 return pos; [all...] |
/external/okhttp/src/main/java/com/squareup/okhttp/internal/tls/ |
DistinguishedNameParser.java | 29 private int pos; field in class:DistinguishedNameParser 51 for (; pos < length && chars[pos] == ' '; pos++) { 53 if (pos == length) { 58 beg = pos; 61 pos++; 62 for (; pos < length && chars[pos] != '=' && chars[pos] != ' '; pos++) [all...] |
/libcore/luni/src/main/java/javax/net/ssl/ |
DistinguishedNameParser.java | 31 private int pos; field in class:DistinguishedNameParser 53 for (; pos < length && chars[pos] == ' '; pos++) { 55 if (pos == length) { 60 beg = pos; 63 pos++; 64 for (; pos < length && chars[pos] != '=' && chars[pos] != ' '; pos++) [all...] |
/external/chromium/net/base/ |
gzip_header.cc | 35 const uint8* pos = reinterpret_cast<const uint8*>(inbuf); local 36 const uint8* const end = pos + inbuf_len; 38 while ( pos < end ) { 41 if ( *pos != magic[0] ) return INVALID_HEADER; 42 pos++; 46 if ( *pos != magic[1] ) return INVALID_HEADER; 47 pos++; 51 if ( *pos != Z_DEFLATED ) return INVALID_HEADER; 52 pos++; 56 flags_ = (*pos) & (FLAG_FHCRC | FLAG_FEXTRA [all...] |
/external/chromium_org/net/base/ |
gzip_header.cc | 32 const uint8* pos = reinterpret_cast<const uint8*>(inbuf); local 33 const uint8* const end = pos + inbuf_len; 35 while ( pos < end ) { 38 if ( *pos != magic[0] ) return INVALID_HEADER; 39 pos++; 43 if ( *pos != magic[1] ) return INVALID_HEADER; 44 pos++; 48 if ( *pos != Z_DEFLATED ) return INVALID_HEADER; 49 pos++; 53 flags_ = (*pos) & (FLAG_FHCRC | FLAG_FEXTRA [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
DNParser.java | 46 private int pos; field in class:DNParser 74 for (; pos < chars.length && chars[pos] == ' '; pos++) { 76 if (pos == chars.length) { 81 beg = pos; 84 pos++; 85 for (; pos < chars.length && chars[pos] != '=' && chars[pos] != ' '; pos++) [all...] |
/external/chromium/net/websockets/ |
websocket_net_log_params.cc | 20 size_t pos = 0; local 21 while (pos <= headers_size) { 22 if (pos == headers_size || 23 (headers_[pos] == '\r' && 24 pos + 1 < headers_size && headers_[pos + 1] == '\n')) { 25 std::string entry = headers_.substr(last, pos - last); 26 pos += 2; 27 last = pos; 34 for (; pos < headers_size; ++pos) [all...] |
/external/chromium_org/net/websockets/ |
websocket_net_log_params.cc | 20 size_t pos = 0; local 21 while (pos <= headers_size) { 22 if (pos == headers_size || 23 ((*headers)[pos] == '\r' && 24 pos + 1 < headers_size && (*headers)[pos + 1] == '\n')) { 25 std::string entry = headers->substr(last, pos - last); 26 pos += 2; 27 last = pos; 34 for (; pos < headers_size; ++pos) [all...] |
/external/iptables/libiptc/ |
linux_list.h | 335 * @pos: the &struct list_head to use as a loop counter. 338 #define list_for_each(pos, head) \ 339 for (pos = (head)->next, prefetch(pos->next); pos != (head); \ 340 pos = pos->next, prefetch(pos->next)) 344 * @pos: the &struct list_head to use as a loop counter. 352 #define __list_for_each(pos, head) [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/ |
XMPPathParser.java | 92 PathPosition pos = new PathPosition(); local 93 pos.path = path; 97 parseRootNode(schemaNS, pos, expandedXPath); 100 while (pos.stepEnd < path.length()) 102 pos.stepBegin = pos.stepEnd; 104 skipPathDelimiter(path, pos); 106 pos.stepEnd = pos.stepBegin; 110 if (path.charAt(pos.stepBegin) != '[' [all...] |
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/ |
buffer_with_extendable_buffer.cpp | 27 int *const pos) { 33 if (!checkAndPrepareWriting(*pos, size)) { 36 const bool usesAdditionalBuffer = isInAdditionalBuffer(*pos); 39 *pos -= mOriginalBufferSize; 41 ByteArrayUtils::writeUintAndAdvancePosition(buffer, data, size, pos); 43 *pos += mOriginalBufferSize; 49 const int codePointCount, const bool writesTerminator ,int *const pos) { 52 if (!checkAndPrepareWriting(*pos, size)) { 55 const bool usesAdditionalBuffer = isInAdditionalBuffer(*pos); 58 *pos -= mOriginalBufferSize [all...] |
/bionic/libc/stdio/ |
ftell.c | 44 fpos_t pos; local 48 pos = -1; 59 pos = fp->_offset; 61 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR); 62 if (pos == -1) 71 pos -= fp->_r; 73 pos -= fp->_ur; 80 pos += fp->_p - fp->_bf._base; 83 return (pos); 95 long pos; local [all...] |
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/ |
dictionary_shortcuts_structure_policy.h | 31 virtual int getStartPos(const int pos) const = 0; 35 int *const pos) const = 0; 37 virtual void skipAllShortcuts(int *const pos) const = 0;
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
inet_pton.c | 22 const char* pos = src; local 30 if (isspace((int)(*pos))) 33 unsigned long value = strtoul(pos, &end_pos, 10); 34 if (value > 255 || pos == end_pos) 37 pos = end_pos; 40 if (*pos != '.') 42 ++pos; 45 if (*pos != '\0') 55 const char* pos = src; local 56 while (*pos != '\0') [all...] |
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_indexing.h | 97 int pos; local 99 best=s[0];pos=0; 100 if(s[1]>best){best=s[1];pos=1;} 101 if(s[2]>best){best=s[2];pos=2;} 102 return(pos); 108 int pos; local 110 best=s[0];pos=0; 111 if(s[1]>best){best=s[1];pos=1;} 112 if(s[2]>best){best=s[2];pos=2;} 113 if(s[3]>best){best=s[3];pos=3; 120 int pos; local 133 int pos; local 147 int pos; local 162 int pos; local 177 int pos; local 194 int pos; local 205 int pos; local [all...] |
/packages/apps/Camera2/jni/feature_stab/db_vlvm/ |
db_utilities_indexing.h | 97 int pos; local 99 best=s[0];pos=0; 100 if(s[1]>best){best=s[1];pos=1;} 101 if(s[2]>best){best=s[2];pos=2;} 102 return(pos); 108 int pos; local 110 best=s[0];pos=0; 111 if(s[1]>best){best=s[1];pos=1;} 112 if(s[2]>best){best=s[2];pos=2;} 113 if(s[3]>best){best=s[3];pos=3; 120 int pos; local 133 int pos; local 147 int pos; local 162 int pos; local 177 int pos; local 194 int pos; local 205 int pos; local [all...] |
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_utilities_indexing.h | 97 int pos; local 99 best=s[0];pos=0; 100 if(s[1]>best){best=s[1];pos=1;} 101 if(s[2]>best){best=s[2];pos=2;} 102 return(pos); 108 int pos; local 110 best=s[0];pos=0; 111 if(s[1]>best){best=s[1];pos=1;} 112 if(s[2]>best){best=s[2];pos=2;} 113 if(s[3]>best){best=s[3];pos=3; 120 int pos; local 133 int pos; local 147 int pos; local 162 int pos; local 177 int pos; local 194 int pos; local 205 int pos; local [all...] |