Home
last modified time | relevance | path

Searched full:last (Results 1 – 25 of 8489) sorted by relevance

12345678910>>...340

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DRelativeDateTimeFormatterTest.java63 {0.0, Direction.LAST, RelativeUnit.SECONDS, "0 seconds ago"}, in TestRelativeDateWithQuantity()
64 {0.5, Direction.LAST, RelativeUnit.SECONDS, "0.5 seconds ago"}, in TestRelativeDateWithQuantity()
65 {1.0, Direction.LAST, RelativeUnit.SECONDS, "1 second ago"}, in TestRelativeDateWithQuantity()
66 {2.0, Direction.LAST, RelativeUnit.SECONDS, "2 seconds ago"}, in TestRelativeDateWithQuantity()
67 {0.0, Direction.LAST, RelativeUnit.MINUTES, "0 minutes ago"}, in TestRelativeDateWithQuantity()
68 {0.5, Direction.LAST, RelativeUnit.MINUTES, "0.5 minutes ago"}, in TestRelativeDateWithQuantity()
69 {1.0, Direction.LAST, RelativeUnit.MINUTES, "1 minute ago"}, in TestRelativeDateWithQuantity()
70 {2.0, Direction.LAST, RelativeUnit.MINUTES, "2 minutes ago"}, in TestRelativeDateWithQuantity()
71 {0.0, Direction.LAST, RelativeUnit.HOURS, "0 hours ago"}, in TestRelativeDateWithQuantity()
72 {0.5, Direction.LAST, RelativeUnit.HOURS, "0.5 hours ago"}, in TestRelativeDateWithQuantity()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DRelativeDateTimeFormatterTest.java66 {0.0, Direction.LAST, RelativeUnit.SECONDS, "0 seconds ago"}, in TestRelativeDateWithQuantity()
67 {0.5, Direction.LAST, RelativeUnit.SECONDS, "0.5 seconds ago"}, in TestRelativeDateWithQuantity()
68 {1.0, Direction.LAST, RelativeUnit.SECONDS, "1 second ago"}, in TestRelativeDateWithQuantity()
69 {2.0, Direction.LAST, RelativeUnit.SECONDS, "2 seconds ago"}, in TestRelativeDateWithQuantity()
70 {0.0, Direction.LAST, RelativeUnit.MINUTES, "0 minutes ago"}, in TestRelativeDateWithQuantity()
71 {0.5, Direction.LAST, RelativeUnit.MINUTES, "0.5 minutes ago"}, in TestRelativeDateWithQuantity()
72 {1.0, Direction.LAST, RelativeUnit.MINUTES, "1 minute ago"}, in TestRelativeDateWithQuantity()
73 {2.0, Direction.LAST, RelativeUnit.MINUTES, "2 minutes ago"}, in TestRelativeDateWithQuantity()
74 {0.0, Direction.LAST, RelativeUnit.HOURS, "0 hours ago"}, in TestRelativeDateWithQuantity()
75 {0.5, Direction.LAST, RelativeUnit.HOURS, "0.5 hours ago"}, in TestRelativeDateWithQuantity()
[all …]
/external/epid-sdk/doc/html/
Dtabs.css1last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>l…
/external/tinyxml2/docs/
Dtabs.css1last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>l…
/external/swiftshader/third_party/llvm-subzero/lib/Demangle/
DItaniumDemangle.cpp40 static const char *parse_type(const char *first, const char *last, C &db);
42 static const char *parse_encoding(const char *first, const char *last, C &db);
44 static const char *parse_name(const char *first, const char *last, C &db,
47 static const char *parse_expression(const char *first, const char *last, C &db);
49 static const char *parse_template_args(const char *first, const char *last,
52 static const char *parse_operator_name(const char *first, const char *last,
55 static const char *parse_unqualified_name(const char *first, const char *last,
58 static const char *parse_decltype(const char *first, const char *last, C &db);
62 static const char *parse_number(const char *first, const char *last) { in parse_number() argument
63 if (first != last) { in parse_number()
[all …]
/external/libcxx/test/std/utilities/time/time.cal/time.cal.operators/
Dmonth_day_last.pass.cpp20 // Returns: month(m) / last.
24 // Returns: m / last.
28 // Returns: month(m) / last.
31 // [Note: A month_day_last object can be constructed using the expression m/last or last/m,
34 // constexpr auto mdl = February/last; // mdl is the last day of February of an as yet unspecif…
56 constexpr std::chrono::last_spec last = std::chrono::last; in main() local
58 ASSERT_SAME_TYPE(month_day_last, decltype(last/February)); in main()
59 ASSERT_SAME_TYPE(month_day_last, decltype(February/last)); in main()
63 constexpr auto mdl = February/std::chrono::last; in main()
68 ASSERT_NOEXCEPT ( last/February); in main()
[all …]
/external/libdivsufsort/lib/
Dtrsort.c79 tr_insertionsort(const saidx_t *ISAd, saidx_t *first, saidx_t *last) { in tr_insertionsort() argument
83 for(a = first + 1; a < last; ++a) { in tr_insertionsort()
167 tr_pivot(const saidx_t *ISAd, saidx_t *first, saidx_t *last) { in tr_pivot() argument
171 t = last - first; in tr_pivot()
176 return tr_median3(ISAd, first, middle, last - 1); in tr_pivot()
179 return tr_median5(ISAd, first, first + t, middle, last - 1 - t, last - 1); in tr_pivot()
185 last = tr_median3(ISAd, last - 1 - (t << 1), last - 1 - t, last - 1); in tr_pivot()
186 return tr_median3(ISAd, first, middle, last); in tr_pivot()
223 saidx_t *first, saidx_t *middle, saidx_t *last, in tr_partition() argument
229 for(b = middle - 1; (++b < last) && ((x = ISAd[*b]) == v);) { } in tr_partition()
[all …]
Dsssort.c168 saidx_t *first, saidx_t *last, saidx_t depth) { in ss_insertionsort() argument
173 for(i = last - 2; first <= i; --i) { in ss_insertionsort()
175 do { *(j - 1) = *j; } while((++j < last) && (*j < 0)); in ss_insertionsort()
176 if(last <= j) { break; } in ss_insertionsort()
263 ss_pivot(const sauchar_t *Td, const saidx_t *PA, saidx_t *first, saidx_t *last) { in ss_pivot() argument
267 t = last - first; in ss_pivot()
272 return ss_median3(Td, PA, first, middle, last - 1); in ss_pivot()
275 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1); in ss_pivot()
281 last = ss_median3(Td, PA, last - 1 - (t << 1), last - 1 - t, last - 1); in ss_pivot()
282 return ss_median3(Td, PA, first, middle, last); in ss_pivot()
[all …]
/external/skia/src/core/
DSkEdgeBuilder.cpp19 SkEdgeBuilder::Combine SkBasicEdgeBuilder::combineVertical(const SkEdge* edge, SkEdge* last) { in combineVertical() argument
20 if (last->fCurveCount || last->fDX || edge->fX != last->fX) { in combineVertical()
23 if (edge->fWinding == last->fWinding) { in combineVertical()
24 if (edge->fLastY + 1 == last->fFirstY) { in combineVertical()
25 last->fFirstY = edge->fFirstY; in combineVertical()
28 if (edge->fFirstY == last->fLastY + 1) { in combineVertical()
29 last->fLastY = edge->fLastY; in combineVertical()
34 if (edge->fFirstY == last->fFirstY) { in combineVertical()
35 if (edge->fLastY == last->fLastY) { in combineVertical()
38 if (edge->fLastY < last->fLastY) { in combineVertical()
[all …]
DSkDeque.cpp117 Block* last = fBackBlock; in push_back() local
120 if (nullptr == last->fBegin) { in push_back()
122 last->fBegin = last->start(); in push_back()
123 end = last->fBegin + fElemSize; in push_back()
125 end = last->fEnd + fElemSize; in push_back()
126 if (end > last->fStop) { // no more room in this chunk in push_back()
128 last = this->allocateBlock(fAllocCount); in push_back()
129 last->fPrev = fBackBlock; in push_back()
130 fBackBlock->fNext = last; in push_back()
131 fBackBlock = last; in push_back()
[all …]
/external/skqp/src/core/
DSkEdgeBuilder.cpp19 SkEdgeBuilder::Combine SkBasicEdgeBuilder::combineVertical(const SkEdge* edge, SkEdge* last) { in combineVertical() argument
20 if (last->fCurveCount || last->fDX || edge->fX != last->fX) { in combineVertical()
23 if (edge->fWinding == last->fWinding) { in combineVertical()
24 if (edge->fLastY + 1 == last->fFirstY) { in combineVertical()
25 last->fFirstY = edge->fFirstY; in combineVertical()
28 if (edge->fFirstY == last->fLastY + 1) { in combineVertical()
29 last->fLastY = edge->fLastY; in combineVertical()
34 if (edge->fFirstY == last->fFirstY) { in combineVertical()
35 if (edge->fLastY == last->fLastY) { in combineVertical()
38 if (edge->fLastY < last->fLastY) { in combineVertical()
[all …]
DSkDeque.cpp117 Block* last = fBackBlock; in push_back() local
120 if (nullptr == last->fBegin) { in push_back()
122 last->fBegin = last->start(); in push_back()
123 end = last->fBegin + fElemSize; in push_back()
125 end = last->fEnd + fElemSize; in push_back()
126 if (end > last->fStop) { // no more room in this chunk in push_back()
128 last = this->allocateBlock(fAllocCount); in push_back()
129 last->fPrev = fBackBlock; in push_back()
130 fBackBlock->fNext = last; in push_back()
131 fBackBlock = last; in push_back()
[all …]
/external/webrtc/webrtc/system_wrappers/source/spreadsortlib/
Dspreadsort.hpp65 …find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAcces… in find_extremes() argument
69 while(++current < last) { in find_extremes()
80 …find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAcces… in find_extremes() argument
83 while(++current < last) { in find_extremes()
130 …spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_… in spread_sort_rec() argument
136 find_extremes(first, last, max, min); in spread_sort_rec()
141 …unsigned log_divisor = get_log_divisor(last - first, rough_log_2_size((size_t)(*max >> 0) - (*min … in spread_sort_rec()
149 for (RandomAccessIter current = first; current != last;) in spread_sort_rec()
185 bins[bin_count - 1] = last; in spread_sort_rec()
192 size_t max_count = get_max_count(log_divisor, last - first); in spread_sort_rec()
[all …]
/external/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/bsdiff/
DDivSuffixSorter.java314 final int PA, int first, int last, int buf, int bufsize, int depth, int n, boolean lastsuffix) in ssSort() argument
327 && (bufsize < (last - first)) in ssSort()
328 && (bufsize < (limit = ssIsqrt(last - first)))) { in ssSort()
332 buf = middle = last - limit; in ssSort()
335 middle = last; in ssSort()
340 curbufsize = last - (a + SS_BLOCKSIZE); in ssSort()
358 ssMintroSort(PA, middle, last, depth); in ssSort()
359 ssInplaceMerge(PA, first, middle, last, depth); in ssSort()
366 (a < last) in ssSort()
402 private final void ssInplaceMerge(int PA, int first, int middle, int last, int depth) in ssInplaceMerge() argument
[all …]
/external/python/cpython3/Doc/includes/
Dcustom4.c7 PyObject *last; /* last name */ member
15 Py_VISIT(self->last); in Custom_traverse()
23 Py_CLEAR(self->last); in Custom_clear()
46 self->last = PyUnicode_FromString(""); in Custom_new()
47 if (self->last == NULL) { in Custom_new()
59 static char *kwlist[] = {"first", "last", "number", NULL}; in Custom_init()
60 PyObject *first = NULL, *last = NULL, *tmp; in Custom_init() local
63 &first, &last, in Custom_init()
73 if (last) { in Custom_init()
74 tmp = self->last; in Custom_init()
[all …]
Dcustom3.c7 PyObject *last; /* last name */ member
15 Py_XDECREF(self->last); in Custom_dealloc()
30 self->last = PyUnicode_FromString(""); in Custom_new()
31 if (self->last == NULL) { in Custom_new()
43 static char *kwlist[] = {"first", "last", "number", NULL}; in Custom_init()
44 PyObject *first = NULL, *last = NULL, *tmp; in Custom_init() local
47 &first, &last, in Custom_init()
57 if (last) { in Custom_init()
58 tmp = self->last; in Custom_init()
59 Py_INCREF(last); in Custom_init()
[all …]
Dcustom2.c7 PyObject *last; /* last name */ member
15 Py_XDECREF(self->last); in Custom_dealloc()
30 self->last = PyUnicode_FromString(""); in Custom_new()
31 if (self->last == NULL) { in Custom_new()
43 static char *kwlist[] = {"first", "last", "number", NULL}; in Custom_init()
44 PyObject *first = NULL, *last = NULL, *tmp; in Custom_init() local
47 &first, &last, in Custom_init()
57 if (last) { in Custom_init()
58 tmp = self->last; in Custom_init()
59 Py_INCREF(last); in Custom_init()
[all …]
/external/iptables/extensions/
Dlibxt_NFQUEUE.c37 " --queue-balance first:last Balance flows between queues <value> to <value>.\n"); in NFQUEUE_help_v1()
46 " --queue-balance first:last Balance flows between queues <value> to <value>.\n" in NFQUEUE_help_v2()
57 " --queue-balance first:last Balance flows between queues <value> to <value>.\n" in NFQUEUE_help_v3()
167 unsigned int last = tinfo->queues_total; in NFQUEUE_print_v1() local
169 if (last > 1) { in NFQUEUE_print_v1()
170 last += tinfo->queuenum - 1; in NFQUEUE_print_v1()
171 printf(" NFQUEUE balance %u:%u", tinfo->queuenum, last); in NFQUEUE_print_v1()
181 unsigned int last = info->queues_total; in NFQUEUE_print_v2() local
183 if (last > 1) { in NFQUEUE_print_v2()
184 last += info->queuenum - 1; in NFQUEUE_print_v2()
[all …]
/external/python/cpython2/Doc/includes/
Dnoddy4.c7 PyObject *last; member
21 if (self->last) { in Noddy_traverse()
22 vret = visit(self->last, arg); in Noddy_traverse()
39 tmp = self->last; in Noddy_clear()
40 self->last = NULL; in Noddy_clear()
67 self->last = PyString_FromString(""); in Noddy_new()
68 if (self->last == NULL) { in Noddy_new()
82 PyObject *first=NULL, *last=NULL, *tmp; in Noddy_init() local
84 static char *kwlist[] = {"first", "last", "number", NULL}; in Noddy_init()
87 &first, &last, in Noddy_init()
[all …]
Dtest.py18 >>> n1.last
27 >>> n1.last = 'tell'
32 Traceback (most recent call last):
36 Traceback (most recent call last):
43 Traceback (most recent call last):
57 >>> n2.last
61 Traceback (most recent call last):
65 Traceback (most recent call last):
69 Traceback (most recent call last):
75 Traceback (most recent call last):
[all …]
/external/python/cpython3/Lib/test/
Dtest_smtpd.py206 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 …]
Dtest_extcall.py53 Traceback (most recent call last):
57 Traceback (most recent call last):
61 Traceback (most recent call last):
88 Traceback (most recent call last):
93 Traceback (most recent call last):
98 Traceback (most recent call last):
103 Traceback (most recent call last):
119 Traceback (most recent call last):
128 Traceback (most recent call last):
163 Traceback (most recent call last):
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
Dunpred-control-flow-in-it-block.s4 @ an IT block, but not the last instruction in the block.
8 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru…
10 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru…
12 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru…
16 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru…
18 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru…
20 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru…
24 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru…
26 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru…
28 @ CHECK: :[[@LINE-1]]:{{[0-9]+}}: error: instruction must be outside of IT block or the last instru…
[all …]
/external/python/cpython3/Lib/idlelib/
Dreplace.py41 last = text.index("sel.last")
43 last = None
45 last = last or first
46 self.show_hit(first, last)
108 first = last = None
123 last = "%d.%d" % (line, j)
125 text.mark_set("insert", last)
128 if first != last:
129 text.delete(first, last)
135 if first and last:
[all …]
/external/kernel-headers/original/uapi/asm-mips/asm/
Dmsgbuf.h18 __kernel_time_t msg_stime; /* last msgsnd time */
19 __kernel_time_t msg_rtime; /* last msgrcv time */
20 __kernel_time_t msg_ctime; /* last change time */
24 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
25 __kernel_pid_t msg_lrpid; /* last receive pid */
33 unsigned long msg_stime; /* last msgsnd time */
35 unsigned long msg_rtime; /* last msgrcv time */
37 unsigned long msg_ctime; /* last change time */
41 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
42 __kernel_pid_t msg_lrpid; /* last receive pid */
[all …]

12345678910>>...340