Searched defs:last (Results 51 - 75 of 895) sorted by relevance

1234567891011>>

/external/libcxx/test/re/re.regex/re.regex.construct/
H A Diter_iter_flg.pass.cpp15 // basic_regex(ForwardIterator first, ForwardIterator last,
25 test(Iter first, Iter last, std::regex_constants::syntax_option_type f, unsigned mc) argument
27 std::basic_regex<typename std::iterator_traits<Iter>::value_type> r(first, last, f);
/external/libcxx/test/strings/basic.string/string.cons/
H A Diter_alloc.pass.cpp26 test(It first, It last) argument
32 S s2(first, last);
34 assert(s2.size() == std::distance(first, last));
36 for (It it = first; it != last; ++it, ++i)
44 test(It first, It last, const A& a) argument
49 S s2(first, last, a);
51 assert(s2.size() == std::distance(first, last));
53 for (It it = first; it != last; ++it, ++i)
/external/libcxx/test/strings/basic.string/string.modifiers/string_insert/
H A Diter_iter_iter.pass.cpp13 // iterator insert(const_iterator p, InputIterator first, InputIterator last);
27 test(S s, typename S::difference_type pos, It first, It last, S expected) argument
30 typename S::iterator i = s.insert(p, first, last);
/external/libcxx/test/strings/basic.string/string.modifiers/string_replace/
H A Diter_iter_pointer.pass.cpp29 typename S::const_iterator last = s.begin() + pos1 + n1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, str);
H A Diter_iter_string.pass.cpp29 typename S::const_iterator last = s.begin() + pos1 + n1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, str);
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dqueue.cpp52 auto last = std::find_if(queued_events.begin(), queued_events.end(), local
57 std::for_each(first, last, [&](event_ptr &ev) { ev->fence(fence); });
59 queued_events.erase(first, last);
/external/mesa3d/src/glsl/
H A Dir_basic_block.cpp54 ir_instruction *last,
59 ir_instruction *last = NULL; local
101 last = ir;
104 callback(leader, last, data);
52 call_for_basic_blocks(exec_list *instructions, void (*callback)(ir_instruction *first, ir_instruction *last, void *data), void *data) argument
H A Dopt_redundant_jumps.cpp61 /* If the last instruction in both branches is a 'break' or a 'continue',
102 /* If the last instruction of a loop body is a 'continue', remove it.
104 ir_instruction *const last = local
107 if (last && (last->ir_type == ir_type_loop_jump)
108 && (((ir_loop_jump *) last)->mode == ir_loop_jump::jump_continue)) {
109 last->remove();
/external/oprofile/libpp/
H A Dsymbol_sort.h30 last enumerator in enum:sort_options::sort_order
/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/pdfium/core/src/fxge/agg/agg23/
H A Dagg_shorten_path.h43 vertex_type& last = vs[n]; local
45 FX_FLOAT x = prev.x + (last.x - prev.x) * d;
46 FX_FLOAT y = prev.y + (last.y - prev.y) * d;
47 last.x = x;
48 last.y = y;
49 if(!prev(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/skia/experimental/Intersection/
H A DEdgeWalker_Test.h39 bool last; member in struct:State4
/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/hs20/server/www/
H A Dspp.php103 $last = exec("$osu_root/spp/hs20_spp_server -r$osu_root -f/tmp/hs20_spp_server.log", $output, $ret); variable
/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/chromium_org/v8/test/mjsunit/
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/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/chromium_org/chrome/browser/sync_file_system/
H A Dfile_change.cc53 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/third_party/WebKit/Source/core/events/
H A DEventPath.h53 NodeEventContext& last() { return m_nodeEventContexts[size() - 1]; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBoundaries.cpp53 int last = i; local
57 return last;
98 *end = it->last();
106 return end < 0 ? it->last() : end;
/external/chromium_org/third_party/icu/source/i18n/
H A Dnfrlist.h76 NFRule* last() const { return (fCount > 0 && fStuff != NULL) ? fStuff[fCount-1] : NULL; } function in class:NFRuleList
/external/chromium_org/third_party/libwebp/enc/
H A Dcost.h29 int last; member in struct:__anon13271

Completed in 403 milliseconds

1234567891011>>