HomeSort by relevance Sort by last modified time
    Searched defs:last (Results 51 - 75 of 2704) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/e2fsprogs/lib/ext2fs/
hashmap.h 12 struct ext2fs_hashmap_entry *last; member in struct:ext2fs_hashmap
  /external/freetype/src/psaux/
psstack.c 247 CF2_StackNumber last = { { 0 }, CF2_NumberInt }; local
305 last = stack->buffer[idx];
315 stack->buffer[idx] = last;
316 last = tmp;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SortedMultisets.java 77 @Override public E last() { method in class:SortedMultisets.ElementSet
  /external/harfbuzz_ng/test/api/
test-set.c 241 hb_codepoint_t next, first, last; local
274 first = last = HB_SET_VALUE_INVALID;
275 g_assert (hb_set_next_range (s, &first, &last));
277 g_assert_cmpint (last, ==, 6);
278 g_assert (hb_set_next_range (s, &first, &last));
280 g_assert_cmpint (last, ==, 15);
281 g_assert (hb_set_next_range (s, &first, &last));
283 g_assert_cmpint (last, ==, 1100);
284 g_assert (hb_set_next_range (s, &first, &last));
286 g_assert_cmpint (last, ==, 1200)
    [all...]
  /external/icu/icu4c/source/i18n/
nfrlist.h 78 NFRule* last() const { return (fCount > 0 && fStuff != NULL) ? fStuff[fCount-1] : NULL; } function in class:NFRuleList
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmOrphanCommentsEnding.java 47 Node last = everything.get(everything.size() - 1 - commentsAtEnd); local
48 findingComments = (last instanceof Comment);
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
iter_iter_pointer.pass.cpp 29 typename S::const_iterator last = s.begin() + pos1 + n1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, str);
iter_iter_size_char.pass.cpp 29 typename S::const_iterator last = s.begin() + pos1 + n1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, n2, c);
iter_iter_string.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, str);
iter_iter_string_view.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, sv);
  /external/libcxx/test/std/strings/string.view/string.view.iterators/
rbegin.pass.cpp 29 const size_t last = s.size() - 1; local
30 assert( *b == s[last]);
31 assert( &*b == &s[last]);
32 assert( *cb1 == s[last]);
33 assert(&*cb1 == &s[last]);
34 assert( *cb2 == s[last]);
35 assert(&*cb2 == &s[last]);
  /external/libcxxabi/test/
test_fallback_malloc.pass.cpp 44 const size_t *last = first + len; local
47 for ( const size_t *iter = first; iter != last; ++iter ) {
  /external/libmojo/mojo/edk/system/
awakable_list.cc 24 // Instead of deleting elements in-place, swap them with the last element and
26 auto last = awakables_.end(); local
27 for (AwakeInfoList::iterator it = awakables_.begin(); it != last;) {
35 --last;
36 std::swap(*it, *last);
41 awakables_.erase(last, awakables_.end());
63 auto last = awakables_.end(); local
64 for (AwakeInfoList::iterator it = awakables_.begin(); it != last;) {
66 --last;
67 std::swap(*it, *last);
    [all...]
  /external/libvterm/src/
unicode.c 74 int last; member in struct:interval
136 if (ucs < table[0].first || ucs > table[max].last)
140 if (ucs > table[mid].last)
  /external/libxkbcommon/xkbcommon/src/
keysym-utf.c 843 size_t last = length; local
    [all...]
  /external/ltp/testcases/kernel/syscalls/mlock/
mlock03.c 53 long first = -1, last = -1; local
94 last = (to - from) / KB;
99 tst_resm(TINFO, "final stack size is %ld", last);
100 if (last < first)
  /external/ltp/testcases/kernel/syscalls/nftw/
tools.c 213 int i, last = 0; local
217 last = i;
218 return (last ? last + 1 : 0);
tools64.c 213 int i, last = 0; local
217 last = i;
218 return (last ? last + 1 : 0);
  /external/mesa3d/src/compiler/glsl/
opt_redundant_jumps.cpp 61 /* If the last instruction in both branches is a 'break' or a 'continue',
102 /* If the last instruction of a loop body is a 'continue', remove it.
104 ir_instruction *const last = local
107 if (last && (last->ir_type == ir_type_loop_jump)
108 && (((ir_loop_jump *) last)->mode == ir_loop_jump::jump_continue)) {
109 last->remove();
  /external/protobuf/ruby/lib/google/protobuf/
repeated_field.rb 86 def last(n=nil) method in class:Google.Protobuf.RepeatedField
  /external/python/cpython2/Modules/_sqlite/
cache.h 54 pysqlite_Node* last; member in struct:__anon32731
  /external/python/cpython2/Modules/cjkcodecs/
mappings_cn.h 4052 Py_UNICODE first, last; member in struct:_gb18030_to_unibmp_ranges
    [all...]
  /external/python/cpython3/Modules/_sqlite/
cache.h 54 pysqlite_Node* last; member in struct:__anon33353
  /external/python/cpython3/Modules/cjkcodecs/
mappings_cn.h 4052 Py_UCS4 first, last; member in struct:_gb18030_to_unibmp_ranges
    [all...]
  /external/selinux/checkpolicy/
queue.c 147 queue_node_ptr_t p, last, temp; local
153 last = NULL;
158 if (last) {
159 last->next = p->next;
160 if (last->next == NULL)
161 q->tail = last;
173 last = p;

Completed in 500 milliseconds

1 23 4 5 6 7 8 91011>>