HomeSort by relevance Sort by last modified time
    Searched defs:last (Results 1 - 25 of 1284) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-freebsd/lib/libc/string/
wcsrchr.c 35 const wchar_t *last; local
37 last = NULL;
40 last = s;
46 return ((wchar_t *)last);
  /development/tools/idegen/src/
Stopwatch.java 22 long last = System.currentTimeMillis(); field in class:Stopwatch
26 Log.info(label + ": " + (now - last) + "ms");
27 last = now;
  /external/chromium_org/chrome/browser/spellchecker/
word_trimmer.cc 21 // A circular buffer of the last |keep + 1| words seen before position |start|
25 size_t last = std::string::npos; local
33 last = iter.pos();
41 last = iter.pos();
49 return text.substr(first, last - first);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_intra.c 80 OMX_U8 last = 0; local
120 &last,
136 if (last == 0)
omxVCM4P2_DecodeVLCZigzag_Inter.c 79 OMX_U8 last,start = 0; local
96 &last,
112 if (last == 0)
  /system/core/libpixelflinger/arch-arm64/
t32cb16blend.S 166 last: label
210 b last
  /system/core/libpixelflinger/
t32cb16blend.S 152 last: label
202 b last
  /external/chromium_org/native_client_sdk/src/libraries/sdk_util/
string_util.h 23 size_t last = 0; local
27 std::string tmp(str, last, i - last);
32 last = i + 1;
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/util/
string_split.cc 21 size_t last = 0; local
25 std::string tmp(str, last, i - last);
31 last = i + 1;
  /bionic/libc/upstream-openbsd/lib/libc/string/
strtok.c 35 static char *last; local
37 return strtok_r(s, delim, &last);
41 strtok_r(char *s, const char *delim, char **last)
48 if (s == NULL && (s = *last) == NULL)
62 *last = NULL;
80 *last = s;
  /development/tools/yuv420sp2rgb/
debug.c 9 int i, last; local
13 for (i = last = 0; i < len; i++) {
22 while (last < i) {
23 if (isprint(pchr[last]))
24 fputc(pchr[last], s);
29 last++;
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_function_can_inline.cpp 30 * other than as the last instruction. We could potentially work
68 /* If the function is empty (no last instruction) or does not end with a
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); local
72 if (last == NULL || !last->as_return())
ir_basic_block.cpp 54 ir_instruction *last,
59 ir_instruction *last = NULL; local
101 last = ir;
104 callback(leader, last, data);
  /external/chromium_org/v8/test/mjsunit/
substr.js 141 var last = x; variable
144 var z = last.substring(i);
145 last = z;
  /external/libcxx/test/strings/basic.string/string.modifiers/string_erase/
iter_iter.pass.cpp 12 // iterator erase(const_iterator first, const_iterator last);
24 typename S::const_iterator last = s.cbegin() + pos + n; local
25 typename S::iterator i = s.erase(first, last);
  /external/libexif/test/
test-sorted.c 33 ExifTag last = 0, current; local
34 num = exif_tag_table_count() - 1; /* last entry is a NULL terminator */
37 if (current < last) {
46 last = current;
  /external/mesa3d/src/glsl/
ir_function_can_inline.cpp 30 * other than as the last instruction. We could potentially work
68 /* If the function is empty (no last instruction) or does not end with a
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); local
72 if (last == NULL || !last->as_return())
  /frameworks/base/core/java/android/content/
ContentUris.java 73 * Converts the last path segment to a long.
76 * stored in the last segment.
79 * @throws NumberFormatException if the last segment isn't a number
81 * @return the long conversion of the last segment or -1 if the path is
85 String last = contentUri.getLastPathSegment(); local
86 return last == null ? -1 : Long.parseLong(last);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_erase/
iter_iter.pass.cpp 12 // iterator erase(const_iterator first, const_iterator last);
24 typename S::const_iterator last = s.cbegin() + pos + n; local
25 typename S::iterator i = s.erase(first, last);
  /external/chromium_org/net/websockets/
websocket_net_log_params.cc 18 size_t last = 0; local
25 std::string entry = headers->substr(last, pos - last);
27 last = pos;
  /external/chromium_org/ppapi/tests/
test_trace_event.cc 56 int64_t last = interface_->Now(); local
60 ASSERT_LE(last, next);
61 last = next;
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextBoundaries.cpp 53 int last = i; local
57 return last;
98 *end = it->last();
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
queue.cpp 52 auto last = std::find_if(queued_events.begin(), queued_events.end(), local
57 std::for_each(first, last, [&](event_ptr &ev) { ev->fence(fence); });
59 queued_events.erase(first, last);
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_utility_unittest.cc 256 bool last; local
258 ASSERT_EQ(0, packetizer.NextPacket(packet, &send_bytes, &last));
259 ASSERT_TRUE(last);
  /external/libcap-ng/libcap-ng-0.7/bindings/python/test/
capng-test.py 11 last = capng.CAP_LAST_CAP variable
26 if len < 80 and last > 30:
27 last = 30 variable
29 print("Doing advanced bit tests for %d capabilities...\n" % (last))
30 for i in range(last+1):

Completed in 7807 milliseconds

1 2 3 4 5 6 7 8 91011>>