Searched defs:target (Results 126 - 150 of 2412) sorted by relevance

1234567891011>>

/external/chromium_org/cc/resources/
H A Dtexture_mailbox.cc21 uint32 target,
23 : mailbox_holder_(mailbox, target, sync_point),
20 TextureMailbox(const gpu::Mailbox& mailbox, uint32 target, uint32 sync_point) argument
/external/chromium_org/chrome/browser/ui/views/
H A Djavascript_app_modal_event_blocker_x11.cc47 ui::EventTarget* target) {
49 // -|target| is a browser window or a transient child of a browser window.
50 // -|target| is not the browser window which hosts |modal_window_| and not
56 GetTopmostTransientParent(static_cast<aura::Window*>(target));
65 if (ShouldStopPropagationTo(event->target()))
71 ShouldStopPropagationTo(event->target())) {
79 if (ShouldStopPropagationTo(event->target()))
85 ShouldStopPropagationTo(event->target())) {
46 ShouldStopPropagationTo( ui::EventTarget* target) argument
/external/chromium_org/chrome/installer/setup/
H A Darchive_patch_helper.cc18 const base::FilePath& target)
22 target_(target) {}
31 const base::FilePath& target) {
33 patch_source, target);
39 // The target shouldn't already exist.
15 ArchivePatchHelper(const base::FilePath& working_directory, const base::FilePath& compressed_archive, const base::FilePath& patch_source, const base::FilePath& target) argument
27 UncompressAndPatch( const base::FilePath& working_directory, const base::FilePath& compressed_archive, const base::FilePath& patch_source, const base::FilePath& target) argument
H A Darchive_patch_helper.h33 // |patch_source|, writing the result to |target|.
37 const base::FilePath& target);
42 // extracted patch file to |patch_source|, writing the result to |target|.
48 const base::FilePath& target);
56 // patch_source() to generate target(). Returns false if patching fails.
60 // to generate target(). Returns false if patching fails.
72 const base::FilePath& target() const { function in class:installer::ArchivePatchHelper
/external/chromium_org/chrome/installer/util/
H A Dfake_installation_state.h46 ProductState& target = GetProducts(system_install)[IndexFromDistType(type)]; local
47 target.CopyFrom(product_state);
/external/chromium_org/components/omaha_query_params/
H A Domaha_query_params_unittest.cc16 bool Contains(const std::string& source, const std::string& target) { argument
17 return source.find(target) != std::string::npos;
/external/chromium_org/content/browser/compositor/
H A Downed_mailbox.h28 uint32 target() const { return mailbox_holder_.texture_target; } function in class:content::OwnedMailbox
/external/chromium_org/content/browser/renderer_host/input/
H A Dsynthetic_tap_gesture.cc24 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
28 gesture_source_type_ = target->GetDefaultSyntheticGestureSourceType();
36 ForwardTouchOrMouseInputEvents(timestamp, target);
45 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
48 Press(target, timestamp);
51 Release(target, timestamp);
60 Release(target, start_time_ + GetDuration());
71 void SyntheticTapGesture::Press(SyntheticGestureTarget* target, argument
76 target->DispatchInputEventToPlatform(touch_event_);
85 target
23 ForwardInputEvents( const base::TimeTicks& timestamp, SyntheticGestureTarget* target) argument
44 ForwardTouchOrMouseInputEvents( const base::TimeTicks& timestamp, SyntheticGestureTarget* target) argument
91 Release(SyntheticGestureTarget* target, const base::TimeTicks& timestamp) argument
[all...]
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DOrientationChangeObserverCriteria.java28 public OrientationChangeObserverCriteria(MockOrientationObserver observer, int target) { argument
32 mTarget = target;
/external/chromium_org/content/renderer/
H A Dmouse_lock_dispatcher.cc22 bool MouseLockDispatcher::LockMouse(LockTarget* target) { argument
27 target_ = target;
34 void MouseLockDispatcher::UnlockMouse(LockTarget* target) { argument
35 if (target && target == target_ && !pending_unlock_request_) {
38 // When a target application voluntarily unlocks the mouse we permit
49 void MouseLockDispatcher::OnLockTargetDestroyed(LockTarget* target) { argument
50 if (target == target_) {
51 UnlockMouse(target);
56 bool MouseLockDispatcher::IsMouseLockedTo(LockTarget* target) { argument
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dgl_state_restorer_impl.cc37 void GLStateRestorerImpl::RestoreActiveTextureUnitBinding(unsigned int target) { argument
39 decoder_->RestoreActiveTextureUnitBinding(target);
H A Dmailbox_manager.h32 Texture* ConsumeTexture(unsigned target, const Mailbox& mailbox);
35 void ProduceTexture(unsigned target,
57 TargetName(unsigned target, const Mailbox& mailbox);
58 unsigned target; member in struct:gpu::gles2::MailboxManager::TargetName
/external/chromium_org/net/http/
H A Dhttp_auth_filter.cc29 HttpAuth::Target target) {
30 if ((target != HttpAuth::AUTH_SERVER) && (target != HttpAuth::AUTH_PROXY))
33 if (target == HttpAuth::AUTH_PROXY)
44 HttpAuth::Target target) const {
45 if ((target != HttpAuth::AUTH_SERVER) && (target != HttpAuth::AUTH_PROXY))
48 if (target == HttpAuth::AUTH_PROXY)
28 AddFilter(const std::string& filter, HttpAuth::Target target) argument
H A Dhttp_auth_filter_unittest.cc32 HttpAuth::Target target; member in struct:net::__anon9257::UrlData
77 EXPECT_EQ(urls[i].target == HttpAuth::AUTH_PROXY,
78 filter.IsValid(urls[i].url, urls[i].target))
94 EXPECT_EQ(urls[i].matches, filter.IsValid(urls[i].url, urls[i].target))
H A Dhttp_auth_handler_unittest.cc34 HttpAuth::Target target = local
45 mock_handler.InitFromChallenge(&tokenizer, target,
/external/chromium_org/remoting/host/
H A Daudio_silence_detector_unittest.cc16 void TestSilenceDetector(AudioSilenceDetector* target, argument
19 target->Reset(kSamplingRate, 1);
23 bool result = target->IsSilence(samples, samples_count);
47 AudioSilenceDetector target(0);
48 TestSilenceDetector(&target, kSamples, arraysize(kSamples), true);
54 AudioSilenceDetector target(0);
55 TestSilenceDetector(&target, kSamples, arraysize(kSamples), false);
/external/chromium_org/sandbox/win/src/
H A Dhandle_policy_test.cc26 // Attempts to duplicate an event handle into the target process.
37 // Get the target process ID.
49 TestRunner target; local
52 // Kick off an asynchronous target process for testing.
53 target.SetAsynchronous(true);
54 EXPECT_EQ(SBOX_TEST_SUCCEEDED, target.RunTest(L"Handle_WaitProcess 30000"));
58 target.process_id());
70 TestRunner target; local
73 // Kick off an asynchronous target process for testing.
74 target
[all...]
H A Dinterception_unittest.cc82 TargetProcess *target = MakeTestTargetProcess(::GetCurrentProcess(), local
85 InterceptionManager interceptions(target, true);
169 TargetProcess *target = MakeTestTargetProcess(::GetCurrentProcess(), local
172 InterceptionManager interceptions(target, true);
/external/chromium_org/sandbox/win/tests/validation_tests/
H A Dsuite.cc19 void TestProcessAccess(sandbox::TestRunner* runner, DWORD target) { argument
24 wsprintf(command, kCommandTemplate, target, PROCESS_CREATE_THREAD);
26 wsprintf(command, kCommandTemplate, target, PROCESS_DUP_HANDLE);
28 wsprintf(command, kCommandTemplate, target, PROCESS_SET_INFORMATION);
30 wsprintf(command, kCommandTemplate, target, PROCESS_VM_OPERATION);
32 wsprintf(command, kCommandTemplate, target, PROCESS_VM_READ);
34 wsprintf(command, kCommandTemplate, target, PROCESS_VM_WRITE);
36 wsprintf(command, kCommandTemplate, target, PROCESS_QUERY_INFORMATION);
38 wsprintf(command, kCommandTemplate, target, WRITE_DAC);
40 wsprintf(command, kCommandTemplate, target, WRITE_OWNE
155 TestRunner target; local
173 TestRunner target; local
195 TestRunner target; local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DBindingSecurity.cpp83 bool BindingSecurity::shouldAllowAccessToFrame(v8::Isolate* isolate, Frame* target, SecurityReportingOption reportingOption) argument
85 if (!target || !target->isLocalFrame())
87 return canAccessDocument(isolate, toLocalFrame(target)->document(), reportingOption);
90 bool BindingSecurity::shouldAllowAccessToFrame(v8::Isolate* isolate, Frame* target, ExceptionState& exceptionState) argument
92 if (!target || !target->isLocalFrame())
94 return canAccessDocument(isolate, toLocalFrame(target)->document(), exceptionState);
97 bool BindingSecurity::shouldAllowAccessToNode(v8::Isolate* isolate, Node* target, ExceptionState& exceptionState) argument
99 return target
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimation.h70 Element* target() { return m_target; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableFilterOperations.cpp40 const AnimatableFilterOperations* target = toAnimatableFilterOperations(value); local
41 return !operations().canInterpolateWith(target->operations());
49 const AnimatableFilterOperations* target = toAnimatableFilterOperations(value); local
52 size_t toSize = target->operations().size();
56 FilterOperation* to = (i < toSize) ? target->m_operations.operations()[i].get() : 0;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMutationObserverInterestGroup.cpp39 PassOwnPtrWillBeRawPtr<MutationObserverInterestGroup> MutationObserverInterestGroup::createIfNeeded(Node& target, MutationObserver::MutationType type, MutationRecordDeliveryOptions oldValueFlag, const QualifiedName* attributeName) argument
43 target.getRegisteredMutationObserversOfType(observers, type, attributeName);
H A DMutationObserverInterestGroup.h46 static PassOwnPtrWillBeRawPtr<MutationObserverInterestGroup> createForChildListMutation(Node& target) argument
48 if (!target.document().hasMutationObserversOfType(MutationObserver::ChildList))
52 return createIfNeeded(target, MutationObserver::ChildList, oldValueFlag);
55 static PassOwnPtrWillBeRawPtr<MutationObserverInterestGroup> createForCharacterDataMutation(Node& target) argument
57 if (!target.document().hasMutationObserversOfType(MutationObserver::CharacterData))
60 return createIfNeeded(target, MutationObserver::CharacterData, MutationObserver::CharacterDataOldValue);
63 static PassOwnPtrWillBeRawPtr<MutationObserverInterestGroup> createForAttributesMutation(Node& target, const QualifiedName& attributeName) argument
65 if (!target.document().hasMutationObserversOfType(MutationObserver::Attributes))
68 return createIfNeeded(target, MutationObserver::Attributes, MutationObserver::AttributeOldValue, &attributeName);
77 static PassOwnPtrWillBeRawPtr<MutationObserverInterestGroup> createIfNeeded(Node& target, MutationObserve
[all...]
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DNodeEventContext.h53 EventTarget* target() const { return m_treeScopeEventContext->target(); } function in class:blink::NodeEventContext
57 bool currentTargetSameAsTarget() const { return m_currentTarget.get() == target(); }

Completed in 4187 milliseconds

1234567891011>>