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

1 2 3 4 56 7 8 91011>>

  /external/turbine/java/com/google/turbine/binder/lookup/
ImportIndex.java 83 String last = getLast(i.type()); local
84 if (thunks.containsKey(last)) {
88 last,
  /external/turbine/java/com/google/turbine/diag/
LineMap.java 36 int last = 0; local
50 builder.put(Range.closedOpen(last, idx + 1), line++);
51 last = idx + 1;
58 if (last < source.length()) {
59 builder.put(Range.closedOpen(last, source.length()), line++);
  /external/v8/src/compiler/
frame-elider.cc 56 const Instruction* last = local
58 if (last->IsThrow() || last->IsTailCall() ||
59 last->IsDeoptimizeCall()) {
65 DCHECK(last->IsRet() || last->IsJump());
  /external/valgrind/memcheck/tests/vbit-test/
main.c 158 IROp last = Iop_LAST; local
162 first = Iop_CasCmpEQ8; last = first + 1;
169 for (opkind = first; opkind < last; ++opkind) {
  /external/vogar/src/vogar/target/
TargetMonitorRunListener.java 87 int last = stackTraceElements.length - 1; local
88 for (; last >= 0; last--) {
89 String className = stackTraceElements[last].getClassName();
96 if (last < stackTraceElements.length) {
97 last++;
104 for (; first < last; first++) {
115 if (first < last) {
116 t.setStackTrace(Arrays.copyOfRange(stackTraceElements, first, last));
  /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);
  /external/wpa_supplicant_8/src/drivers/
driver_common.c 168 int last; local
195 last = *end == '\0';
213 if (last)
  /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/cmds/incidentd/src/
report_directory.cpp 45 bool last = false; local
46 while (!last) {
51 last = true;
63 if (!last) {
  /frameworks/base/core/java/android/text/
CharSequenceCharacterIterator.java 47 public char last() { method in class:CharSequenceCharacterIterator
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListGetSelectedViewTest.java 58 View last = mListView.getChildAt(1); local
59 TouchUtils.clickView(this, last);
  /libcore/ojluni/src/main/java/sun/nio/fs/
Globs.java 108 char last = 0; local
134 if (c < last) {
142 last = c;
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
itoatest.cpp 78 T i = 1, last; local
86 last = i;
88 } while (last < i);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.modifiers/string_replace/
iter_iter_pointer_size.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, n2);
    [all...]
  /system/core/debuggerd/
debuggerd_benchmark.cpp 50 auto last = begin; local
55 auto diff = now - last;
60 last = now;
  /system/core/libunwindstack/
ElfInterfaceArm.cpp 36 size_t last = total_entries_; local
37 while (first < last) {
38 size_t current = (first + last) / 2;
51 last = current;
56 if (last != 0) {
57 *entry_offset = start_offset_ + (last - 1) * 8;
Symbols.cpp 41 size_t last = symbols_.size(); local
42 while (first < last) {
43 size_t current = first + (last - first) / 2;
46 last = current;
  /art/compiler/optimizing/
code_sinking.cc 37 HInstruction* last = exit_predecessor->GetLastInstruction(); local
39 if (!last->IsReturn() && !last->IsReturnVoid()) {
constant_folding_test.cc 761 HInstruction* last; local
762 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter));
763 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0));
764 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero));
765 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0));
766 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(zero, parameter));
767 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0));
768 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(parameter, zero));
769 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0));
770 block->AddInstruction(last = new (GetAllocator()) HBelow(zero, parameter))
    [all...]
  /bionic/libc/dns/resolv/
res_stats.c 66 time_t last = 0; local
108 /* If we had at least one sample, populate last sample time. */
111 last = stats->samples[stats->sample_next - 1].at;
113 last = stats->samples[stats->sample_count - 1].at;
116 *last_sample_time = last;
  /build/kati/
string_piece.cc 87 const char* last = ptr_ + std::min(length_ - s.length_, pos) + s.length_; local
88 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_);
89 return result != last ? static_cast<size_t>(result - ptr_) : npos;
  /development/vndk/tools/header-checker/header-abi-dumper/src/
fixed_argv.h 69 const char *last = GetLastArg(expected, others...); local
72 return last == expected;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/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));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shelve.py 175 This adds methods first(), next(), previous(), last() and
208 def last(self): member in class:BsdDbShelf
209 (key, value) = self.dict.last()

Completed in 904 milliseconds

1 2 3 4 56 7 8 91011>>