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

1234567891011>>

/external/chromium_org/chrome/browser/spellchecker/
H A Dword_trimmer.cc21 // A circular buffer of the last |keep + 1| words seen before position |start|
25 size_t last = std::string::npos; local
33 last = iter.pos();
41 last = iter.pos();
49 return text.substr(first, last - first);
/external/chromium_org/v8/test/mjsunit/
H A Dsubstr.js141 var last = x; variable
144 var z = last.substring(i);
145 last = z;
/external/libexif/test/
H A Dtest-sorted.c33 ExifTag last = 0, current; local
34 num = exif_tag_table_count() - 1; /* last entry is a NULL terminator */
37 if (current < last) {
46 last = current;
/external/v8/test/mjsunit/
H A Dsubstr.js141 var last = x; variable
144 var z = last.substring(i);
145 last = z;
/external/chromium_org/cc/base/
H A Dscoped_ptr_algorithm.h16 ForwardIterator last,
19 for (; first != last; ++first) {
13 remove_if( ScopedContainer* container, ForwardIterator first, ForwardIterator last, Predicate predicate) argument
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dstring_util.h23 size_t last = 0; local
27 std::string tmp(str, last, i - last);
32 last = i + 1;
/external/chromium_org/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/chromium_org/third_party/libaddressinput/chromium/cpp/src/util/
H A Dstring_split.cc21 size_t last = 0; local
25 std::string tmp(str, last, i - last);
31 last = i + 1;
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_function_can_inline.cpp30 * other than as the last instruction. We could potentially work
68 /* If the function is empty (no last instruction) or does not end with a
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); local
72 if (last == NULL || !last->as_return())
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/chromium_org/v8/src/
H A Dhydrogen-removable-simulates.cc88 HSimulate* last = mergelist.RemoveLast(); local
89 last->MergeWith(&mergelist);
/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/mesa3d/src/glsl/
H A Dir_function_can_inline.cpp30 * other than as the last instruction. We could potentially work
68 /* If the function is empty (no last instruction) or does not end with a
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); local
72 if (last == NULL || !last->as_return())
/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/chromium_org/chrome/browser/extensions/activity_log/
H A Dactivity_log_browsertest.cc45 scoped_refptr<Action> last = i->front(); local
47 ASSERT_EQ(extension_id, last->extension_id());
48 ASSERT_EQ(Action::ACTION_CONTENT_SCRIPT, last->action_type());
50 ActivityLogPolicy::Util::Serialize(last->args()));
53 last->SerializePageUrl());
56 last->page_title());
58 ActivityLogPolicy::Util::Serialize(last->other()));
59 ASSERT_EQ("", last->api_name());
60 ASSERT_EQ("", last->SerializeArgUrl());
/external/chromium_org/components/autofill/core/browser/
H A Dcontact_info.h36 // Returns the full name, which can include up to the first, middle, and last
46 const base::string16& last() const { return last_; } function in class:autofill::NameInfo
/external/chromium_org/ppapi/tests/
H A Dtest_trace_event.cc56 int64_t last = interface_->Now(); local
60 ASSERT_LE(last, next);
61 last = next;
/external/chromium_org/third_party/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/chromium_org/third_party/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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
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/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DContentDistribution.h46 PassRefPtr<Node> last() const { return m_nodes.last(); } function in class:WebCore::ContentDistribution
/external/chromium_org/third_party/mesa/src/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);

Completed in 599 milliseconds

1234567891011>>