/external/freetype/src/base/ |
ftadvanc.c | 117 FT_UInt num, end, nn; local 128 end = start + count; 129 if ( start >= num || end < start || end > num ) 168 /* END */
|
/external/freetype/src/cff/ |
cf2read.h | 50 const FT_Byte* end; member in struct:CF2_BufferRec_ 68 /* END */
|
/external/google-breakpad/src/common/mac/ |
string_utilities.cc | 59 size_t end; local 64 end = str.find_first_not_of(digits, start); 66 if (end == string::npos) 67 end = str.size(); 69 temp = str.substr(start, end - start); 75 start = str.find_first_of(digits, end + 1);
|
/external/libvncserver/libvncserver/ |
zrleoutstream.h | 31 zrle_U8 *end; member in struct:__anon13530
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
UniqueDWARFASTType.cpp | 31 collection::const_iterator pos, end = m_collection.end(); local 32 for (pos = m_collection.begin(); pos != end; ++pos)
|
/external/lldb/tools/debugserver/source/ |
DNBRegisterInfo.cpp | 41 #define PRINT_COMMA_SEPARATOR do { if (pos < end) { if (i > 0) { strncpy(pos, ", ", end - pos); pos += 2; } } } while (0) 51 char *end = str + sizeof(str); local 67 if (pos < end) 68 pos += snprintf(pos, end - pos, "%2.2x", (uint32_t)value.v_uint8[i]); 119 if (pos < end) 120 pos += snprintf(pos, end - pos, "%d", (int32_t)value.v_sint8[i]); 133 if (pos < end) 134 pos += snprintf(pos, end - pos, "%u", (uint32_t)value.v_uint8[i]); 144 if (pos < end) [all...] |
/external/llvm/include/llvm/ADT/ |
iterator_range.h | 10 /// This provides a very simple, boring adaptor for a begin and end iterator 40 IteratorT end() const { return end_iterator; } function in class:llvm::iterator_range
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
Handler.java | 45 * End of the exception handler's scope (exclusive).
47 Label end;
field in class:Handler
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
HtmlToken.java | 36 final int end; field in class:HtmlToken 39 static HtmlToken instance(int start, int end, HtmlTokenType type) { 40 return new HtmlToken(start, end, type); 44 int n = end - start; 49 private HtmlToken(int start, int end, HtmlTokenType type) { 51 this.end = end;
|
/external/pcre/dist/ |
pcre32_utf32_utils.c | 106 const pcre_uchar *end; local 111 end = iptr + STRLEN_UC(iptr) + 1; 113 end = iptr + length; 115 while (iptr < end) 141 /* End of pcre32_utf32_utils.c */
|
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/ |
bio.h | 59 /** pointer to the end of the buffer */ 60 OPJ_BYTE *end; member in struct:opj_bio
|
raw.h | 65 /** pointer to the end of the buffer */ 66 OPJ_BYTE *end; member in struct:opj_raw
|
/external/pdfium/third_party/freetype/src/base/ |
ftadvanc.c | 117 FT_UInt num, end, nn; local 128 end = start + count; 129 if ( start >= num || end < start || end > num ) 168 /* END */
|
/external/pdfium/third_party/freetype/src/cff/ |
cf2read.h | 50 const FT_Byte* end; member in struct:CF2_BufferRec_ 68 /* END */
|
/external/selinux/libselinux/src/ |
get_default_type.c | 30 const char *ptr = "", *end; local 51 end = ptr + len; 52 if (*end == ':') { 54 ptr = ++end;
|
selinux_check_securetty_context.c | 12 char *start, *end = NULL; local 34 end = start; 35 while (*end && !isspace(*end)) 36 end++; 37 if (*end) 38 *end++ = 0;
|
/external/skia/src/svg/parser/ |
SkSVGPaintState.cpp | 83 const char* end = strchr(attrValue, ';'); local 84 if (end == NULL) 85 end = attrEnd; 87 SkASSERT(delimiter != 0 && delimiter < end); 91 addAttribute(parser, index, delimiter, (int) (end - delimiter)); 92 attrValue = end + 1;
|
/external/skia/tests/ |
RecordPatternTest.cpp | 102 unsigned start, begin, end; local 109 end = start; 110 REPORTER_ASSERT(r, pattern.search(&record, &begin, &end)); 112 REPORTER_ASSERT(r, end == record.count()); 120 end = start; 121 REPORTER_ASSERT(r, !pattern.search(&record, &begin, &end)); 129 end = start; 130 REPORTER_ASSERT(r, pattern.search(&record, &begin, &end)); 132 REPORTER_ASSERT(r, end == record.count()); 134 REPORTER_ASSERT(r, !pattern.search(&record, &begin, &end)); [all...] |
/external/skia/tools/timer/ |
GpuTimer.cpp | 49 double GpuTimer::end() { function in class:GpuTimer
|
/external/tcpdump/ |
print-timed.c | 52 const u_char *end; local 104 end = memchr(tsp->tsp_name, '\0', snapend - (u_char *)tsp->tsp_name); 105 if (end == NULL) 109 fwrite(tsp->tsp_name, end - (u_char *)tsp->tsp_name, 1, stdout);
|
/external/vixl/examples/ |
factorial.cc | 37 Label loop, end; local 42 __ Cbz(x1, &end); // Nothing to do if the input is null. 49 __ Bind(&end);
|
/frameworks/base/core/java/android/animation/ |
FloatArrayEvaluator.java | 59 * @param endValue The end value. 72 float end = endValue[i]; local 73 array[i] = start + (fraction * (end - start));
|
IntArrayEvaluator.java | 58 * @param endValue The end value. 70 int end = endValue[i]; local 71 array[i] = (int) (start + (fraction * (end - start)));
|
/frameworks/base/libs/androidfw/tests/ |
AttributeFinder_test.cpp | 58 const int end = sizeof(sortedAttributes) / sizeof(*sortedAttributes); local 59 MockAttributeFinder finder(sortedAttributes, end); 68 EXPECT_EQ(end, finder.find(0x7f010002)); 72 const int end = sizeof(sortedAttributes) / sizeof(*sortedAttributes); local 73 MockAttributeFinder finder(sortedAttributes, end); 76 EXPECT_EQ(end, finder.find(0x7f010002)); 86 const int end = sizeof(sortedAttributes) / sizeof(*sortedAttributes); local 87 MockAttributeFinder finder(sortedAttributes, end); 92 EXPECT_EQ(end, finder.find(0x01010003)); 94 EXPECT_EQ(end, finder.find(0x01010005)) 101 const int end = sizeof(packageUnsortedAttributes) \/ sizeof(*packageUnsortedAttributes); local 118 const int end = sizeof(singlePackageAttributes) \/ sizeof(*singlePackageAttributes); local [all...] |
/frameworks/compile/mclinker/include/mcld/MC/ |
AttributeSet.h | 41 const_iterator end() const { return m_AttrSet.end(); } function in class:mcld::AttributeSet 42 iterator end() { return m_AttrSet.end(); } function in class:mcld::AttributeSet
|