HomeSort by relevance Sort by last modified time
    Searched full:last (Results 201 - 225 of 22121) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
BasicPeriodFormatter.java 109 // get the first and last units that are set.
111 int last = counts.length - 1; local
113 while (last > first && (mask & (1 << last)) == 0) --last;
117 for (int i = first; i <= last; ++i) {
147 boolean multiple = first != last;
153 for (int i = first, j = i; i <= last; i = j) {
161 while (++j < last && (mask & (1 << j)) == 0) {
169 if (i == last) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
BasicPeriodFormatter.java 108 // get the first and last units that are set.
110 int last = counts.length - 1; local
112 while (last > first && (mask & (1 << last)) == 0) --last;
116 for (int i = first; i <= last; ++i) {
146 boolean multiple = first != last;
152 for (int i = first, j = i; i <= last; i = j) {
160 while (++j < last && (mask & (1 << j)) == 0) {
168 if (i == last) {
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put.cpp 27 // We assume, without checking, that *last is null and that there is enough
28 // space in the buffer to extend the number past [first, last).
31 __insert_grouping_aux(Char* first, Char* last, const string& grouping,
36 if (first == last)
47 Char* cur_group = last; // Points immediately beyond the rightmost
63 ++last;
64 copy_backward(cur_group, last, last + 1);
68 return (last - first) + sign + basechars;
135 __insert_grouping(char * first, char * last, const string& grouping
    [all...]
  /art/compiler/utils/
intrusive_forward_list.h 138 IntrusiveForwardList(InputIterator first, InputIterator last) : IntrusiveForwardList() {
139 insert_after(before_begin(), first, last); local
173 void assign(InputIterator first, InputIterator last) {
174 IntrusiveForwardList tmp(first, last);
191 iterator insert_after(const_iterator position, InputIterator first, InputIterator last) {
192 while (first != last) {
198 const_iterator last = position; local
199 std::advance(last, 2);
200 return erase_after(position, last);
202 iterator erase_after(const_iterator position, const_iterator last) {
231 const_iterator last = i; local
    [all...]
  /art/test/048-reflect-v8/src/
User.java 22 * @Calendar(dayOfMonth="last")
26 @Calendar(dayOfMonth="last"),
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 154 range.exclude_end? ? last >= range.last : last > range.last
156 range.exclude_end? ? last.succ >= range.last : last >= range.last
  /external/autotest/client/site_tests/cellular_MbimComplianceDataTransfer/
control.DTS18 8 MBIM Compliance Test: Validation of the Last wDatagramIndex.
22 Validation of the Last wDatagramIndex.
control.DTS19 8 MBIM Compliance Test: Validation of the Last wDatagramLength.
22 Validation of the Last wDatagramLength.
control.DTS24 8 MBIM Compliance Test: Validation of the Last dwDatagramIndex.
22 Validation of the Last dwDatagramIndex.
control.DTS25 8 MBIM Compliance Test: Validation of the Last dwDatagramLength.
22 Validation of the Last dwDatagramLength.
  /external/autotest/client/site_tests/platform_DMVerityBitCorruption/
control 26 job.run_test('platform_DMVerityBitCorruption', tag='last', bit_loc='last')
  /external/clang/test/CodeCompletion/
function-templates.cpp 3 void sort(RandomAccessIterator first, RandomAccessIterator last);
19 // CHECK-CC1: sort(<#RandomAccessIterator first#>, <#RandomAccessIterator last#>
  /external/curl/src/
tool_mfiles.c 26 #include "memdebug.h" /* keep this as LAST include */
29 struct multi_files **last,
32 DEBUGASSERT(((*first) && (*last)) || ((!*first) && (!*last)));
34 if(*last)
35 (*last)->next = new;
38 *last = new;
47 * multi_last argument is the address of a pointer to the last element
  /external/easymock/src/org/easymock/
CaptureType.java 35 * Will capture the argument of the last matching call
37 LAST,
  /external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/
max_element_comp.pass.cpp 15 // max_element(Iter first, Iter last, Compare comp);
25 test(Iter first, Iter last)
27 Iter i = std::max_element(first, last, std::greater<int>());
28 if (first != last)
30 for (Iter j = first; j != last; ++j)
34 assert(i == last);
62 void test_eq0(Iter first, Iter last, Pred p)
64 assert(first == std::max_element(first, last, p));
min_element_comp.pass.cpp 15 // min_element(Iter first, Iter last, Compare comp);
25 test(Iter first, Iter last)
27 Iter i = std::min_element(first, last, std::greater<int>());
28 if (first != last)
30 for (Iter j = first; j != last; ++j)
34 assert(i == last);
62 void test_eq0(Iter first, Iter last, Pred p)
64 assert(first == std::min_element(first, last, p));
  /external/llvm/lib/Fuzzer/test/
fuzzer-timeout.test 2 TimeoutTest: ALARM: working on the last Unit for
11 SingleInputTimeoutTest: ALARM: working on the last Unit for
  /external/opencv3/apps/traincascade/
imagestorage.h 27 int last; member in class:CvCascadeImageReader::PosReader
45 size_t last, round; member in class:CvCascadeImageReader::NegReader
  /external/srtp/crypto/include/
prng.h 26 uint32_t octet_count; /* number of octets output since last init */
42 uint32_t octet_count; /* number of octets output since last init */
  /external/webrtc/webrtc/modules/desktop_capture/x11/
x_error_trap.h 21 // GetLastErrorAndDisable() to get the last error that was caught, if any.
27 // Returns last error and removes unregisters the error handler.
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FsDirectoryEntry.java 60 * Gets the last modification time of this entry.
62 * @return the last modification time of the entry as milliseconds
64 * getting the last modification time
78 * Returns the time when this entry was last accessed as ms since 1970.
80 * @return the last access time, or 0 if this feature is not supported
81 * @throws IOException on error retrieving the last access time
108 * Sets the last modification time of this entry.
110 * @param lastModified the new last modification time of this entry
  /build/kati/testcase/
implicit_pattern_rule.mk 15 # The last one should be used.
  /external/android-clat/
BUGS 5 - assumes the nat64 gateway has the ipv4 address in the last 32 bits of the ipv6 address (that it uses a /96 plat subnet)
  /external/autotest/client/bin/self-test/tests/
085-test-exception-out 2 Traceback (most recent call last):
  /external/autotest/frontend/afe/templates/feeds/
job_feed_description.html 9 {{ label.name }}{% if not forloop.last %}, {% endif %}

Completed in 1579 milliseconds

1 2 3 4 5 6 7 891011>>