Searched refs:last_position (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/ui/views/controls/scrollbar/
H A Dscrollbar_unittest.cc22 last_position = position;
42 int last_position; member in class:__anon17063::TestScrollBarController
116 EXPECT_EQ(controller_->last_position, 50);
121 EXPECT_EQ(controller_->last_position, 100);
125 EXPECT_EQ(controller_->last_position, 100);
129 EXPECT_EQ(controller_->last_position, 0);
135 EXPECT_EQ(controller_->last_position, 10);
138 EXPECT_EQ(controller_->last_position, 0);
141 EXPECT_EQ(controller_->last_position, 20);
144 EXPECT_EQ(controller_->last_position,
[all...]
/external/chromium_org/chrome/browser/autocomplete/
H A Dshortcuts_provider.cc308 size_t last_position = 0; local
312 last_position = find_text.length();
316 if (last_position < text_lowercase.length()) {
318 ACMatchClassification(last_position, ACMatchClassification::NONE));
327 // Now, starting with |last_position|, check each character in
330 // of |text_lowercase| beginning with |last_position|. Accept the first
333 // |match_class|, moving |last_position| to be after the matching word. If we
335 while (last_position < text_lowercase.length()) {
337 find_words.equal_range(text_lowercase[last_position]));
338 size_t next_character = last_position
[all...]
/external/elfutils/0.153/libelf/
H A Delf32_updatefile.c218 char *last_position = ((char *) elf->map_address + elf->start_offset local
318 if (last_position < shdr_start)
320 written = MIN (scn_start + offset - last_position,
321 shdr_start - last_position);
323 memset (last_position, __libelf_fill_byte, written);
326 if (last_position + written != scn_start + offset
344 if (scn_start + dl->data.d.d_off > last_position
350 last_position = scn_start + dl->data.d.d_off;
360 last_position = scn_start + dl->data.d.d_off;
373 (*fctp) (last_position, d
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-sourceinfo.js67 var last_position = 14312; variable
254 assertEquals(null, script.locationFromPosition(last_position + 1));
257 assertEquals(last_position, script.locationFromPosition(last_position).position);
258 assertEquals(last_line, script.locationFromPosition(last_position).line);
259 assertEquals(last_column, script.locationFromPosition(last_position).column);
/external/chromium_org/media/blink/
H A Dbuffered_resource_loader_unittest.cc80 void Initialize(const char* url, int first_position, int last_position) { argument
83 last_position_ = last_position;
142 void PartialResponse(int64 first_position, int64 last_position, argument
144 PartialResponse(first_position, last_position, instance_size, false, true);
147 void PartialResponse(int64 first_position, int64 last_position, argument
156 last_position,
165 content_length = last_position - first_position + 1;

Completed in 1188 milliseconds