HomeSort by relevance Sort by last modified time
    Searched refs:child_ (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/views/
native_widget_win_interactive_uitest.cc 35 scoped_ptr<views::Widget> child_; member in class:NativeWidgetWinTest
57 child_(NULL),
66 EXPECT_EQ(child_->GetNativeView(), ::GetFocus());
74 EXPECT_EQ(child_->GetNativeView(), ::GetFocus());
81 child_ = new views::Widget();
85 child_->Init(child_params);
91 native_view_host_->Attach(child_->GetNativeView());
95 views::Widget* child_; member in class:NativeWidgetWinTest1
  /external/chromium_org/ui/views/test/
child_modal_window.cc 116 child_(NULL) {
134 if (!child_)
135 child_ = CreateChild();
136 child_->Show();
144 if (child_)
145 return child_->GetNativeView();
171 if (child_) {
172 child_->RemoveObserver(this);
173 child_->Close();
174 child_ = NULL
    [all...]
child_modal_window.h 67 Widget* child_; member in class:views::test::ChildModalParent
  /external/chromium_org/sandbox/win/src/
Wow64.h 22 : child_(child), ntdll_(ntdll), dll_load_(NULL), continue_load_(NULL) {}
41 TargetProcess* child_; // Child process. member in class:sandbox::Wow64
Wow64.cc 104 if (!::DuplicateHandle(current_process, dll_load_, child_->Process(),
107 if (!::DuplicateHandle(current_process, continue_load_, child_->Process(),
111 void* buffer = ::VirtualAllocEx(child_->Process(), NULL, page_size,
122 if (!::WriteProcessMemory(child_->Process(), patch_info, &local_patch_info,
136 return Restore64Code(child_->Process(), patch_info);
153 L"wow_helper.exe\" " << child_->ProcessId() << " " <<
180 if (1 != ::ResumeThread(child_->MainThread())) {
195 if (::SuspendThread(child_->MainThread()))
211 if (!::ReadProcessMemory(child_->Process(), ntdll_, &buffer, kBufferSize,
interception.cc 66 : child_(child_process), names_used_(false), relaxed_(relaxed) {
67 child_->AddRef();
70 child_->Release();
137 ResultCode rc = child_->TransferVariable("g_interceptions",
192 shared_memory->interceptor_base = names_used_ ? child_->MainModule() : NULL;
325 HANDLE child = child_->Process();
386 HANDLE child = child_->Process();
435 ResultCode ret = child_->TransferVariable("g_originals", g_originals,
463 Wow64 WowHelper(child_, ntdll_base);
471 interceptor_base = reinterpret_cast<char*>(child_->MainModule())
    [all...]
interception.h 208 TargetProcess* child_; member in class:sandbox::InterceptionManager
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_occlusion.cc 55 child_(TestLayer::Create()),
103 scoped_refptr<TestLayer> child_; member in class:cc::__anon6576::LayerTreeHostOcclusionTest
122 child_.get(), root_.get(), identity_matrix_,
125 grand_child_.get(), child_.get(), identity_matrix_,
128 child_->SetMasksToBounds(true);
129 child_->SetForceRenderSurface(true);
131 child_->set_expected_occlusion(gfx::Rect(0, 0, 10, 190));
152 child_.get(), root_.get(), identity_matrix_,
155 grand_child_.get(), child_.get(), identity_matrix_,
158 child_->SetMasksToBounds(true)
    [all...]
layer_tree_host_unittest_damage.cc 189 child_ = FakeContentLayer::Create(&client_);
192 child_->SetPosition(gfx::Point(100, 100));
193 child_->SetBounds(gfx::Size(30, 30));
195 root_->AddChild(child_);
247 EXPECT_EQ(gfx::RectF(child_->position(), child_->bounds()).ToString(),
274 child_->SetNeedsDisplayRect(child_damage_rect_);
283 scoped_refptr<FakeContentLayer> child_; member in class:cc::__anon6574::LayerTreeHostDamageTestForcedFullDamage
layer_tree_host_unittest.cc 1381 scoped_refptr<FakeContentLayer> child_; member in class:cc::__anon6571::LayerTreeHostTestAtomicCommitWithPartialUpdate
3537 scoped_refptr<PushPropertiesCountingLayer> child_; member in class:cc::__anon6571::LayerTreeHostTestLayersPushProperties
3644 scoped_refptr<PushPropertiesCountingLayer> child_; member in class:cc::__anon6571::LayerTreeHostTestCasePushPropertiesThreeGrandChildren
    [all...]
  /external/chromium_org/ui/views/controls/native/
native_view_host_aura_unittest.cc 32 return child_.get();
45 child_.reset(new Widget);
49 child_->Init(child_params);
50 child_->SetContentsView(test_view);
55 host_->Attach(child_->GetNativeView());
65 scoped_ptr<Widget> child_; member in class:views::NativeViewHostAuraTest
  /external/chromium_org/ui/views/animation/
bounds_animator_unittest.cc 94 BoundsAnimatorTest() : child_(new TestView()), animator_(&parent_) {
95 parent_.AddChildView(child_);
99 TestView* child() { return child_; }
105 TestView* child_; // Owned by |parent_|. member in class:views::BoundsAnimatorTest
  /external/chromium_org/base/process/
kill_posix.cc 418 : child_(child),
431 pid_t r = HANDLE_EINTR(waitpid(child_, NULL, 0));
432 if (r != child_) {
433 DPLOG(ERROR) << "While waiting for " << child_
445 if (IsChildDead(child_))
449 if (kill(child_, SIGKILL) == 0) {
452 if (HANDLE_EINTR(waitpid(child_, NULL, 0)) < 0)
455 DLOG(ERROR) << "While waiting for " << child_ << " to terminate we"
461 const pid_t child_; member in class:base::__anon6268::BackgroundReaper
463 // kill |child_|
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
slide_animator_gtk.cc 17 // If |control_child_size| is true, then we want |child_| to match the width
18 // of the |widget_|, but the height of |child_| should not change.
35 : child_(child),
43 // |child_| every time the |widget_| changes sizes. This is mainly useful
117 gtk_widget_size_request(child_, &req);
123 child_, 0, showing_height - req.height); local
slide_animator_gtk.h 106 GtkWidget* child_; member in class:SlideAnimatorGtk
  /external/chromium_org/chrome/browser/ui/gtk/
slide_animator_gtk.cc 17 // If |control_child_size| is true, then we want |child_| to match the width
18 // of the |widget_|, but the height of |child_| should not change.
35 : child_(child),
43 // |child_| every time the |widget_| changes sizes. This is mainly useful
117 gtk_widget_size_request(child_, &req);
124 child_, 0, showing_height - req.height); local
slide_animator_gtk.h 106 GtkWidget* child_; member in class:SlideAnimatorGtk
  /external/chromium/net/disk_cache/
sparse_control.cc 188 child_(NULL),
198 if (child_)
432 if (child_) {
434 if (key == child_->GetKey())
443 child_ = entry_->backend_->OpenEntryImpl(key);
444 if (!child_)
447 EntryImpl* child = static_cast<EntryImpl*>(child_);
457 int rv = child_->ReadData(kSparseIndex, 0, buf, sizeof(child_data_), NULL);
480 int rv = child_->WriteData(kSparseIndex, 0, buf, sizeof(child_data_),
484 child_->Release()
    [all...]
sparse_control.h 149 EntryImpl* child_; // The current child entry. member in class:disk_cache::SparseControl
159 SparseData child_data_; // Parent and allocation map of child_.
  /external/chromium_org/net/disk_cache/
sparse_control.cc 189 child_(NULL),
207 if (child_)
446 if (child_) {
448 if (key == child_->GetKey())
460 child_ = entry_->backend_->OpenEntryImpl(key);
461 if (!child_)
464 EntryImpl* child = static_cast<EntryImpl*>(child_);
474 int rv = child_->ReadData(kSparseIndex, 0, buf.get(), sizeof(child_data_),
498 int rv = child_->WriteData(kSparseIndex, 0, buf.get(), sizeof(child_data_),
502 child_->Release()
    [all...]
sparse_control.h 150 EntryImpl* child_; // The current child entry. member in class:disk_cache::SparseControl
160 SparseData child_data_; // Parent and allocation map of child_.
  /external/chromium_org/net/disk_cache/v3/
sparse_control_v3.cc 191 child_(NULL),
209 if (child_)
450 if (child_) {
452 if (key == child_->GetKey())
464 child_ = entry_->backend_->OpenEntryImpl(key);
465 if (!child_)
468 EntryImpl* child = static_cast<EntryImpl*>(child_);
478 int rv = child_->ReadData(kSparseIndex, 0, buf.get(), sizeof(child_data_),
502 int rv = child_->WriteData(kSparseIndex, 0, buf.get(), sizeof(child_data_),
507 child_->Release()
    [all...]
sparse_control_v3.h 148 EntryImpl* child_; // The current child entry. member in class:disk_cache::SparseControl
158 SparseData child_data_; // Parent and allocation map of child_.
  /external/chromium_org/ppapi/tests/
test_instance_deprecated.cc 203 child_ = pp::VarPrivate(i->instance(),
210 child_ = pp::VarPrivate(i->instance(),
213 i->IgnoreLeakedVar(child_.pp_var().value.as_id);
217 pp::VarPrivate child_; member in class:ObjectWithChildren
  /external/chromium_org/ui/gfx/
interpolated_transform.cc 97 if (child_.get()) {
98 result.ConcatTransform(child_->Interpolate(t));
104 child_.reset(child);

Completed in 400 milliseconds

1 2