Searched refs:target_ (Results 1 - 25 of 136) sorted by relevance

123456

/external/chromium_org/content/renderer/
H A Dmouse_lock_dispatcher_browsertest.cc34 target_ = new MockLockTarget();
40 delete target_;
48 MockLockTarget* target_; member in class:content::__anon7774::MouseLockDispatcherTest
78 EXPECT_CALL(*target_, OnLockMouseACK(true));
79 EXPECT_CALL(*target_, HandleMouseLockedInputEvent(_));
80 EXPECT_CALL(*target_, OnMouseLockLost());
81 EXPECT_CALL(*target_, OnLockMouseACK(false));
85 EXPECT_FALSE(dispatcher()->IsMouseLockedTo(target_));
88 EXPECT_TRUE(dispatcher()->LockMouse(target_));
90 EXPECT_TRUE(dispatcher()->IsMouseLockedTo(target_));
[all...]
H A Dmouse_lock_dispatcher.cc16 target_(NULL) {
27 target_ = target;
35 if (target && target == target_ && !pending_unlock_request_) {
50 if (target == target_) {
52 target_ = NULL;
57 return mouse_locked_ && target_ == target;
62 if (mouse_locked_ && target_)
63 return target_->HandleMouseLockedInputEvent(event);
79 LockTarget* last_target = target_;
81 target_
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Ddrag_selector.js18 this.target_ = null;
103 if (!list.selectionModel_.multiple || this.target_)
107 this.target_ = list;
116 this.originalSelection_ = this.target_.selectionModel_.selectedIndexes;
120 this.border_ = this.target_.ownerDocument.createElement('div');
131 this.target_.selectionModel_.unselectAll();
135 this.target_.ownerDocument.addEventListener(
137 this.target_.ownerDocument.addEventListener(
139 cr.dispatchSimpleEvent(this.target_, 'dragselectionstart');
149 var pos = DragSelector.getScrolledPosition(this.target_, even
[all...]
/external/chromium_org/tools/gn/
H A Dcopy_target_generator.cc24 target_->set_output_type(Target::COPY_FILES);
31 if (target_->sources().empty()) {
36 if (target_->action_values().outputs().list().size() != 1) {
H A Dgroup_target_generator.cc21 target_->set_output_type(Target::GROUP);
31 std::swap(target_->private_deps(), target_->public_deps());
H A Dninja_copy_target_writer.cc26 const Tool* copy_tool = target_->toolchain()->GetTool(Toolchain::TYPE_COPY);
31 target_->toolchain()->label().GetUserVisibleName(false) +
32 "\n used by target " + target_->label().GetUserVisibleName(false) +
37 const Tool* stamp_tool = target_->toolchain()->GetTool(Toolchain::TYPE_STAMP);
42 target_->toolchain()->label().GetUserVisibleName(false) +
43 "\n used by target " + target_->label().GetUserVisibleName(false) +
63 CHECK(target_->action_values().outputs().list().size() == 1);
65 target_->action_values().outputs();
95 for (size_t i = 0; i < target_->sources().size(); i++) {
96 const SourceFile& input_file = target_
[all...]
H A Dninja_target_writer.cc29 target_(target),
90 target_, SUBSTITUTION_LABEL)
99 target_, SUBSTITUTION_ROOT_GEN_DIR)
108 target_, SUBSTITUTION_ROOT_OUT_DIR)
117 target_, SUBSTITUTION_TARGET_GEN_DIR)
126 target_, SUBSTITUTION_TARGET_OUT_DIR)
135 target_, SUBSTITUTION_TARGET_OUTPUT_NAME)
148 CHECK(target_->toolchain())
150 << target_->label().GetUserVisibleName(true);
154 bool list_sources_as_input_deps = (target_
[all...]
H A Dconfig_values_extractors.h32 : target_(target),
37 return cur_index_ >= static_cast<int>(target_->configs().size());
42 return target_->config_values();
43 return target_->configs()[cur_index_].ptr->config_values();
51 return target_->configs()[cur_index_].origin;
63 return target_->configs()[cur_index_].ptr;
67 const Target* target_; member in class:ConfigValuesIterator
69 // Represents an index into the target_'s configs() or, when -1, the config
H A Dbinary_target_generator.cc29 target_->set_output_type(output_type_);
59 ConfigValuesGenerator gen(&target_->config_values(), scope_,
72 target_->set_check_includes(value->boolean_value());
77 if (target_->output_type() == Target::STATIC_LIBRARY) {
83 target_->set_complete_static_lib(value->boolean_value());
94 target_->set_output_name(value->string_value());
104 target_->set_output_extension(value->string_value());
123 for (DepsIterator iter(target_, DepsIterator::LINKED_ONLY);
142 target_->allow_circular_includes_from().insert(circular[i]);
H A Daction_target_generator.cc30 target_->set_output_type(output_type_);
34 if (output_type_ == Target::ACTION_FOREACH && target_->sources().empty()) {
81 target_->action_values().set_script(script_file);
89 return target_->action_values().args().Parse(*value, err_);
103 target_->action_values().set_depfile(depfile);
108 const SubstitutionList& outputs = target_->action_values().outputs();
H A Dninja_action_target_writer.cc35 for (DepsIterator iter(target_, DepsIterator::LINKED_ONLY);
51 if (target_->output_type() == Target::ACTION_FOREACH) {
55 DCHECK(target_->output_type() == Target::ACTION);
61 settings_, target_->action_values().outputs(), &output_files);
72 if (target_->action_values().has_depfile()) {
84 for (size_t i = 0; i < target_->data_deps().size(); i++)
85 data_outs.push_back(target_->data_deps()[i].ptr->dependency_output_file());
95 std::string target_label = target_->label().GetUserVisibleName(true);
100 const SubstitutionList& args = target_->action_values().args();
107 if (!target_
[all...]
H A Dninja_group_target_writer.cc25 for (DepsIterator iter(target_, DepsIterator::LINKED_ONLY);
30 const LabelTargetVector& data_deps = target_->data_deps();
H A Dtarget_generator.cc28 : target_(target),
51 if (!Visibility::FillItemVisibility(target_, scope_, err_))
145 target_->sources().swap(dest_sources);
155 target_->set_all_headers_public(false);
161 target_->public_headers().swap(dest_public);
180 target_->inputs().swap(dest_inputs);
185 return FillGenericConfigs(variables::kConfigs, &target_->configs());
190 &target_->all_dependent_configs()))
193 &target_->public_configs()))
200 &target_
[all...]
/external/chromium-trace/trace-viewer/src/ui/
H A Ddrag_handle.js29 this.target_ = undefined;
37 return this.target_.className == '' ? '.' : this.target_.className;
41 return this.target_;
46 this.target_ = target;
47 if (!this.target_)
49 this.observer_.observe(this.target_, {
90 this.target_.style[this.targetStyleKey_] = '';
100 if (!this.target_.style[targetStyleKey]) {
101 this.target_
[all...]
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Ddrag_wrapper.js33 this.target_ = target;
54 return this.target_.classList.contains('drag-target');
58 * Handler for dragenter events fired on |target_|.
65 this.target_.classList.add('drag-target');
79 * Thunk for dragover events fired on |target_|.
84 if (!this.target_.classList.contains('drag-target'))
90 * Thunk for drop events fired on |target_|.
96 if (!this.target_.classList.contains('drag-target'))
98 this.target_.classList.remove('drag-target');
103 * Thunk for dragleave events fired on |target_|
[all...]
/external/chromium_org/chrome/installer/setup/
H A Darchive_patch_helper.cc22 target_(target) {}
40 DCHECK(!base::PathExists(target_));
65 target_.value().c_str());
72 << " and generating file " << target_.value()
76 base::DeleteFile(target_, false);
89 target_.value().c_str());
96 << " and generating file " << target_.value()
100 base::DeleteFile(target_, false);
/external/chromium_org/chrome/test/remoting/
H A Dpage_load_notification_observer.cc18 target_(target) {
26 return controller->GetWebContents()->GetURL() == target_;
H A Dpage_load_notification_observer.h28 GURL target_; member in class:remoting::PageLoadNotificationObserver
/external/chromium_org/remoting/base/
H A Dcompound_buffer_unittest.cc38 target_.Append(data_.get(), data_->data() + pos, size);
42 target_.AppendCopyOf(data_->data() + pos, size);
46 target_.Prepend(data_.get(), data_->data() + kDataSize - pos - size, size);
50 target_.PrependCopyOf(data_->data() + (kDataSize - pos - size), size);
55 copy.CopyFrom(target_, pos, pos + size);
61 cropped.CopyFrom(target_, 0, target_.total_bytes());
64 target_.total_bytes() - pos));
69 cropped.CopyFrom(target_, 0, target_
176 CompoundBuffer target_; member in class:remoting::CompoundBufferTest
[all...]
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Denv.h276 explicit EnvWrapper(Env* t) : target_(t) { }
280 Env* target() const { return target_; }
284 return target_->NewSequentialFile(f, r);
287 return target_->NewRandomAccessFile(f, r);
290 return target_->NewWritableFile(f, r);
292 bool FileExists(const std::string& f) { return target_->FileExists(f); }
294 return target_->GetChildren(dir, r);
296 Status DeleteFile(const std::string& f) { return target_->DeleteFile(f); }
297 Status CreateDir(const std::string& d) { return target_->CreateDir(d); }
298 Status DeleteDir(const std::string& d) { return target_
328 Env* target_; member in class:leveldb::EnvWrapper
[all...]
/external/chromium_org/base/files/
H A Dfile_path_watcher_win.cc67 FilePath target_; member in class:base::__anon2255::FilePathWatcherImpl
92 DCHECK(target_.value().empty()); // Can only watch one path.
96 target_ = path;
101 if (GetFileInfo(target_, &file_info)) {
154 callback_.Run(target_, true /* error */);
158 // Check whether the event applies to |target_| and notify the callback.
160 bool file_exists = GetFileInfo(target_, &file_info);
162 // Only the mtime of |target_| is tracked but in a recursive watch,
168 callback_.Run(target_, false);
173 callback_.Run(target_, fals
[all...]
/external/chromium_org/ui/gl/
H A Dscoped_binders.cc36 target_(target),
55 glBindTexture(target_, id);
62 state_restorer_->RestoreActiveTextureUnitBinding(target_);
64 glBindTexture(target_, old_id_);
H A Dgl_image_android_native_buffer.cc16 target_(0),
56 if (target_ && target_ != target) {
60 target_ = target;
66 glEGLImageTargetTexture2DOES(target_, egl_image_);
75 glEGLImageTargetTexture2DOES(target_, egl_image_);
115 glEGLImageTargetTexture2DOES(target_, egl_image_for_unbind_);
/external/chromium_org/jingle/glue/
H A Dchannel_socket_adapter_unittest.cc70 target_.reset(new TransportChannelSocketAdapter(&channel_));
78 scoped_ptr<TransportChannelSocketAdapter> target_; member in class:jingle_glue::TransportChannelSocketAdapterTest
88 int result = target_->Read(buffer.get(), kBufferSize, callback_);
100 int result = target_->Read(buffer.get(), kBufferSize, callback_);
103 target_->Close(kTestError);
107 EXPECT_EQ(kTestError, target_->Read(buffer.get(), kBufferSize, callback_));
117 int result = target_->Write(buffer.get(), kTestDataSize, callback_);
133 int result = target_->Write(buffer.get(), kTestDataSize, callback_);
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_tree_browser_cell.h21 id target_; // weak variable

Completed in 4861 milliseconds

123456