Searched refs:input_ (Results 1 - 25 of 59) sorted by relevance

123

/external/chromium_org/chrome/browser/resources/ntp4/
H A Dnav_dot.js45 this.input_ = this.ownerDocument.createElement('input');
46 this.input_.setAttribute('spellcheck', false);
47 this.input_.value = title;
49 this.input_.disabled = true;
50 this.appendChild(this.input_);
61 this.input_.addEventListener('blur', this.onInputBlur_.bind(this));
62 this.input_.addEventListener('mousedown',
64 this.input_.addEventListener('keydown', this.onInputKeyDown_.bind(this));
90 this.title = this.input_.value = title;
132 if (this.ownerDocument.activeElement != this.input_)
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/search/
H A Dsearch_box.js28 this.input_ = null;
62 this.input_.value = query.trim();
67 this.input_.focus();
73 this.tracker.add(this.input_, 'keydown', this.onInputKeyDown_.bind(this));
79 this.input_ = null;
84 this.input_ = this.getElement().getElementsByClassName(
93 return this.input_.value.trim();
/external/chromium_org/tools/gn/
H A Dtokenizer.h58 bool CanIncrement() const { return cur_ < input_.size(); }
70 bool at_end() const { return cur_ == input_.size(); }
71 char cur_char() const { return input_[cur_]; }
76 const base::StringPiece input_; member in class:Tokenizer
H A Dtokenizer.cc46 input_(input_file->contents()),
89 base::StringPiece(&input_.data()[token_begin],
161 char following_char = input_[cur_ + 1];
219 if (CanIncrement() && CouldBeTwoCharOperatorEnd(input_[cur_ + 1]))
251 char c = input_[cur_];
264 for (int i = static_cast<int>(cur_) - 1; i >= 0 && input_[i] == '\\'; i--)
273 return IsNewline(input_, cur_);
277 DCHECK(cur_ < input_.size());
300 } else if (cur_char() == '/' && cur_ + 1 < input_.size() &&
301 (input_[cur
[all...]
/external/chromium/chrome/browser/ui/
H A Dinput_window_dialog_gtk.cc40 GtkWidget* input_; member in class:InputWindowDialogGtk
71 input_ = gtk_entry_new();
72 gtk_entry_set_text(GTK_ENTRY(input_), contents.c_str());
73 g_signal_connect(input_, "changed",
75 g_object_set(G_OBJECT(input_), "activates-default", TRUE, NULL);
76 gtk_box_pack_start(GTK_BOX(hbox), input_, TRUE, TRUE, 0); local
115 std::wstring value(UTF8ToWide(gtk_entry_get_text(GTK_ENTRY(input_))));
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc297 : input_(input) {
304 input_->read(reinterpret_cast<char*>(buffer), size);
305 int result = input_->gcount();
306 if (result == 0 && input_->fail() && !input_->eof()) {
416 : input_(input), limit_(limit) {}
420 if (limit_ < 0) input_->BackUp(-limit_);
425 if (!input_->Next(data, size)) return false;
437 input_->BackUp(count - limit_);
440 input_
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc296 : input_(input) {
303 input_->read(reinterpret_cast<char*>(buffer), size);
304 int result = input_->gcount();
305 if (result == 0 && input_->fail() && !input_->eof()) {
415 : input_(input), limit_(limit) {}
419 if (limit_ < 0) input_->BackUp(-limit_);
424 if (!input_->Next(data, size)) return false;
436 input_->BackUp(count - limit_);
439 input_
[all...]
/external/chromium/net/tools/dump_cache/
H A Dupgrade.cc135 IoBuffer* input_; member in class:__anon3240::BaseSM
147 input_ = reinterpret_cast<IoBuffer*>(in_buffer_.get());
183 if (!ReadFile(channel_, input_, kChannelSize, &read,
367 DCHECK(input_->msg.command == GET_PREV_ENTRY);
368 if (input_->msg.result != RESULT_OK)
371 if (!input_->msg.long_arg1) {
375 remote_entry_ = input_->msg.long_arg1;
386 DCHECK(input_->msg.command == GET_KEY);
387 if (input_->msg.result == RESULT_NAME_OVERFLOW) {
393 if (input_
[all...]
/external/chromium_org/net/tools/dump_cache/
H A Dupgrade_win.cc139 IoBuffer* input_; member in class:__anon9155::BaseSM
151 input_ = reinterpret_cast<IoBuffer*>(in_buffer_.get());
187 if (!ReadFile(channel_, input_, kChannelSize, &read,
361 DCHECK(input_->msg.command == GET_PREV_ENTRY);
362 if (input_->msg.result != RESULT_OK)
365 if (!input_->msg.long_arg1) {
369 remote_entry_ = input_->msg.long_arg1;
380 DCHECK(input_->msg.command == GET_KEY);
381 if (input_->msg.result == RESULT_NAME_OVERFLOW) {
387 if (input_
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser.cc97 : input_(NULL),
111 return input_->current().text == text;
115 return input_->current().type == token_type;
124 input_->Next();
151 *output = input_->current().text;
152 input_->Next();
163 if (!io::Tokenizer::ParseInteger(input_->current().text,
169 input_->Next();
194 if (!io::Tokenizer::ParseInteger(input_->current().text, max_value,
200 input_
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dparser.cc97 : input_(NULL),
111 return input_->current().text == text;
115 return input_->current().type == token_type;
124 input_->Next();
151 *output = input_->current().text;
152 input_->Next();
163 if (!io::Tokenizer::ParseInteger(input_->current().text,
169 input_->Next();
180 if (!io::Tokenizer::ParseInteger(input_->current().text, max_value,
186 input_
[all...]
H A Dparser_unittest.cc104 input_.reset(new io::Tokenizer(raw_input_.get(), &error_collector_));
117 parser_->Parse(input_.get(), &actual);
118 EXPECT_EQ(io::Tokenizer::TYPE_END, input_->current().type);
135 EXPECT_EQ(io::Tokenizer::TYPE_END, input_->current().type);
143 parser_->Parse(input_.get(), &file);
157 parser_->Parse(input_.get(), &file);
158 EXPECT_EQ(io::Tokenizer::TYPE_END, input_->current().type);
172 scoped_ptr<io::Tokenizer> input_; member in class:google::protobuf::compiler::__anon23953::ParserTest
185 EXPECT_TRUE(parser_->Parse(input_.get(), NULL));
195 EXPECT_TRUE(parser_->Parse(input_
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dsearch_provider.cc85 AutocompleteInput::RemoveForcedQueryStringIfNecessary(input_.type(),
122 input_.initial_prevent_inline_autocomplete(), &match_map);
176 (input_.original_text() != input.original_text())) {
198 input_ = input;
220 providers_.default_provider(), input_.text()));
269 is_keyword_results ? keyword_input_text_ : input_.text();
310 input_.text(),
333 input_.matches_requested() == AutocompleteInput::ALL_MATCHES)))
340 if (input_.matches_requested() != AutocompleteInput::ALL_MATCHES)
369 if (input_
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/
H A Drule_list.js77 input_: null,
149 this.input_ = input;
200 this.input_.value = this.pattern;
218 var livePattern = this.input_.value;
229 var newPattern = this.input_.value;
293 this.input_.value = '';
298 return this.input_.value != '';
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Ddialogs.js262 this.input_ = this.document_.createElement('input');
263 this.input_.setAttribute('type', 'text');
264 this.input_.addEventListener('focus', this.onInputFocus.bind(this));
265 this.input_.addEventListener('keydown', this.onKeyDown_.bind(this));
266 this.initialFocusElement_ = this.input_;
267 this.frame_.insertBefore(this.input_, this.text_.nextSibling);
273 this.input_.select();
285 this.input_.value = defaultValue || '';
291 return this.input_.value;
/external/chromium_org/chrome/browser/autocomplete/
H A Dsearch_provider.cc522 input_ = input;
607 providers_.GetDefaultProviderURL(), input_));
631 input_.current_page_classification()))
653 url_db->GetMostRecentKeywordSearchTerms(default_url->id(), input_.text(),
679 input_.matches_requested() == AutocompleteInput::ALL_MATCHES)))
689 if (input_.matches_requested() != AutocompleteInput::ALL_MATCHES)
720 if (input_.type() == AutocompleteInput::FORCED_QUERY)
733 if (!LowerCaseEqualsASCII(input_.scheme(), chrome::kHttpScheme) &&
734 !LowerCaseEqualsASCII(input_.scheme(), chrome::kHttpsScheme) &&
735 !LowerCaseEqualsASCII(input_
[all...]
H A Dautocomplete_controller.h129 const AutocompleteInput& input() const { return input_; }
203 AutocompleteInput input_; member in class:AutocompleteController
/external/chromium_org/v8/src/arm/
H A Ddeoptimizer-arm.cc234 unsigned input_frame_size = input_->GetFrameSize();
283 uint32_t input_value = input_->GetFrameSlot(input_offset);
307 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
320 output_[0] = input_;
324 output_[0]->SetRegister(fp.code(), input_->GetRegister(fp.code()));
325 output_[0]->SetRegister(cp.code(), input_->GetRegister(cp.code()));
352 input_->SetRegister(i, i * 4);
354 input_->SetRegister(sp.code(), reinterpret_cast<intptr_t>(frame->sp()));
355 input_->SetRegister(fp.code(), reinterpret_cast<intptr_t>(frame->fp()));
357 input_
[all...]
/external/chromium_org/v8/src/mips/
H A Ddeoptimizer-mips.cc219 unsigned input_frame_size = input_->GetFrameSize();
268 uint32_t input_value = input_->GetFrameSlot(input_offset);
292 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
305 output_[0] = input_;
309 output_[0]->SetRegister(fp.code(), input_->GetRegister(fp.code()));
310 output_[0]->SetRegister(cp.code(), input_->GetRegister(cp.code()));
337 input_->SetRegister(i, i * 4);
339 input_->SetRegister(sp.code(), reinterpret_cast<intptr_t>(frame->sp()));
340 input_->SetRegister(fp.code(), reinterpret_cast<intptr_t>(frame->fp()));
342 input_
[all...]
/external/chromium_org/v8/src/x64/
H A Ddeoptimizer-x64.cc225 unsigned input_frame_size = input_->GetFrameSize();
274 intptr_t input_value = input_->GetFrameSlot(input_offset);
298 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
311 output_[0] = input_;
315 output_[0]->SetRegister(rbp.code(), input_->GetRegister(rbp.code()));
316 output_[0]->SetRegister(rsi.code(), input_->GetRegister(rsi.code()));
343 input_->SetRegister(i, i * 4);
345 input_->SetRegister(rsp.code(), reinterpret_cast<intptr_t>(frame->sp()));
346 input_->SetRegister(rbp.code(), reinterpret_cast<intptr_t>(frame->fp()));
348 input_
[all...]
/external/v8/src/
H A Dunicode-inl.h213 buffer_ = R::ReadBlock(input_, util_buffer_, s, &remaining_, &offset_);
218 Reset(input_);
223 input_ = input;
227 buffer_ = R::ReadBlock(input_, util_buffer_, s, &remaining_, &offset_);
238 buffer_ = R::ReadBlock(input_, util_buffer_, s, &remaining_, &offset_);
/external/v8/src/arm/
H A Ddeoptimizer-arm.cc250 unsigned input_frame_size = input_->GetFrameSize();
299 uint32_t input_value = input_->GetFrameSlot(input_offset);
323 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
336 output_[0] = input_;
340 output_[0]->SetRegister(fp.code(), input_->GetRegister(fp.code()));
341 output_[0]->SetRegister(cp.code(), input_->GetRegister(cp.code()));
598 unsigned input_frame_size = input_->GetFrameSize();
620 input_->GetRegister(fp.code()) - (2 * kPointerSize) - height_in_bytes;
648 value = input_->GetFrameSlot(input_offset);
665 value = input_
[all...]
/external/v8/src/ia32/
H A Ddeoptimizer-ia32.cc341 unsigned input_frame_size = input_->GetFrameSize();
390 uint32_t input_value = input_->GetFrameSlot(input_offset);
413 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
426 output_[0] = input_;
430 output_[0]->SetRegister(ebp.code(), input_->GetRegister(ebp.code()));
431 output_[0]->SetRegister(esi.code(), input_->GetRegister(esi.code()));
677 unsigned input_frame_size = input_->GetFrameSize();
699 input_->GetRegister(ebp.code()) - (2 * kPointerSize) - height_in_bytes;
727 value = input_->GetFrameSlot(input_offset);
744 value = input_
[all...]
/external/v8/src/mips/
H A Ddeoptimizer-mips.cc240 unsigned input_frame_size = input_->GetFrameSize();
289 uint32_t input_value = input_->GetFrameSlot(input_offset);
313 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
326 output_[0] = input_;
330 output_[0]->SetRegister(fp.code(), input_->GetRegister(fp.code()));
331 output_[0]->SetRegister(cp.code(), input_->GetRegister(cp.code()));
588 unsigned input_frame_size = input_->GetFrameSize();
610 input_->GetRegister(fp.code()) - (2 * kPointerSize) - height_in_bytes;
638 value = input_->GetFrameSlot(input_offset);
655 value = input_
[all...]
/external/v8/src/x64/
H A Ddeoptimizer-x64.cc227 unsigned input_frame_size = input_->GetFrameSize();
276 intptr_t input_value = input_->GetFrameSlot(input_offset);
300 output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
313 output_[0] = input_;
317 output_[0]->SetRegister(rbp.code(), input_->GetRegister(rbp.code()));
318 output_[0]->SetRegister(rsi.code(), input_->GetRegister(rsi.code()));
576 unsigned input_frame_size = input_->GetFrameSize();
598 input_->GetRegister(rbp.code()) - (2 * kPointerSize) - height_in_bytes;
626 value = input_->GetFrameSlot(input_offset);
644 value = input_
[all...]

Completed in 864 milliseconds

123