HomeSort by relevance Sort by last modified time
    Searched defs:last (Results 1 - 25 of 657) 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);
  /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())
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/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/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/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):
  /external/libcap-ng/libcap-ng-0.7/src/test/
lib_test.c 32 int rc, i, len, last = CAP_LAST_CAP; local
52 if (len < 80 && last > 30) // The kernel & headers are mismatched
53 last = 30;
60 printf("Doing advanced bit tests for %d capabilities...\n", last);
61 for (i=0; i<=last; i++) {
  /external/mesa3d/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/oprofile/libregex/tests/
regex_test.cpp 36 string test, expect, last; local
38 while (getline(fin, last)) {
39 last = trim(last);
40 if (last.length() == 0 || last[0] == '#')
44 test = last;
47 expect = last;
  /art/runtime/base/
stringpiece.cc 66 const char* last = ptr_ + std::min(ulen - s.length_, pos) + s.length_; local
67 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_);
68 return result != last ? result - ptr_ : npos;
  /art/runtime/
monitor_pool.cc 71 Monitor* last = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(chunk) + local
73 last->next_free_ = nullptr;
75 last->monitor_id_ = OffsetToMonitorId((num_chunks_ - 1) * kChunkSize +
78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) -
80 before->next_free_ = last;
81 // Derive monitor_id from last.
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) -
85 last = before;
87 DCHECK(last == reinterpret_cast<Monitor*>(chunk));
88 first_free_ = last;
    [all...]
  /bionic/libc/bionic/
pthread_atfork.cpp 43 atfork_t* last; member in struct:atfork_list_t
61 for (atfork_t* it = g_atfork_list.last; it != NULL; it = it->prev) {
102 entry->prev = g_atfork_list.last;
109 g_atfork_list.last = entry;
  /external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java 173 char last, current; local
174 last = '*';
179 if (current == last) {
185 last = current;

Completed in 460 milliseconds

1 2 3 4 5 6 7 8 91011>>