Searched defs:last (Results 1 - 25 of 502) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/
H A Dsubstr.js141 var last = x; variable
144 var z = last.substring(i);
145 last = z;
H A Dstring-slices.js126 var last = x; variable
129 var z = last.substring(i);
130 last = z;
H A Dcyrillic.js36 last: "\u044f", // ya
51 last: "\u03c9", // omega
71 var last = lc ? chars.last : chars.LAST;
74 var last_other_case = lc ? chars.LAST : chars.last;
76 assertTrue(Range(first, last).test(first), 1);
77 assertTrue(Range(first, last).test(middle), 2);
78 assertTrue(Range(first, last).test(last), 3);
80 assertFalse(Range(first, last)
[all...]
/external/libcap-ng/libcap-ng-0.7/bindings/python/test/
H A Dcapng-test.py11 last = capng.CAP_LAST_CAP variable
26 if len < 80 and last > 30:
27 last = 30 variable
29 print("Doing advanced bit tests for %d capabilities...\n" % (last))
30 for i in range(last+1):
/external/libcap-ng/libcap-ng-0.7/src/test/
H A Dlib_test.c32 int rc, i, len, last = CAP_LAST_CAP; local
52 if (len < 80 && last > 30) // The kernel & headers are mismatched
53 last = 30;
60 printf("Doing advanced bit tests for %d capabilities...\n", last);
61 for (i=0; i<=last; i++) {
/external/chromium/chrome/browser/autofill/
H A Dcontact_info.h35 // Returns the full name, which can include up to the first, middle, and last
45 const string16& last() const { return last_; } function in class:NameInfo
53 // Returns true if |text| is the last name.
59 // Returns true if |text| is the last name.
79 // Sets |last_| to |last| and |last_tokens_| to the set of tokens in |last|,
81 void SetLast(const string16& last);
/external/chromium/net/websockets/
H A Dwebsocket_net_log_params.cc18 size_t last = 0; local
25 std::string entry = headers_.substr(last, pos - last);
27 last = pos;
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractLinkedIteratorTest.java104 private static Iterator<Integer> newDoubler(int first, final int last) { argument
108 return (previous == last) ? null : previous * 2;
/external/harfbuzz_ng/test/api/
H A Dtest-set.c155 hb_codepoint_t next, first, last; local
182 first = last = (hb_codepoint_t) -1;
183 g_assert (hb_set_next_range (s, &first, &last));
185 g_assert_cmpint (last, ==, 6);
186 g_assert (hb_set_next_range (s, &first, &last));
188 g_assert_cmpint (last, ==, 15);
189 g_assert (hb_set_next_range (s, &first, &last));
191 g_assert_cmpint (last, ==, 20005);
192 g_assert (!hb_set_next_range (s, &first, &last));
194 g_assert_cmpint (last,
[all...]
/external/oprofile/libpp/
H A Dsymbol_sort.h30 last enumerator in enum:sort_options::sort_order
H A Dsymbol_container.cpp72 it last = symbols_by_loc.upper_bound(&symbol); local
75 for ( ; first != last ; ++first)
/external/oprofile/libregex/tests/
H A Dregex_test.cpp36 string test, expect, last; local
38 while (getline(fin, last)) {
39 last = trim(last);
40 if (last.length() == 0 || last[0] == '#')
44 test = last;
47 expect = last;
/external/proguard/src/proguard/gui/
H A DTabbedPane.java185 * Selects the last tab.
187 public void last() method in class:TabbedPane
189 cardLayout.last(cardPanel);
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dstring-fasta.js6 var last = 42, A = 3877, C = 29573, M = 139968; variable
9 last = (last * A + C) % M;
10 return max * last / M;
37 var last = null;
39 if (last) table[c] += table[last];
40 last = c;
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dstring-fasta.js6 var last = 42, A = 3877, C = 29573, M = 139968; variable
9 last = (last * A + C) % M;
10 return max * last / M;
37 var last = null;
39 if (last) table[c] += table[last];
40 last = c;
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_methods.c107 struct eap_method *m, *last = NULL; local
118 last = m;
121 if (last)
122 last->next = method;
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_methods.c107 struct eap_method *m, *last = NULL; local
118 last = m;
121 if (last)
122 last->next = method;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_methods.c107 struct eap_method *m, *last = NULL; local
118 last = m;
121 if (last)
122 last->next = method;
/external/bison/src/
H A DSbitset.c55 Sbitset last = self + Sbitset__nbytes (nbits) - 1; local
56 for (; self < last; ++self)
59 return ((*last) & Sbitset__last_byte_mask (nbits)) == 0;
/external/checkpolicy/
H A Dqueue.c146 queue_node_ptr_t p, last, temp; local
152 last = NULL;
157 if (last) {
158 last->next = p->next;
159 if (last->next == NULL)
160 q->tail = last;
172 last = p;
/external/icu4c/i18n/
H A Dnfrlist.h76 NFRule* last() const { return (fCount > 0 && fStuff != NULL) ? fStuff[fCount-1] : NULL; } function in class:NFRuleList
/external/llvm/lib/IR/
H A DSymbolTableListTraitsImpl.h89 ilist_iterator<ValueSubClass> last) {
99 for (; first != last; ++first) {
111 for (; first != last; ++first)
87 transferNodesFromList(ilist_traits<ValueSubClass> &L2, ilist_iterator<ValueSubClass> first, ilist_iterator<ValueSubClass> last) argument
/external/openssl/apps/
H A Dapp_rand.c168 int last; local
174 last=0;
176 if (*p == '\0') last=1;
187 if (last) break;
/external/oprofile/daemon/
H A Dopd_mangling.c69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg) argument
109 if (last->kernel) {
110 values.cg_image_name = last->kernel->name;
111 } else if (last->anon) {
113 values.cg_image_name = mangle_anon(last->anon);
114 values.anon_name = last->anon->name;
116 values.cg_image_name = find_cookie(last->cookie);
141 int opd_open_sample_file(odb_t *file, struct sfile *last, argument
150 mangled = mangle_filename(last, sf, counter, cg);
161 if (sf != last)
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DParserArena.cpp74 ParserArenaRefCounted* ParserArena::last() const function in class:JSC::ParserArena
76 return m_refCountedObjects.last().get();

Completed in 3816 milliseconds

1234567891011>>