Searched refs:anchor (Results 26 - 50 of 617) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DValidationMessageClient.h42 // Show validation message for the specified anchor element. An
45 virtual void showValidationMessage(const Element& anchor, const String& mainMessage, TextDirection, const String& subMessage, TextDirection) = 0;
47 // Hide validation message for the specified anchor if the message for the
48 // anchor is already visible.
49 virtual void hideValidationMessage(const Element& anchor) = 0;
51 // Returns true if the validation message for the specified anchor element
53 virtual bool isValidationMessageVisible(const Element& anchor) = 0;
/external/icu/icu4c/source/layout/
H A DAnchorTables.h28 LEPoint &anchor) const;
33 void getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const;
40 void getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const;
48 void getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const;
H A DAnchorTables.cpp16 LEPoint &anchor) const
23 f1->getAnchor(fontInstance, anchor);
31 f2->getAnchor(glyphID, fontInstance, anchor);
39 f3->getAnchor(fontInstance, anchor);
47 f1->getAnchor(fontInstance, anchor);
52 void Format1AnchorTable::getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const
60 fontInstance->pixelsToUnits(pixels, anchor);
63 void Format2AnchorTable::getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const
75 fontInstance->pixelsToUnits(point, anchor);
78 void Format3AnchorTable::getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) cons
[all...]
/external/llvm/include/llvm/MC/
H A DMCAsmInfoDarwin.h22 virtual void anchor();
H A DMCAsmInfoELF.h17 virtual void anchor();
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCAsmInfo.h24 void anchor() override;
30 void anchor() override;
38 void anchor() override;
44 void anchor() override;
/external/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430MCAsmInfo.cpp18 void MSP430MCAsmInfo::anchor() { } function in class:MSP430MCAsmInfo
H A DMSP430MCAsmInfo.h23 void anchor() override;
/external/bison/lib/
H A Dfd-hook.c31 static struct fd_hook anchor = { &anchor, &anchor, NULL, NULL }; variable in typeref:struct:fd_hook
37 if (remaining_list == &anchor)
48 return execute_close_hooks (anchor.private_next, primary, fd);
55 if (remaining_list == &anchor)
67 return execute_ioctl_hooks (anchor.private_next, primary, fd, request, arg);
81 link->private_next = anchor.private_next;
82 link->private_prev = &anchor;
85 anchor
[all...]
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_positioner.cc42 gfx::Point anchor; local
45 anchor = screen_rect.origin();
48 anchor = screen_rect.top_right();
51 anchor = screen_rect.bottom_left();
54 anchor = screen_rect.bottom_right();
58 anchor = gfx::Point();
60 return ClampAnchorPoint(anchor);
67 gfx::Point anchor; local
70 anchor = gfx::Point(work_area.x(), screen_rect.y());
73 anchor
91 gfx::Point anchor; local
119 gfx::Point anchor; local
[all...]
/external/clang/test/CodeGenCXX/
H A Dvtable-key-function.cpp30 virtual void anchor();
33 void Derived<char>::anchor() { } function in class:Derived
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCAsmInfo.h24 void anchor() override;
30 void anchor() override;
/external/llvm/lib/Target/ARM/
H A DARMRegisterInfo.h24 virtual void anchor();
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCAsmInfo.h22 void anchor() override;
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCAsmInfo.h23 void anchor() override;
/external/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXMCAsmInfo.h24 virtual void anchor();
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCAsmInfo.h26 void anchor() override;
39 void anchor() override;
47 void anchor() override;
53 void anchor() override;
/external/llvm/lib/Target/XCore/MCTargetDesc/
H A DXCoreMCAsmInfo.h24 void anchor() override;
/external/chromium_org/content/common/input/
H A Dsynthetic_pinch_gesture_params.cc19 anchor(other.anchor),
/external/clang/lib/Driver/
H A DAction.cpp43 void InputAction::anchor() {} function in class:InputAction
49 void BindArchAction::anchor() {} function in class:BindArchAction
55 void JobAction::anchor() {} function in class:JobAction
65 void PreprocessJobAction::anchor() {} function in class:PreprocessJobAction
71 void PrecompileJobAction::anchor() {} function in class:PrecompileJobAction
77 void AnalyzeJobAction::anchor() {} function in class:AnalyzeJobAction
83 void MigrateJobAction::anchor() {} function in class:MigrateJobAction
89 void CompileJobAction::anchor() {} function in class:CompileJobAction
95 void AssembleJobAction::anchor() {} function in class:AssembleJobAction
101 void LinkJobAction::anchor() {} function in class:LinkJobAction
107 void LipoJobAction::anchor() {} function in class:LipoJobAction
113 void DsymutilJobAction::anchor() {} function in class:DsymutilJobAction
119 void VerifyJobAction::anchor() {} function in class:VerifyJobAction
135 void VerifyDebugInfoJobAction::anchor() {} function in class:VerifyDebugInfoJobAction
142 void VerifyPCHJobAction::anchor() {} function in class:VerifyPCHJobAction
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DValidationMessageClientImpl.cpp65 void ValidationMessageClientImpl::showValidationMessage(const Element& anchor, const String& message, TextDirection messageDir, const String& subMessage, TextDirection subMessageDir) argument
68 hideValidationMessage(anchor);
71 if (!anchor.renderBox())
75 m_currentAnchor = &anchor;
76 IntRect anchorInRootView = currentView()->contentsToRootView(anchor.pixelSnappedBoundingBox());
93 void ValidationMessageClientImpl::hideValidationMessage(const Element& anchor) argument
95 if (!m_currentAnchor || !isValidationMessageVisible(anchor))
104 bool ValidationMessageClientImpl::isValidationMessageVisible(const Element& anchor) argument
106 return m_currentAnchor == &anchor;
H A DValidationMessageClientImpl.h53 virtual void showValidationMessage(const Element& anchor, const String& message, TextDirection messageDir, const String& subMessage, TextDirection subMessageDir) OVERRIDE;
54 virtual void hideValidationMessage(const Element& anchor) OVERRIDE;
55 virtual bool isValidationMessageVisible(const Element& anchor) OVERRIDE;
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_runner.cc28 MenuAnchorPosition anchor,
32 parent, button, bounds, anchor, source_type, run_types_);
48 anchor = MENU_ANCHOR_TOPLEFT;
52 anchor = MENU_ANCHOR_BOTTOMCENTER;
59 return impl_->RunMenuAt(parent, button, bounds, anchor, run_types_);
25 RunMenuAt(Widget* parent, MenuButton* button, const gfx::Rect& bounds, MenuAnchorPosition anchor, ui::MenuSourceType source_type) argument
/external/llvm/utils/TableGen/
H A DX86ModRMFilters.h30 virtual void anchor();
53 void anchor() override;
68 void anchor() override;
90 void anchor() override;
115 void anchor() override;
/external/chromium_org/ui/base/models/
H A Dlist_selection_model.h19 // anchor: the index of the last tab the user clicked on. Extending the
22 // Typically there is only one selected item, in which case the anchor and
34 // See class description for details of the anchor.
35 void set_anchor(int anchor) { anchor_ = anchor; } argument
36 int anchor() const { return anchor_; } function in class:ui::ListSelectionModel
50 // updates the anchor and active indices.
60 // Sets the anchor, active and selection to |index|.
66 // Adds |index| to the selection. This does not change the active or anchor
71 // anchor indice
[all...]

Completed in 8074 milliseconds

1234567891011>>