HomeSort by relevance Sort by last modified time
    Searched defs:last (Results 226 - 250 of 2364) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/services/NetworkRecommendation/src/com/android/networkrecommendation/config/
Csv.java 51 char last = value.charAt(len - 1); local
52 if (first != ' ' && first != '\t' && last != ' ' && last != '\t' &&
  /prebuilts/gdb/darwin-x86/lib/python2.7/
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()
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_generators.py 21 Traceback (most recent call last):
37 Traceback (most recent call last):
42 Traceback (most recent call last):
57 Traceback (most recent call last):
61 Traceback (most recent call last):
148 Traceback (most recent call last):
189 Traceback (most recent call last):
195 Traceback (most recent call last):
402 Traceback (most recent call last):
735 Traceback (most recent call last)
1266 def last(): function in function:Knights.__init__
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
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()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_generators.py 21 Traceback (most recent call last):
37 Traceback (most recent call last):
42 Traceback (most recent call last):
57 Traceback (most recent call last):
61 Traceback (most recent call last):
148 Traceback (most recent call last):
189 Traceback (most recent call last):
195 Traceback (most recent call last):
402 Traceback (most recent call last):
735 Traceback (most recent call last)
1266 def last(): function in function:Knights.__init__
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.modifiers/string_replace/
iter_iter_iter_iter.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, f, l);
44 typename S::const_iterator last = s.begin() + pos1 + n1; local
47 s.replace(first, last, f, l);
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
assembly_grammar.cpp 209 const auto* last = kOpSpecConstantOpcodes + kNumOpSpecConstantOpcodes; local
211 std::find_if(kOpSpecConstantOpcodes, last,
215 if (found == last) return SPV_ERROR_INVALID_LOOKUP;
221 const auto* last = kOpSpecConstantOpcodes + kNumOpSpecConstantOpcodes; local
223 std::find_if(kOpSpecConstantOpcodes, last,
227 if (found == last) return SPV_ERROR_INVALID_LOOKUP;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_generators.py 21 Traceback (most recent call last):
37 Traceback (most recent call last):
42 Traceback (most recent call last):
57 Traceback (most recent call last):
61 Traceback (most recent call last):
148 Traceback (most recent call last):
189 Traceback (most recent call last):
195 Traceback (most recent call last):
402 Traceback (most recent call last):
735 Traceback (most recent call last)
1266 def last(): function in function:Knights.__init__
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_generators.py 21 Traceback (most recent call last):
37 Traceback (most recent call last):
42 Traceback (most recent call last):
57 Traceback (most recent call last):
61 Traceback (most recent call last):
148 Traceback (most recent call last):
189 Traceback (most recent call last):
195 Traceback (most recent call last):
402 Traceback (most recent call last):
735 Traceback (most recent call last)
1266 def last(): function in function:Knights.__init__
    [all...]
  /system/tools/hidl/c2hal/
Type.cpp 251 Qualifier *last = (*mQualifiers)[mQualifiers->size() - 1]; local
253 if(last == NULL || last->qualification != Qualifier::ID) {
257 std::string ret{last->id};
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
DataCommandConsolidator.java 63 * Data consolidation barrier: consolidates all data contents into the last data command in the
64 * datas list, replacing all but the last node with no-ops.
68 // Put aside the last data command for later, then remove all the other
69 // data commands, coalescing their contents into the last command.
70 ADataCommand last = datas.remove(datas.size() - 1); local
78 sb.append(last.getData().getText());
79 last.replaceBy(new ADataCommand(new TData(sb.toString())));
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
ChangeTimeScaleTrack.java 166 TimeToSampleBox.Entry last = entries2.peekLast(); local
177 if (last == null) {
179 } else if (last.getDelta() != x) {
182 last.setCount(last.getCount() + 1);
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
Profiler.java 124 TimeInstrument last = getLastTimeInstrument(); local
125 if (last != null) {
126 last.stop();
  /libcore/jsr166-tests/src/test/java/jsr166/
ConcurrentSkipListMapTest.java 131 * lastKey returns last key
185 Integer last = (Integer)i.next(); local
186 assertEquals(last, one);
190 assertTrue(last.compareTo(k) < 0);
191 last = k;
204 Integer last = (Integer)i.next();
205 assertEquals(last, five);
209 assertTrue(last.compareTo(k) > 0);
210 last = k;
223 Integer last = (Integer)i.next() local
242 Integer last = (Integer)i.next(); local
    [all...]
TreeMapTest.java 130 * lastKey returns last key
184 Integer last = (Integer)i.next(); local
185 assertEquals(last, one);
189 assertTrue(last.compareTo(k) < 0);
190 last = k;
203 Integer last = (Integer)i.next();
204 assertEquals(last, five);
208 assertTrue(last.compareTo(k) > 0);
209 last = k;
222 Integer last = (Integer)i.next() local
241 Integer last = (Integer)i.next(); local
    [all...]
  /art/compiler/optimizing/
constant_folding_test.cc 765 HInstruction* last; local
766 block->AddInstruction(last = new (&allocator_) HAbove(zero, parameter));
767 block->AddInstruction(new (&allocator_) HSelect(last, parameter, parameter, 0));
768 block->AddInstruction(last = new (&allocator_) HAbove(parameter, zero));
769 block->AddInstruction(new (&allocator_) HSelect(last, parameter, parameter, 0));
770 block->AddInstruction(last = new (&allocator_) HAboveOrEqual(zero, parameter));
771 block->AddInstruction(new (&allocator_) HSelect(last, parameter, parameter, 0));
772 block->AddInstruction(last = new (&allocator_) HAboveOrEqual(parameter, zero));
773 block->AddInstruction(new (&allocator_) HSelect(last, parameter, parameter, 0));
774 block->AddInstruction(last = new (&allocator_) HBelow(zero, parameter))
    [all...]
  /art/runtime/
mem_map_test.cc 130 uintptr_t last = 0; local
133 EXPECT_NE(last, random_start);
134 last = random_start;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchHandlerList.java 110 Entry last = get(size - 1); local
111 return last.getExceptionType().equals(CstType.OBJECT);
  /dalvik/dx/src/com/android/dx/dex/code/
CatchHandlerList.java 110 Entry last = get(size - 1); local
111 return last.getExceptionType().equals(CstType.OBJECT);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ltablib.c 96 int i, last; local
100 last = luaL_opt(L, luaL_checkint, 4, luaL_len(L, 1));
102 for (; i < last; i++) {
106 if (i == last) /* add last value (if interval was not empty) */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
infback.c 266 code last; /* parent table entry */ local
280 state->last = 0;
289 /* Inflate until end of block marked as last */
294 if (state->last) {
300 state->last = BITS(1);
305 state->last ? " (last)" : ""));
311 state->last ? " (last)" : ""));
316 state->last ? " (last)" : ""));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
rangeobject.c 20 Else for step > 0, if n values are in the range, the last one is
47 long last; local
52 /* The tricky bit is avoiding overflow. We first compute the last entry in
57 last = (long)(r->start + (unsigned long)(r->len - 1) * r->step);
59 return last > LONG_MAX - r->step ? LONG_MAX : last + r->step;
61 return last < LONG_MIN - r->step ? LONG_MIN : last + r->step;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
infback.c 257 code last; /* parent table entry */ local
271 state->last = 0;
280 /* Inflate until end of block marked as last */
285 if (state->last) {
291 state->last = BITS(1);
296 state->last ? " (last)" : ""));
302 state->last ? " (last)" : ""));
307 state->last ? " (last)" : ""));
    [all...]

Completed in 1070 milliseconds

1 2 3 4 5 6 7 8 91011>>