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

<<21222324252627282930>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py 38 first, last = self.editwin.get_selection_indices()
39 if first and last:
40 data = text.get(first, last)
43 first, last, comment_header, data = \
73 text.delete(first, last)
77 text.mark_set("insert", last)
94 last = "%d.0" % lineno
104 return first, last, comment_header, text.get(first, last)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 47 self.last = 0
73 self.last = 0
82 self.last = (self.level > 0)
83 if self.last:
97 self.last = 0
100 self.last = 1
125 if self.level > 1 or self.last:
128 self.last = 0
145 self.last = 0
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
compile.h 19 int ff_lineno; /* line number of last future statement */
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py 38 first, last = self.editwin.get_selection_indices()
39 if first and last:
40 data = text.get(first, last)
43 first, last, comment_header, data = \
73 text.delete(first, last)
77 text.mark_set("insert", last)
94 last = "%d.0" % lineno
104 return first, last, comment_header, text.get(first, last)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 47 self.last = 0
73 self.last = 0
82 self.last = (self.level > 0)
83 if self.last:
97 self.last = 0
100 self.last = 1
125 if self.level > 1 or self.last:
128 self.last = 0
145 self.last = 0
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
unwind-3.s 18 @ section that will be placed last
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
pr14156a.d 14 [0-9a-f]+ t last
pr14156b.d 14 [0-9a-f]+ t last
pr14156c.d 14 [0-9a-f]+ t last
  /toolchain/binutils/binutils-2.25/libiberty/
rindex.c 7 Returns a pointer to the last occurrence of the character @var{c} in
strrchr.c 8 Returns a pointer to the last occurrence of the character @var{c} in
  /tools/test/connectivity/acts/framework/
setup.py 11 # mock-1.0.1 is the last version compatible with setuptools <17.1,
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
StatisticsHandler.java 187 * since {@link #statsReset()} was last called, excluding
198 * since {@link #statsReset()} was last called.
207 * since {@link #statsReset()} was last called.
216 * since {@link #statsReset()} was last called.
225 * since {@link #statsReset()} was last called.
234 * since {@link #statsReset()} was last called.
245 * since {@link #statsReset()} was last called.
256 * since {@link #statsReset()} was last called, excluding
266 * since {@link #statsReset()} was last called, including
276 * since {@link #statsReset()} was last called, includin
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_vbuf.c 207 /* emit last triangle vertex as last triangle vertex */
228 /* emit last non-spoke vertex as last vertex */
240 /* emit last quad vertex as first triangle vertex */
254 /* emit last quad vertex as last triangle vertex */
272 /* emit last quad vertex as first triangle vertex */
285 /* emit last quad vertex as last triangle vertex *
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_prim_vbuf.c 229 /* emit last triangle vertex as last triangle vertex */
250 /* emit last non-spoke vertex as last vertex */
262 /* emit last quad vertex as first triangle vertex */
276 /* emit last quad vertex as last triangle vertex */
294 /* emit last quad vertex as first triangle vertex */
307 /* emit last quad vertex as last triangle vertex *
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MultidimensionalCounter.java 63 * Index of last dimension.
65 private final int last; field in class:MultidimensionalCounter
85 counter[last] = -1;
105 for (int i = last; i >= 0; i--) {
170 last = dimension - 1;
171 int tS = size[last];
172 for (int i = 0; i < last; i++) {
180 uniCounterOffset[last] = 0;
224 for (int i = 0; i < last; i++) {
242 indices[last] = idx
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_format_vp8_test_helper.cc 74 bool last = false;
79 EXPECT_TRUE(packetizer->NextPacket(buffer_, &send_bytes, &last));
80 CheckPacket(send_bytes, expected_sizes[i], last,
83 EXPECT_TRUE(last);
230 // Verify that the input variable "last" agrees with the position of data_ptr_.
232 // we are at the end and last should be true. Otherwise, it should be false.
233 void RtpFormatVp8TestHelper::CheckLast(bool last) const {
234 EXPECT_EQ(last, data_ptr_ == payload_data_ + payload_size_);
238 // the header, payload, and "last" flag.
241 bool last,
    [all...]
  /libcore/ojluni/src/main/java/java/lang/ref/
ReferenceQueue.java 264 // Find the last element in unenqueued.
265 Reference<?> last = unenqueued; local
266 while (last.pendingNext != unenqueued) {
267 last = last.pendingNext;
270 last.pendingNext = list;
271 last = list;
272 while (last.pendingNext != list) {
273 last = last.pendingNext
    [all...]
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 313 THREAD_LOCAL struct timeval last = {0, 0}; local
358 last.tv_sec = tv1;
359 last.tv_usec = tv2;
364 if ((last.tv_sec == 0) && (last.tv_usec == 0)) {
367 gettimeofday(&last, 0);
368 last.tv_sec--;
373 if ((tv.tv_sec < last.tv_sec) ||
374 ((tv.tv_sec == last.tv_sec) &&
375 (tv.tv_usec < last.tv_usec)))
    [all...]
  /external/llvm/bindings/python/llvm/
object.py 132 last = None
137 last = Section(sections)
139 last.cache()
141 yield last
144 last.expire()
146 if last is not None:
147 last.expire()
160 last = None
165 last = Symbol(symbols, self)
167 last.cache(
    [all...]
  /bionic/libm/include/amd64/machine/
fpu.h 33 u_int16_t fp_ex_sw; /* saved status from last exception */
34 u_int16_t fp_ex_tw; /* saved tag from last exception */
  /development/ndk/platforms/android-21/arch-x86_64/include/machine/
fpu.h 33 u_int16_t fp_ex_sw; /* saved status from last exception */
34 u_int16_t fp_ex_tw; /* saved tag from last exception */
  /development/samples/Support13Demos/res/values/
strings.xml 34 <string name="last">Last</string>
  /external/autotest/frontend/health/
utils.py 23 Get all the tests that have passed and the time they last passed.
37 Get all the tests that have failed and the time they last failed.
  /external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
datastack.h 26 /* The line number of the last line recorded, for tracing arcs.
34 int depth; /* The index of the last-used entry in stack. */

Completed in 1492 milliseconds

<<21222324252627282930>>