/external/libcxx/test/std/experimental/string.view/string.view.iterators/ |
rbegin.pass.cpp | 27 const size_t last = s.size() - 1; local 28 assert( *b == s[last]); 29 assert( &*b == &s[last]); 30 assert( *cb1 == s[last]); 31 assert(&*cb1 == &s[last]); 32 assert( *cb2 == s[last]); 33 assert(&*cb2 == &s[last]);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
minmax_element.pass.cpp | 15 // minmax_element(Iter first, Iter last); 24 test(Iter first, Iter last) 26 std::pair<Iter, Iter> p = std::minmax_element(first, last); 27 if (first != last) 29 for (Iter j = first; j != last; ++j) 37 assert(p.first == last); 38 assert(p.second == last);
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
MockVideoCallCallback.java | 123 * Returns the last received {@link CameraCapabilities}. 132 * Returns the last received data usage. 141 * Returns the last received video quality. 151 * Returns the last received call session event. 161 * Returns the last received peer width. 171 * Returns the last {@code requestedProfile} received via onSessionModifyResponseReceived. 180 * Returns the last {@code responseProfile} received via onSessionModifyResponseReceived. 189 * Returns the last {@code status} received via onSessionModifyResponseReceived.. 198 * Returns the last requested video profile.
|
/external/toybox/toys/lsb/ |
seq.c | 1 /* seq.c - Count from first to last, by increment. 14 usage: seq [-w|-f fmt_str] [-s sep_str] [first] [increment] last 16 Count from first to last, by increment. Omitted arguments default 17 to 1. Two arguments are used as first and last. Arguments can be 47 double first, increment, last, dd; local 57 default: last = atof(toys.optargs[toys.optc-1]); 66 dd = (double []){first, increment, last}[i]; 84 for (dd=first; (increment>0 && dd<=last) || (increment<0 && dd>=last);
|
/external/v8/test/unittests/compiler/ |
move-optimizer-unittest.cc | 95 EndBlock(Last()); 119 EndBlock(Last()); 132 EndBlock(Last()); 167 EndBlock(Last()); 169 auto last = LastInstruction(); local 173 auto move = last->parallel_moves()[0]; 196 EndBlock(Last()); 198 auto last = LastInstruction(); local 204 auto move = last->parallel_moves()[0]; 218 Instruction* last = EmitNop() local [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
armVCM4P2_GetVLCBits.c | 47 * last combinations. 58 * [in/out] pLast pointer to last status flag 60 * will be equal to 1: last == 0 65 * will be equal to 1: last == 1 70 * armVCM4P2_Huff_Tables_VLC.c for last == 0 71 * [in] pVlcTableL0 VLC table for last == 0 73 * armVCM4P2_Huff_Tables_VLC.c for last == 1 74 * [in] pVlcTableL1 VLC table for last == 1 76 * armVCM4P2_Huff_Tables_VLC.c for last == 0 78 * armVCM4P2_Huff_Tables_VLC.c for last == [all...] |
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfChannelList.cpp | 237 Iterator &last) 239 channelsWithPrefix (layerName + '.', first, last); 246 ConstIterator &last) const 248 channelsWithPrefix (layerName + '.', first, last); 255 Iterator &last) 257 first = last = _map.lower_bound (prefix); 260 while (last != Iterator (_map.end()) && 261 strncmp (last.name(), prefix, n) <= 0) 263 ++last; 271 ConstIterator &last) cons [all...] |
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
hash_map.hpp | 107 iterator end_it = buckets_[bucket].last; 128 const_iterator end_it = buckets_[bucket].last; 149 buckets_[bucket].first = buckets_[bucket].last = 152 return std::pair<iterator, bool>(buckets_[bucket].last, true); 154 iterator end_it = buckets_[bucket].last; 162 buckets_[bucket].last = values_insert(end_it, v); 164 return std::pair<iterator, bool>(buckets_[bucket].last, true); 175 bool is_last = (it == buckets_[bucket].last); 177 buckets_[bucket].first = buckets_[bucket].last = values_.end(); 181 --buckets_[bucket].last; 304 iterator last; member in struct:asio::detail::hash_map::bucket_type [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/ |
stat.h | 88 struct timespec st_atim; /* Time of last access. */ 89 struct timespec st_mtim; /* Time of last modification. */ 90 struct timespec st_ctim; /* Time of last status change. */ 95 __time_t st_atime; /* Time of last access. */ 96 unsigned long int st_atimensec; /* Nscecs of last access. */ 97 __time_t st_mtime; /* Time of last modification. */ 98 unsigned long int st_mtimensec; /* Nsecs of last modification. */ 99 __time_t st_ctime; /* Time of last status change. */ 100 unsigned long int st_ctimensec; /* Nsecs of last status change. */ 149 struct timespec st_atim; /* Time of last access. * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/ |
stat.h | 91 struct timespec st_atim; /* Time of last access. */ 92 struct timespec st_mtim; /* Time of last modification. */ 93 struct timespec st_ctim; /* Time of last status change. */ 98 __time_t st_atime; /* Time of last access. */ 99 unsigned long int st_atimensec; /* Nscecs of last access. */ 100 __time_t st_mtime; /* Time of last modification. */ 101 unsigned long int st_mtimensec; /* Nsecs of last modification. */ 102 __time_t st_ctime; /* Time of last status change. */ 103 unsigned long int st_ctimensec; /* Nsecs of last status change. */ 152 struct timespec st_atim; /* Time of last access. * [all...] |
/external/opencv/cv/src/ |
_cvkdtree.hpp | 84 int dimension_of_highest_variance(__instype * first, __instype * last, 86 assert(last - first > 0); 92 for (__instype * k = first; k < last; ++k) 94 mean /= last - first; 96 for (__instype * k = first; k < last; ++k) { 100 var /= last - first; 113 // given point indices and dimension, find index of median; (almost) modifies [first,last) 114 // such that points_in[first,median]<=point[median], points_in(median,last)>point[median]. 117 __instype * median_partition(__instype * first, __instype * last, 119 assert(last - first > 0) [all...] |
/bionic/libc/upstream-openbsd/lib/libc/string/ |
strtok.c | 35 static char *last; local 37 return strtok_r(s, delim, &last); 42 strtok_r(char *s, const char *delim, char **last) 48 if (s == NULL && (s = *last) == NULL) 62 *last = NULL; 80 *last = s;
|
/external/kernel-headers/original/uapi/asm-generic/ |
stat.h | 36 long st_atime; /* Time of last access. */ 38 long st_mtime; /* Time of last modification. */ 40 long st_ctime; /* Time of last status change. */ 61 int st_atime; /* Time of last access. */ 63 int st_mtime; /* Time of last modification. */ 65 int st_ctime; /* Time of last status change. */
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/ |
max_element.pass.cpp | 15 // max_element(Iter first, Iter last); 24 test(Iter first, Iter last) 26 Iter i = std::max_element(first, last); 27 if (first != last) 29 for (Iter j = first; j != last; ++j) 33 assert(i == last);
|
min_element.pass.cpp | 15 // min_element(Iter first, Iter last); 24 test(Iter first, Iter last) 26 Iter i = std::min_element(first, last); 27 if (first != last) 29 for (Iter j = first; j != last; ++j) 33 assert(i == last);
|
/external/pcre/dist/doc/html/ |
pcre_get_stringtable_entries.html | 23 <b> const char *<i>name</i>, char **<i>first</i>, char **<i>last</i>);</b> 27 <b> PCRE_SPTR16 <i>name</i>, PCRE_UCHAR16 **<i>first</i>, PCRE_UCHAR16 **<i>last</i>);</b> 31 <b> PCRE_SPTR32 <i>name</i>, PCRE_UCHAR32 **<i>first</i>, PCRE_UCHAR32 **<i>last</i>);</b> 37 This convenience function finds, for a compiled pattern, the first and last 46 <i>last</i> Where to return a pointer to the last entry
|
/external/skia/src/core/ |
SkEdgeBuilder.cpp | 25 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(const SkEdge* edge, SkEdge* last) { 26 if (last->fCurveCount || last->fDX || edge->fX != last->fX) { 29 if (edge->fWinding == last->fWinding) { 30 if (edge->fLastY + 1 == last->fFirstY) { 31 last->fFirstY = edge->fFirstY; 34 if (edge->fFirstY == last->fLastY + 1) { 35 last->fLastY = edge->fLastY; 40 if (edge->fFirstY == last->fFirstY) [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteClosable.java | 30 * Called when the last reference to the object was released by 36 * Called when the last reference to the object was released by 49 * @throws IllegalStateException if the last reference to the object has already 63 * Releases a reference to the object, closing the object if the last reference 80 * closing the object if the last reference was released. 97 * Releases a reference to the object, closing the object if the last reference
|
/frameworks/rs/ |
rsList.h | 30 List() : last(nullptr), first(&firstBuffer.data.typed), 38 List(InputIterator first, InputIterator last) : List() { 39 for (InputIterator it = first; it != last; ++it) { 55 last = current; 113 T& back() const { return *last; } 119 T* last; member in class:android::renderscript::List
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/ |
LastModifiedFileComparator.java | 24 * Compare the <b>last modified date/time</b> of two files for order 28 * by their last modified date/time. 50 /** Last modified comparator instance */ 53 /** Reverse last modified comparator instance */ 57 * Compare the last the last modified date/time of two files.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/ |
stat.h | 36 int st_atime; /* Time of last access. */ 38 int st_mtime; /* Time of last modification. */ 40 int st_ctime; /* Time of last status change. */ 61 int st_atime; /* Time of last access. */ 63 int st_mtime; /* Time of last modification. */ 65 int st_ctime; /* Time of last status change. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
msg.h | 18 struct msg *msg_last; /* last message in queue,unused */ 19 __kernel_time_t msg_stime; /* last msgsnd time */ 20 __kernel_time_t msg_rtime; /* last msgrcv time */ 21 __kernel_time_t msg_ctime; /* last change time */ 27 __kernel_ipc_pid_t msg_lspid; /* pid of last msgsnd */ 28 __kernel_ipc_pid_t msg_lrpid; /* last receive pid */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/ |
stat.h | 36 long st_atime; /* Time of last access. */ 38 long st_mtime; /* Time of last modification. */ 40 long st_ctime; /* Time of last status change. */ 61 int st_atime; /* Time of last access. */ 63 int st_mtime; /* Time of last modification. */ 65 int st_ctime; /* Time of last status change. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
msg.h | 18 struct msg *msg_last; /* last message in queue,unused */ 19 __kernel_time_t msg_stime; /* last msgsnd time */ 20 __kernel_time_t msg_rtime; /* last msgrcv time */ 21 __kernel_time_t msg_ctime; /* last change time */ 27 __kernel_ipc_pid_t msg_lspid; /* pid of last msgsnd */ 28 __kernel_ipc_pid_t msg_lrpid; /* last receive pid */
|
/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...] |