HomeSort by relevance Sort by last modified time
    Searched defs:last (Results 76 - 100 of 1933) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
GroupedLinkedMap.java 50 LinkedEntry<K, V> last = head.prev; local
52 while (!last.equals(head)) {
53 V removed = last.removeLast();
61 removeEntry(last);
62 keyToEntry.remove(last.key);
63 last.key.offer();
66 last = last.prev;
  /external/v8/test/mjsunit/
cyrillic.js 35 LAST: "\u042f", // YA
36 last: "\u044f", // ya
50 LAST: "\u03a9", // OMEGA
51 last: "\u03c9", // omega
71 var last = lc ? chars.last : chars.LAST;
74 var last_other_case = lc ? chars.LAST : chars.last;
76 assertTrue(Range(first, last).test(first), 1)
    [all...]
string-slices.js 126 var last = x; variable
129 var z = last.substring(i);
130 last = z;
  /bionic/libc/upstream-netbsd/lib/libc/gen/
popen.c 193 struct pid *cur, *last; local
202 for (last = NULL, cur = pidlist; cur; last = cur, cur = cur->next)
213 if (last == NULL)
216 last->next = cur->next;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLFace.java 51 int last = mVertexList.size() - 1; local
52 if (last < 2) {
55 GLVertex vertex = mVertexList.get(last);
61 mVertexList.remove(last + 1);
62 vertex = mVertexList.get(last);
77 int last = mVertexList.size() - 1; local
80 GLVertex vn = mVertexList.get(last);
83 for (int i = 1; i < last; i++) {
  /external/avahi/avahi-core/
prioq.h 29 AvahiPrioQueueNode *root, *last; member in struct:AvahiPrioQueue
  /external/c-ares/
ares_options.c 144 struct ares_addr_node *last = NULL; local
222 if (last) {
223 last->next = s;
227 last = s;
  /external/e2fsprogs/lib/ext2fs/
kernel-list.h 92 struct list_head *last = list->prev; local
98 last->next = at;
99 at->prev = last;
  /external/freetype/src/cache/
ftcmru.c 37 FTC_MruNode last = first->prev; local
59 last->next = node;
61 node->prev = last;
83 FTC_MruNode prev, next, last; local
108 last = first->prev;
110 last->next = node;
114 node->prev = last;
  /external/google-breakpad/src/processor/
static_map.h 100 inline iterator last() const { return IteratorAtIndex(num_nodes_ - 1); } function in class:google_breakpad::StaticMap
  /external/libcxx/test/libcxx/utilities/memory/util.smartptr/
race_condition.pass.cpp 63 int last = p.use_count(); local
65 assert(last >= 4);
67 if (last != new_val) ++shared_changes_count;
69 last = w.use_count();
71 assert(last >= 4);
73 if (last != new_val) ++weak_changes_count;
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
iter_iter_iter_iter.pass.cpp 28 typename S::const_iterator last = s.begin() + pos1 + n1; local
29 typename S::size_type xlen = last - first;
30 s.replace(first, last, f, l);
    [all...]
iter_iter_pointer_size.pass.cpp 30 typename S::const_iterator last = s.begin() + pos1 + n1; local
31 typename S::size_type xlen = last - first;
32 s.replace(first, last, str, n2);
    [all...]
  /external/libedit/src/
hist.h 50 Char *last; /* The last character */ member in struct:el_history_t
  /external/mesa3d/src/gallium/auxiliary/util/
u_linkage.c 121 int last = -1; local
130 last = i;
133 if(last < efficient_slots)
138 else if((last - first) < efficient_slots)
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
TwoSecondIntersectionFinder.java 74 long last = samples + 1; local
78 fragments[i] = last ;
80 last = fragments[i];
  /external/opencv3/modules/ml/src/
kdtree.cpp 84 SubTree() : first(0), last(0), nodeIdx(0), depth(0) {}
86 : first(_first), last(_last), nodeIdx(_nodeIdx), depth(_depth) {}
88 int last; member in struct:cv::ml::SubTree
210 int first = stack[top].first, last = stack[top].last;
212 int count = last - first + 1, dim = -1;
251 nodes[nidx].boundary = medianPartition(ptofs, first, last, data + dim);
253 int middle = (first + last)/2;
255 computeSums(points, ptofs, middle+1, last, rsums);
259 stack[top++] = SubTree(middle+1, last, right, depth+1)
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
ElementPolicy.java 70 ElementPolicy last = null; field in class:ElementPolicy.Util.PolicyJoiner
81 } else if (p != last) {
82 last = p;
  /external/parameter-framework/upstream/parameter/
ParameterBlackboard.cpp 52 auto last = first + size; local
55 std::copy(first, last, dest_first);
63 auto last = first + size; local
66 std::copy(first, last, dest_first);
  /external/regex-re2/util/
stringpiece.cc 22 // Test last byte in case strings share large common prefix
65 const char* last = ptr_ + min(ulen - s.length_, pos) + s.length_; local
66 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_);
67 return result != last ? result - ptr_ : npos;
  /external/valgrind/memcheck/tests/vbit-test/
main.c 123 IROp last = Iop_LAST; local
127 first = Iop_CasCmpEQ8; last = first + 1;
134 for (opkind = first; opkind < last; ++opkind) {
  /external/webrtc/webrtc/base/
stringutils.cc 124 std::string::size_type last = s.find_last_not_of(kWhitespace); local
126 if (first == std::string::npos || last == std::string::npos) {
130 return s.substr(first, last - first + 1);
  /frameworks/av/media/libeffects/loudness/common/core/
byte_swapper.h 44 char *first = &new_val, *last = first + kValSize - 1, x; local
45 for (; first < last; ++first, --last) {
46 x = *last;
47 *last = *first;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListGetSelectedViewTest.java 58 View last = mListView.getChildAt(1); local
59 TouchUtils.clickView(this, last);
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_virtual.cpp 79 uint32_t last = (uint32_t)list->numHwLayers - 1; local
80 hwc_layer_1_t *fbLayer = &list->hwLayers[last];
142 uint32_t last = (uint32_t)list->numHwLayers - 1; local
143 hwc_layer_1_t *fbLayer = &list->hwLayers[last];

Completed in 1578 milliseconds

1 2 34 5 6 7 8 91011>>