HomeSort by relevance Sort by last modified time
    Searched full:last (Results 76 - 100 of 23681) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
SearchDialog.py 14 pat = text.get("sel.first", "sel.last")
46 last = "%d.%d" % (line, j)
49 sellast = text.index("sel.last")
50 if selfirst == first and sellast == last:
56 text.tag_add("sel", first, last)
57 text.mark_set("insert", self.engine.isback() and first or last)
65 pat = text.get("sel.first", "sel.last")
  /sdk/emulator/opengl/host/tools/emugen/
EntryPoint.cpp 43 size_t pos = 0, last; local
54 std::string str = getNextToken(f, pos, &last, WHITESPACE);
60 pos = last;
66 pos = last;
74 pos = last;
97 size_t pos, last; local
107 field = getNextToken(linestr, 0, &last, "(");
108 pos = last + 1;
110 field = getNextToken(linestr, pos, &last, ",)");
116 pos = last + 1
208 size_t last; local
    [all...]
  /external/kernel-headers/original/uapi/asm-generic/
msgbuf.h 26 __kernel_time_t msg_stime; /* last msgsnd time */
30 __kernel_time_t msg_rtime; /* last msgrcv time */
34 __kernel_time_t msg_ctime; /* last change time */
41 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
42 __kernel_pid_t msg_lrpid; /* last receive pid */
  /external/kernel-headers/original/uapi/asm-mips/asm/
