HomeSort by relevance Sort by last modified time
    Searched refs:last (Results 251 - 275 of 2301) sorted by null

<<11121314151617181920>>

  /external/openssh/regress/
forwarding.sh 10 last=$PORT
16 c=$last
19 last=$a
28 ${SSH} -$q -F $OBJ/ssh_config -p$last -o 'ConnectionAttempts=4' \
  /external/oprofile/daemon/
opd_trans.h 44 struct sfile * last; member in struct:transient
67 trans->last = trans->current;
  /external/v8/src/
liveobjectlist-inl.h 64 if (last()) DoProcessNonLive(obj);
96 LiveObjectList* lol = last();
  /external/valgrind/main/include/
pub_tool_xarray.h 80 index of the first, and *last to be the index of the last matching
82 False, and don't change *first or *last. first and/or last may be
85 /*OUT*/Word* first, /*OUT*/Word* last );
96 /*OUT*/Word* first, /*OUT*/Word* last,
111 /* Drop the last n elements of an XArray. Bombs if there are less
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListScrollListener.java 66 int last = firstCell + cellCount - 1; local
67 mText.setText("Showing " + firstCell + "-" + last + "/" + itemCount);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.binary.search/binary.search/
binary_search.pass.cpp 16 // binary_search(Iter first, Iter last, const T& value);
26 test(Iter first, Iter last, const T& value, bool x)
28 assert(std::binary_search(first, last, value) == x);
binary_search_comp.pass.cpp 16 // binary_search(Iter first, Iter last, const T& value, Compare comp);
27 test(Iter first, Iter last, const T& value, bool x)
29 assert(std::binary_search(first, last, value, std::greater<int>()) == x);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numeric.ops/accumulate/
accumulate_op.pass.cpp 17 // accumulate(Iter first, Iter last, T init, BinaryOperation binary_op);
27 test(Iter first, Iter last, T init, T x)
29 assert(std::accumulate(first, last, init, std::multiplies<T>()) == x);
  /packages/apps/Music/src/com/android/music/
IMediaPlaybackService.aidl 49 int removeTracks(int first, int last);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/
assoc_container.hpp 253 cc_hash_table(It first, It last)
254 { base_type::copy_from_range(first, last); }
260 cc_hash_table(It first, It last, const hash_fn& h)
262 { this->copy_from_range(first, last); }
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e)
273 { this->copy_from_range(first, last); }
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e,
286 { this->copy_from_range(first, last); }
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e,
300 { this->copy_from_range(first, last); }
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/
assoc_container.hpp 253 cc_hash_table(It first, It last)
254 { base_type::copy_from_range(first, last); }
260 cc_hash_table(It first, It last, const hash_fn& h)
262 { this->copy_from_range(first, last); }
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e)
273 { this->copy_from_range(first, last); }
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e,
286 { this->copy_from_range(first, last); }
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e,
300 { this->copy_from_range(first, last); }
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/
assoc_container.hpp 253 cc_hash_table(It first, It last)
254 { base_type::copy_from_range(first, last); }
260 cc_hash_table(It first, It last, const hash_fn& h)
262 { this->copy_from_range(first, last); }
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e)
273 { this->copy_from_range(first, last); }
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e,
286 { this->copy_from_range(first, last); }
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e,
300 { this->copy_from_range(first, last); }
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
SearchEngine.py 119 first, last = get_selection(text)
122 start = last
131 start = last
207 last = text.index("sel.last")
209 first = last = None
212 if not last:
213 last = first
214 return first, last
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
SearchEngine.py 119 first, last = get_selection(text)
122 start = last
131 start = last
207 last = text.index("sel.last")
209 first = last = None
212 if not last:
213 last = first
214 return first, last
  /system/media/camera/docs/
metadata_helpers_test.py 51 for (x, last) in enumerate_with_last(single_value):
53 self.assertEquals(True, last)
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
unicodetext.cc 51 const UnicodeText::const_iterator& last) {
52 return CodepointDistance(first.it_, last.it_);
205 const UnicodeText::const_iterator& last) {
206 assert(first <= last && "Incompatible iterators");
207 repr_.append(first.it_, last.it_ - first.it_);
211 const const_iterator& last) {
212 assert(first <= last && "Incompatible iterators");
213 return string(first.it_, last.it_ - first.it_);
291 const const_iterator &last) {
292 assert(first <= last && " Incompatible iterators")
    [all...]
  /bionic/libc/upstream-netbsd/libc/gen/
popen.c 193 struct pid *cur, *last; local
202 for (last = NULL, cur = pidlist; cur; last = cur, cur = cur->next)
213 if (last == NULL)
216 last->next = cur->next;
  /external/llvm/lib/CodeGen/
ScoreboardHazardRecognizer.cpp 96 unsigned last = Depth - 1; local
97 while ((last > 0) && ((*this)[last] == 0))
98 last--;
100 for (unsigned i = 0; i <= last; i++) {
  /external/zlib/src/contrib/masmx64/
inffas8664.c 87 /* 24 12 */ unsigned char FAR *last; /* r9 while in < last */ member in struct:inffast_ar
128 ar.last = ar.in + (strm->avail_in - PAD_AVAIL_IN);
175 strm->avail_in = (unsigned)(ar.in < ar.last ?
176 PAD_AVAIL_IN + (ar.last - ar.in) :
177 PAD_AVAIL_IN - (ar.in - ar.last));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_genexps.py 44 Traceback (most recent call last):
52 Traceback (most recent call last):
81 Traceback (most recent call last):
88 Traceback (most recent call last):
109 Traceback (most recent call last):
138 Traceback (most recent call last):
144 Traceback (most recent call last):
189 Traceback (most recent call last):
202 Traceback (most recent call last):
209 Traceback (most recent call last)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_genexps.py 44 Traceback (most recent call last):
52 Traceback (most recent call last):
81 Traceback (most recent call last):
88 Traceback (most recent call last):
109 Traceback (most recent call last):
138 Traceback (most recent call last):
144 Traceback (most recent call last):
189 Traceback (most recent call last):
202 Traceback (most recent call last):
209 Traceback (most recent call last)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
BidiResolver.h 63 , last(WTF::Unicode::OtherNeutral)
72 eor = lastStrong = last = direction;
79 , last(lastDir)
86 WTF::Unicode::Direction last; member in struct:WebCore::BidiStatus
107 return status1.eor == status2.eor && status1.last == status2.last && status1.lastStrong == status2.lastStrong && *(status1.context) == *(status2.context);
194 void setLastDir(WTF::Unicode::Direction lastDir) { m_status.last = lastDir; }
249 Iterator m_eor; // Points to the last character in the current run.
253 // m_endOfRunAtEndOfLine is "the position last eor in the end of line"
331 ASSERT(m_status.last != NonSpacingMar
    [all...]
  /external/libsepol/src/
hashtab.c 108 hashtab_ptr_t cur, last; local
114 last = NULL;
117 last = cur;
124 if (last == NULL)
127 last->next = cur->next;
254 hashtab_ptr_t last, cur, temp; local
260 last = NULL;
265 if (last) {
266 last->next = cur->next;
278 last = cur
    [all...]
sidtab.c 90 sidtab_node_t *cur, *last; local
96 last = NULL;
99 last = cur;
106 if (last == NULL)
109 last->next = cur->next;
174 sidtab_node_t *last, *cur, *temp; local
180 last = NULL;
185 if (last) {
186 last->next = cur->next;
197 last = cur
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 202 int last = 0; local
205 int dot = InetTestIP.indexOf('.', last);
207 last, dot));
208 last = dot + 1;
210 addr[3] = (byte) Integer.parseInt(InetTestIP.substring(last));
223 int last = 0; local
226 int dot = nonLocalAddressBytesString.indexOf('.', last);
229 last, dot));
230 last = dot + 1;
233 .substring(last));
    [all...]

Completed in 2460 milliseconds

<<11121314151617181920>>