Searched refs:last (Results 151 - 175 of 1039) sorted by relevance

1234567891011>>

/external/bison/data/
H A Dlocation.cc283 position last = loc.end - 1;
285 if (last.filename
287 || *loc.begin.filename != *last.filename))
288 ostr << '-' << last;
289 else if (loc.begin.line != last.line)
290 ostr << '-' << last.line << '.' << last.column;
291 else if (loc.begin.column != last.column)
292 ostr << '-' << last.column;
/external/llvm/include/llvm/ADT/
H A Dilist.h119 ilist_iterator<NodeTy> /*last*/) {}
308 /// of the first node in the list always points to the last node in the list,
484 // [first, last) into position.
486 void transfer(iterator position, iplist &L2, iterator first, iterator last) { argument
487 assert(first != last && "Should be checked by callers");
493 if (position != last) {
501 // Remove [first, last) from its old position.
503 NodeTy *Next = last.getNodePtrUnchecked(), *Last = this->getPrev(Next);
510 // Splice [first, last) into its new position.
544 iterator erase(iterator first, iterator last) { argument
565 insert(iterator where, InIt first, InIt last) argument
575 iterator last = first; ++last; local
579 splice(iterator where, iplist &L2, iterator first, iterator last) argument
600 ilist(InIt first, InIt last) argument
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libbacktrace.cc90 SymbolizedStack *last; member in struct:__sanitizer::__anon2902::SymbolizeCodeCallbackArg
94 CHECK(last);
99 last->next = cur;
100 last = cur;
103 CHECK_EQ(addr, last->info.address);
104 return &last->info;
161 data.last = stack;
/external/freetype/src/cache/
H A Dftcmru.c37 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/marisa-trie/lib/marisa/
H A Dtail.cc169 const KeyIdPair *last = &dummy_key; local
173 while ((match < cur.first.length()) && (match < last->first.length()) &&
174 last->first[match] == cur.first[match]) {
177 if ((match == cur.first.length()) && (last->first.length() != 0)) {
178 temp_offsets[cur.second] = (UInt32)(temp_offsets[last->second]
179 + (last->first.length() - match));
187 last = &cur;
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dtail.cc169 const KeyIdPair *last = &dummy_key; local
173 while ((match < cur.first.length()) && (match < last->first.length()) &&
174 last->first[match] == cur.first[match]) {
177 if ((match == cur.first.length()) && (last->first.length() != 0)) {
178 temp_offsets[cur.second] = (UInt32)(temp_offsets[last->second]
179 + (last->first.length() - match));
187 last = &cur;
/external/mesa3d/src/mesa/program/
H A Dprog_cache.c48 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/valgrind/auxprogs/
H A Dnightly-build-summary108 last if ($lines[$i] =~ /^valgrind revision:/);
116 last if ($line =~ /^$/); # empty line indicates end of section
136 last;
150 last;
158 last if ($line =~ /==$/);
166 last if ($line =~ /^$/);
286 last if ($page eq "No such file.\n");
/external/e2fsprogs/lib/blkid/
H A Dlist.h131 struct list_head *last = list->prev; local
137 last->next = at;
138 at->prev = last;
/external/llvm/lib/IR/
H A DSymbolTableListTraitsImpl.h89 ilist_iterator<ValueSubClass> last) {
99 for (; first != last; ++first) {
111 for (; first != last; ++first)
87 transferNodesFromList(ilist_traits<ValueSubClass> &L2, ilist_iterator<ValueSubClass> first, ilist_iterator<ValueSubClass> last) argument
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dirty_surfaces.h70 util_dirty_surfaces_use_levels_for_sampling(struct pipe_context *pipe, struct util_dirty_surfaces *dss, unsigned first, unsigned last, util_dirty_surface_flush_t flush) argument
73 if(first > last)
80 if(ds->base.u.tex.level >= first && ds->base.u.tex.level <= last)
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlSanitizer.java204 char last = encodedAttributeValue.charAt(n - 1);
205 if (last == '"' || last == '\'') {
207 if (n != 1 && last == encodedAttributeValue.charAt(0)) {
/external/regex-re2/util/
H A Dstringpiece.cc22 // 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;
H A Dbenchmark.cc96 int n, last; local
106 last = n;
112 n = max(last+1, min(n+n/2, 100*last));
/external/valgrind/memcheck/tests/vbit-test/
H A Dmain.c99 IROp last = Iop_LAST; local
103 first = Iop_CasCmpEQ8; last = first + 1;
110 for (opkind = first; opkind < last; ++opkind) {
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
H A Dlooper.py5 previously up, if this is the first or last item in the sequence, etc.
11 ... if not loop.last:
111 def last(self): member in class:loop_pos
113 last = property(last) variable in class:loop_pos
137 if self.last:
/external/dhcpcd/
H A Dcontrol.c55 struct fd_list *l, *last = NULL; local
61 if (last == NULL)
64 last->next = l->next;
68 last = l;
/external/eigen/Eigen/src/StlSupport/
H A DStdDeque.h44 deque(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : deque_base(first, last, a) {} \
69 deque(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
70 : deque_base(first, last, a) {} \
H A DStdList.h43 list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : list_base(first, last, a) {} \
69 list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
70 : list_base(first, last, a) {} \
H A DStdVector.h36 vector(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : vector_base(first, last, a) {} \
58 vector(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) \
59 : vector_base(first, last, a) {} \
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-myanmar-machine.hh273 if (0) fprintf (stderr, "syllable %d..%d %s\n", last, p+1, #syllable_type); \
274 for (unsigned int i = last; i < p+1; i++) \
276 last = p+1; \
302 unsigned int last = 0; local
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DDiffer.java52 if (offset < 0) return last;
70 if (offset < 0) return last;
86 if (maxSame > 0) last = a[maxSame-1];
98 // now see if the last few a's occur anywhere in the b's, or vice versa
164 private T last = null; field in class:Differ
H A DUCharacterIteratorWrapper.java43 * @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/lang/
H A DCharSequences.java42 // s.trim() => UnicodeSet.trim(CharSequence s); return a subsequence starting with the first character not in the set to the last character not in the set.
290 char last = (char) result[j-1];
291 if (last >= 0xD800 && last <= 0xDBFF) {
293 result[j-1] = Character.toCodePoint(last, cp);
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dinflate.h32 TYPE, /* i: waiting for type bits, including last-flag bit */
83 int last; /* true if processing last block */ member in struct:inflate_state
120 int back; /* bits back of last unprocessed length/lit */

Completed in 728 milliseconds

1234567891011>>