msgbuf.h 20 __kernel_time_t msg_stime; /* last msgsnd time */
27 __kernel_time_t msg_rtime; /* last msgrcv time */
34 __kernel_time_t msg_ctime; /* last change time */
41 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
42 __kernel_pid_t msg_lrpid; /* last receive pid */
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
reverse_fold_impl.hpp 19 , typename Last
28 , typename Last
33 struct reverse_fold_impl< 0,First,Last,State,BackwardOp,ForwardOp >
44 , typename Last
49 struct reverse_fold_impl< 1,First,Last,State,BackwardOp,ForwardOp >
65 , typename Last
70 struct reverse_fold_impl< 2,First,Last,State,BackwardOp,ForwardOp >
91 , typename Last
96 struct reverse_fold_impl< 3,First,Last,State,BackwardOp,ForwardOp >
120 , typename Last
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm-generic/
msgbuf.h 26 __kernel_time_t msg_stime; /* last msgsnd time */
30 __kernel_time_t msg_rtime; /* last msgrcv time */
34 __kernel_time_t msg_ctime; /* last change time */
41 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
42 __kernel_pid_t msg_lrpid; /* last receive pid */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
msgbuf.h 26 __kernel_time_t msg_stime; /* last msgsnd time */
30 __kernel_time_t msg_rtime; /* last msgrcv time */
34 __kernel_time_t msg_ctime; /* last change time */
41 __kernel_pid_t msg_lspid; /* pid of last msgsnd */
42 __kernel_pid_t msg_lrpid; /* last receive pid */
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_carray.swg 36 carray(_Iterator first, _Iterator last) {
37 assign(first, last);
52 void assign(_Iterator first, _Iterator last) {
53 if (std::distance(first,last) == size()) {
54 std::copy(first, last, v);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 89 Last RN 7
125 MOV Last,#0
132 STM pDst!,{temp2,temp1,Last,LR}
134 STM pDst!,{temp2,temp1,Last,LR}
136 STM pDst!,{temp2,temp1,Last,LR}
138 STM pDst!,{temp2,temp1,Last,LR}
140 STM pDst!,{temp2,temp1,Last,LR}
142 STM pDst!,{temp2,temp1,Last,LR}
144 STM pDst!,{temp2,temp1,Last,LR}
145 STM pDst!,{temp2,temp1,Last,LR
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 89 Last RN 7
125 MOV Last,#0
132 STM pDst!,{temp2,temp1,Last,LR}
134 STM pDst!,{temp2,temp1,Last,LR}
136 STM pDst!,{temp2,temp1,Last,LR}
138 STM pDst!,{temp2,temp1,Last,LR}
140 STM pDst!,{temp2,temp1,Last,LR}
142 STM pDst!,{temp2,temp1,Last,LR}
144 STM pDst!,{temp2,temp1,Last,LR}
145 STM pDst!,{temp2,temp1,Last,LR
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
syscall_iterator_unittest.cc 26 for (uint32_t last = next; !iter.Done(); last = next) {
28 SANDBOX_ASSERT(last < next);
30 // The iterator should always return 0xFFFFFFFFu as the last value.
47 for (uint32_t last = next; next < MAX_PUBLIC_SYSCALL + 1; last = next) {
48 SANDBOX_ASSERT((next = iter.Next()) == last + 1);
63 for (uint32_t last = next; next < MAX_PUBLIC_SYSCALL + 1; last = next) {
64 SANDBOX_ASSERT((next = iter.Next()) == last + 1)
    [all...]
  /development/tools/idegen/src/
Stopwatch.java 22 long last = System.currentTimeMillis(); field in class:Stopwatch
26 Log.info(label + ": " + (now - last) + "ms");
27 last = now;
  /external/chromium_org/tools/clang/plugins/tests/
enum_last_value_from_c.c 5 // We warn when xxxLAST constants aren't last.
24 // We don't warn when xxxLAST constants are last.
33 // We don't warn when xxx_LAST constants are last.
  /external/e2fsprogs/tests/
filter.sed 10 /^Last write time:/d
11 /^Last mount time:/d
12 /^Last checked:/d
  /external/qemu-pc-bios/vgabios/
dataseghack 10 'BEGIN { i = 0; last = "hello" }\
11 /BLOCK_STRINGS_BEGIN/,/^\.bss/ { if ( i > 1 ) { print last } last = $0; i = i + 1 }\
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAbsListView.java 40 * Robolectric accessor for the last smoothScrolledPosition
49 * Robolectric accessor for the last smoothScrollBy distance
58 * Robolectric accessor for the last smoothScrollBy duration
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchStackFromBottomTest.java 62 assertEquals("Last item not the last child in the grid",
65 assertEquals("Last item not at the bottom of the grid",
79 assertEquals("Last item not the last child in the grid",
82 assertEquals("Last item not at the bottom of the grid",
96 assertEquals("Last item not the last child in the grid",
99 assertEquals("Last item not at the bottom of the grid",
113 assertEquals("Last item not the last child in the grid"
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
iterator_range.hpp 26 , typename BOOST_MPL_AUX_NA_PARAM(Last)
33 typedef Last end;
35 BOOST_MPL_AUX_LAMBDA_SUPPORT(2,iterator_range,(First,Last))
  /external/chromium_org/third_party/webrtc/system_wrappers/source/spreadsortlib/
spreadsort.hpp 60 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min)
64 while(++current < last) {
75 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min, compare comp)
78 while(++current < last) {
125 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset
131 find_extremes(first, last, max, min);
136 unsigned log_divisor = get_log_divisor(last - first, rough_log_2_size((size_t)(*max >> 0) - (*min >> 0)));
144 for (RandomAccessIter current = first; current != last;)
180 bins[bin_count - 1] = last;
187 size_t max_count = get_max_count(log_divisor, last - first);
    [all...]
  /external/webrtc/src/system_wrappers/source/spreadsortlib/
spreadsort.hpp 60 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min)
64 while(++current < last) {
75 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min, compare comp)
78 while(++current < last) {
125 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset
131 find_extremes(first, last, max, min);
136 unsigned log_divisor = get_log_divisor(last - first, rough_log_2_size((size_t)(*max >> 0) - (*min >> 0)));
144 for (RandomAccessIter current = first; current != last;)
180 bins[bin_count - 1] = last;
187 size_t max_count = get_max_count(log_divisor, last - first);
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
file_change.cc 53 FileChange& last = list_.back(); local
54 if (last.IsFile() != new_change.IsFile()) {
59 if (last.change() == new_change.change())
63 if (!last.IsFile() && last.IsAddOrUpdate() && new_change.IsDelete()) {
70 last = new_change;
  /external/chromium_org/components/autofill/core/browser/
contact_info_unittest.cc 91 name.SetRawInfo(NAME_LAST, ASCIIToUTF16("Last"));
94 EXPECT_EQ(ASCIIToUTF16("Last"), name.GetRawInfo(NAME_LAST));
96 EXPECT_EQ(ASCIIToUTF16("Last"),
111 name.SetRawInfo(NAME_LAST, ASCIIToUTF16("Last"));
114 EXPECT_EQ(ASCIIToUTF16("Last"), name.GetRawInfo(NAME_LAST));
116 EXPECT_EQ(ASCIIToUTF16("First Last"),
121 name.SetRawInfo(NAME_LAST, ASCIIToUTF16("Last"));
124 EXPECT_EQ(ASCIIToUTF16("Last"), name.GetRawInfo(NAME_LAST));
126 EXPECT_EQ(ASCIIToUTF16("Middle Last"),
131 name.SetRawInfo(NAME_LAST, ASCIIToUTF16("Last"));
    [all...]
  /external/libcxx/test/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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);

Completed in 1352 milliseconds

1 2 34 5 6 7 8 91011>>