/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.min.max/ |
max_element.pass.cpp | 15 // max_element(Iter first, Iter last); 27 test(Iter first, Iter last) 29 Iter i = std::max_element(first, last); 30 if (first != last) 32 for (Iter j = first; j != last; ++j) 36 assert(i == last);
|
min_element.pass.cpp | 15 // min_element(Iter first, Iter last); 27 test(Iter first, Iter last) 29 Iter i = std::min_element(first, last); 30 if (first != last) 32 for (Iter j = first; j != last; ++j) 36 assert(i == last);
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/iterator.primitives/iterator.operations/ |
distance.pass.cpp | 14 // distance(Iter first, Iter last); 18 // distance(Iter first, Iter last); 27 test(It first, It last, typename std::iterator_traits<It>::difference_type x) 29 assert(std::distance(first, last) == x); 35 constexpr_test(It first, It last, typename std::iterator_traits<It>::difference_type x) 37 return std::distance(first, last) == x;
|
/external/python/cpython3/Lib/test/ |
test_smtpd.py | 206 self.assertEqual(channel.socket.last, self.error_response) 215 self.assertEqual(channel.socket.last, b'250 OK\r\n') 248 self.assertEqual(channel.socket.last, self.error_response) 250 self.assertEqual(channel.socket.last, b'250 OK\r\n') 262 self.assertEqual(channel.socket.last, self.error_response) 267 channel.socket.last, 271 self.assertEqual(channel.socket.last, b'250 OK\r\n') 281 self.assertEqual(channel.socket.last, b'250 OK\r\n') 320 self.assertEqual(self.channel.socket.last, 325 self.assertEqual(self.channel.socket.last, b'250 HELP\r\n' [all...] |
/external/zlib/src/examples/ |
gzjoin.c | 272 /* Copy the compressed data from name, zeroing the last block bit of the last 274 boundary. If clr is false, then the last block becomes the last block of 283 int pos; /* where the "last block" bit is in byte */ 284 int last; /* true if processing the last block */ local 309 /* inflate and copy compressed data, clear last-block bit if requested */ 313 last = start[0] & 1; 314 if (last && clr [all...] |
/toolchain/binutils/binutils-2.27/zlib/examples/ |
gzjoin.c | 272 /* Copy the compressed data from name, zeroing the last block bit of the last 274 boundary. If clr is false, then the last block becomes the last block of 283 int pos; /* where the "last block" bit is in byte */ 284 int last; /* true if processing the last block */ local 309 /* inflate and copy compressed data, clear last-block bit if requested */ 313 last = start[0] & 1; 314 if (last && clr [all...] |
/external/ltp/testcases/kdump/ |
runkdump.sh | 60 if [ "${last}" = "KLEXT" ]; then 68 elif [ "${last}" = "KLLBL" ]; then 76 elif [ "${last}" = "KLUID" ]; then 84 elif [ "${last}" = "KLRAW" ]; then 85 mkdir -p "${COREDIR}/${last}" 89 dd if="${RAW_PART}" of="${COREDIR}/${last}/vmcore" bs=1024 92 elif [ "${last}" = "KNSCP" ]; then 101 mkdir -p "${COREDIR}/${last}" 106 scp -i ~/.ssh/kdump_id_rsa "${SCP_PATH}:${file}" "${COREDIR}/${last}" 110 elif [ "${last}" = "KNNFS" ]; the [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/ |
BasicPeriodFormatter.java | 113 // get the first and last units that are set. 115 int last = counts.length - 1; local 117 while (last > first && (mask & (1 << last)) == 0) --last; 121 for (int i = first; i <= last; ++i) { 151 boolean multiple = first != last; 157 for (int i = first, j = i; i <= last; i = j) { 165 while (++j < last && (mask & (1 << j)) == 0) { 173 if (i == last) { [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
BasicPeriodFormatter.java | 112 // get the first and last units that are set. 114 int last = counts.length - 1; local 116 while (last > first && (mask & (1 << last)) == 0) --last; 120 for (int i = first; i <= last; ++i) { 150 boolean multiple = first != last; 156 for (int i = first, j = i; i <= last; i = j) { 164 while (++j < last && (mask & (1 << j)) == 0) { 172 if (i == last) { [all...] |
/art/compiler/utils/ |
intrusive_forward_list.h | 149 IntrusiveForwardList(InputIterator first, InputIterator last) : IntrusiveForwardList() { 150 insert_after(before_begin(), first, last); local 184 void assign(InputIterator first, InputIterator last) { 185 IntrusiveForwardList tmp(first, last); 202 iterator insert_after(const_iterator position, InputIterator first, InputIterator last) { 203 while (first != last) { 209 const_iterator last = position; local 210 std::advance(last, 2); 211 return erase_after(position, last); 213 iterator erase_after(const_iterator position, const_iterator last) { 242 const_iterator last = i; local [all...] |
/art/test/048-reflect-v8/src/ |
User.java | 22 * @Calendar(dayOfMonth="last") 26 @Calendar(dayOfMonth="last"),
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Include/Guid/ |
LastEnumLang.h | 2 GUID used as EFI variable to store platform language at last time enumeration.
19 /// This GUID is used for Set/Get platform language into/from variable at last time enumeration
|
/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. 21 Validation of the Last wDatagramIndex.
|
control.DTS19 | 8 MBIM Compliance Test: Validation of the Last wDatagramLength. 21 Validation of the Last wDatagramLength.
|
control.DTS24 | 8 MBIM Compliance Test: Validation of the Last dwDatagramIndex. 21 Validation of the Last dwDatagramIndex.
|
control.DTS25 | 8 MBIM Compliance Test: Validation of the Last dwDatagramLength. 21 Validation of the Last dwDatagramLength.
|
/external/autotest/client/site_tests/platform_DMVerityBitCorruption/ |
control | 25 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/easymock/src/org/easymock/ |
CaptureType.java | 35 * Will capture the argument of the last matching call
37 LAST,
|
/external/icu/icu4c/source/test/perf/DateFmtPerf/ |
breakdata.h | 17 "Please note neither this listing nor its contents are final til midnight of the last day of the month of any such announcement." 19 "Midnight, Central Time, of the last day of the stated month. A"
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/ |
max_element_comp.pass.cpp | 15 // max_element(Iter first, Iter last, Compare comp); 29 test(Iter first, Iter last) 31 Iter i = std::max_element(first, last, std::greater<int>()); 32 if (first != last) 34 for (Iter j = first; j != last; ++j) 38 assert(i == last); 66 void test_eq0(Iter first, Iter last, Pred p) 68 assert(first == std::max_element(first, last, p));
|
min_element_comp.pass.cpp | 15 // min_element(Iter first, Iter last, Compare comp); 29 test(Iter first, Iter last) 31 Iter i = std::min_element(first, last, std::greater<int>()); 32 if (first != last) 34 for (Iter j = first; j != last; ++j) 38 assert(i == last); 66 void test_eq0(Iter first, Iter last, Pred p) 68 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 {{[1-3]}} seconds
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
api_def_LinSpace.pbtxt | 12 Last entry in the range. 31 so that the last one is exactly `stop`.
|