/external/icu/android_icu4j/src/main/java/android/icu/text/ |
StringCharacterIterator.java | 70 * @param end Index of the character following the last character 127 * Implements CharacterIterator.last() for String. 128 * @see CharacterIterator#last 132 public char last() method in class:StringCharacterIterator
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
Visitor.java | 65 Object last = null; local 72 doBetween(c, last, item); 74 doAt(last=item); 76 doAfter(c, last); 87 Object last = null; local 97 cpr = last == cpr0 ? cpr1 : cpr0; // make sure we don't override last 106 doBetween(c, last, item); 108 doAt(last = item); 110 doAfter(c, last); 115 Object last = null; local [all...] |
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/ |
BreakIteratorTest.java | 85 * Test method for 'com.ibm.icu.text.BreakIterator.last()' 88 assertEquals(text.length(), cbr.last()); 89 assertEquals(text.length(), wbr.last()); 90 assertEquals(text.length(), lbr.last()); 91 assertEquals(text.length(), sbr.last()); 107 cbr.last(); 108 wbr.last(); 109 lbr.last(); 110 sbr.last(); 135 cbr.last(); [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
UCharacterIteratorWrapper.java | 43 * @return the last character in the text, or DONE if the text is empty 46 public char last(){ method in class:UCharacterIteratorWrapper 112 * @return the index after the last character in the text
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
BasicPeriodFormatter.java | 108 // get the first and last units that are set. 110 int last = counts.length - 1; local 112 while (last > first && (mask & (1 << last)) == 0) --last; 116 for (int i = first; i <= last; ++i) { 146 boolean multiple = first != last; 152 for (int i = first, j = i; i <= last; i = j) { 160 while (++j < last && (mask & (1 << j)) == 0) { 168 if (i == last) { [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
StringCharacterIterator.java | 68 * @param end Index of the character following the last character 125 * Implements CharacterIterator.last() for String. 126 * @see CharacterIterator#last 130 public char last() method in class:StringCharacterIterator
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
BreakIteratorICU.java | 66 public int last() { method in class:BreakIteratorICU 67 return fIcuBrkItr.last();
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
Visitor.java | 64 Object last = null; local 71 doBetween(c, last, item); 73 doAt(last=item); 75 doAfter(c, last); 86 Object last = null; local 96 cpr = last == cpr0 ? cpr1 : cpr0; // make sure we don't override last 105 doBetween(c, last, item); 107 doAt(last = item); 109 doAfter(c, last); 114 Object last = null; local [all...] |
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
XMLCoverageWriter.java | 136 final int last = source.getLastLine(); local 137 for (int nr = source.getFirstLine(); nr <= last; nr++) {
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
InclusiveByteRange.java | 55 long last = 0; field in class:InclusiveByteRange 57 public InclusiveByteRange(long first, long last) 60 this.last = last; 70 return last; 102 long last = -1; local 114 last = Long.parseLong(t.substring(d + 1).trim()); 124 last = Long.parseLong(t.substring(d + 1).trim()); 129 if (first == -1 && last == -1) 132 if (first != -1 && last != -1 && (first > last) [all...] |
/external/libchrome/base/memory/ |
linked_ptr.h | 6 // particular object is kept on a circular linked list. When the last pointer 9 // Used properly, this deletes the object when the last reference goes away. 59 // last member of the circle. Once this is done, you can join() another. 118 bool last = link_.depart(); local 119 CHECK(last);
|
/external/libevent/ |
minheap-internal.h | 100 struct event *last = s->p[--s->n]; local 102 /* we replace e with the last element in the heap. We might need to 107 if (e->ev_timeout_pos.min_heap_idx > 0 && min_heap_elem_greater(s->p[parent], last)) 108 min_heap_shift_up_(s, e->ev_timeout_pos.min_heap_idx, last); 110 min_heap_shift_down_(s, e->ev_timeout_pos.min_heap_idx, last);
|
/external/llvm/lib/CodeGen/ |
ScoreboardHazardRecognizer.cpp | 97 unsigned last = Depth - 1; local 98 while ((last > 0) && ((*this)[last] == 0)) 99 last--; 101 for (unsigned i = 0; i <= last; i++) {
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_tgsi_decl_sm30.c | 520 unsigned last = decl->Range.Last; local 523 for( idx = first; idx <= last; idx++ ) {
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
vgu.c | 269 VGfloat last = startAngle + angleExtent; local 297 while (angle < last) { 311 coords[i+3] = x+cos(DEGREES_TO_RADIANS(last))*width/2; 312 coords[i+4] = y+sin(DEGREES_TO_RADIANS(last))*height/2; 320 while (angle > last) { 334 coords[i+3] = x + cos(DEGREES_TO_RADIANS(last)) * width/2; 335 coords[i+4] = y + sin(DEGREES_TO_RADIANS(last)) * height/2;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_channel_expressions.cpp | 277 ir_expression *last = NULL; local 287 if (last) { 288 last = new(mem_ctx) ir_expression(ir_binop_add, 291 last); 293 last = temp; 296 assign(ir, 0, last); 309 ir_expression *last = NULL; local 325 if (last) { 326 last = new(mem_ctx) ir_expression(join, 329 last); [all...] |
/external/mesa3d/src/mesa/program/ |
prog_cache.c | 48 struct cache_item *last; member in struct:gl_program_cache 88 cache->last = NULL; 114 cache->last = NULL; 177 if (cache->last && 178 memcmp(cache->last->key, key, keysize) == 0) { 179 return cache->last->program; 187 cache->last = c;
|
/external/opencv3/3rdparty/zlib/ |
inffast.c | 73 z_const unsigned char FAR *last; /* have enough input while in < last */ local 100 last = in + (strm->avail_in - 5); 307 } while (in < last && out < end); 318 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
|
/external/opencv3/apps/traincascade/ |
imagestorage.h | 27 int last; member in class:CvCascadeImageReader::PosReader 45 size_t last, round; member in class:CvCascadeImageReader::NegReader
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
Trie.java | 66 * @param end an index into punctuationStrings past the last string in this 87 int last = -1; local 90 if (ch != last) { 92 last = ch;
|
/external/parameter-framework/upstream/remote-processor/ |
Message.cpp | 65 auto last = first + size; local 68 std::copy(first, last, destFirst); 78 auto last = first + size; local 81 std::copy(first, last, destFirst);
|
/external/parameter-framework/upstream/utility/test/ |
utility.cpp | 62 const auto &last = end(test.input); variable 63 REQUIRE(join(first, last, test.binaryOpt, test.empty) == test.result); 64 REQUIRE(join<int>(first, last, test.binaryOpt) == test.resultNoEmpty);
|
/external/pdfium/third_party/freetype/src/base/ |
ftbbox.c | 39 FT_Vector last; member in struct:TBBox_Rec_ 72 /* in `user->last'. We also update bbox in case contour starts with */ 90 user->last = *to; 104 /* in `user->last'; no further computations are necessary because */ 120 user->last = *to; 206 BBox_Conic_Check( user->last.x, 213 BBox_Conic_Check( user->last.y, 219 user->last = *to; 404 BBox_Cubic_Check( user->last.x, 413 BBox_Cubic_Check( user->last.y [all...] |
/external/pdfium/third_party/zlib_v128/ |
inffast.c | 73 z_const unsigned char FAR *last; /* have enough input while in < last */ local 100 last = in + (strm->avail_in - 5); 307 } while (in < last && out < end); 318 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
|
/external/protobuf/gtest/include/gtest/internal/ |
gtest-linked_ptr.h | 33 // particular object is kept on a circular linked list. When the last pointer 36 // Used properly, this deletes the object when the last reference goes away. 119 // last member of the circle. Once this is done, you can join() another. 178 bool last = link_.depart(); local 179 assert(last);
|