Searched refs:anchor (Results 126 - 150 of 617) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/suggestions_internals/
H A Dsuggestions_internals.js150 // If the text is a URL, make it an anchor element.
151 var anchor = document.createElement('a');
152 anchor.href = data;
153 anchor.innerText = data;
154 column.appendChild(anchor);
/external/chromium_org/ppapi/api/dev/
H A Dppb_text_input_dev.idl76 * the caret position within <code>text</code>. <code>anchor</code> is the
77 * byte-index of the anchor position (i.e., if a range of text is selected,
79 * there are no selection, <code>anchor</code> is equal to <code>caret</code>.
89 * to an empty string and <code>caret</code> and <code>anchor</code> to zero.
98 [in] uint32_t anchor);
/external/chromium_org/ppapi/api/
H A Dppb_text_input_controller.idl73 * the caret position within <code>text</code>. <code>anchor</code> is the
74 * byte-index of the anchor position (i.e., if a range of text is selected,
76 * there are no selection, <code>anchor</code> is equal to <code>caret</code>.
86 * to an empty string and <code>caret</code> and <code>anchor</code> to zero.
94 [in] uint32_t anchor);
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
H A Dcontrol_panel.js9 * Moves |target| element above |anchor| element, in order to match the
12 * @param {HTMLElement} anchor Anchor element.
14 function matchBottomLine(target, anchor) {
16 var anchorRect = anchor.getBoundingClientRect();
/external/clang/test/CodeGenCXX/
H A Dvtable-linkage.cpp47 virtual void anchor();
50 void E<char>::anchor() { } function in class:E
/external/llvm/include/llvm/CodeGen/
H A DMachineModuleInfoImpls.h41 virtual void anchor(); // Out of line virtual method.
79 virtual void anchor(); // Out of line virtual method.
/external/llvm/include/llvm/TableGen/
H A DSetTheory.h70 virtual void anchor();
84 virtual void anchor();
/external/llvm/include/llvm/Transforms/Utils/
H A DValueMapper.h28 virtual void anchor(); // Out of line method.
40 virtual void anchor(); // Out of line method.
/external/chromium_org/chrome/browser/ui/views/
H A Dnetwork_profile_bubble_view.cc35 views::View* anchor = NULL; local
38 anchor = browser_view->GetToolbarView()->app_menu();
40 new NetworkProfileBubbleView(anchor, browser, browser->profile());
58 views::View* anchor,
61 : BubbleDelegateView(anchor, views::BubbleBorder::TOP_RIGHT),
64 // Compensate for built-in vertical padding in the anchor view's image.
57 NetworkProfileBubbleView( views::View* anchor, content::PageNavigator* navigator, Profile* profile) argument
H A Dnetwork_profile_bubble_view.h24 NetworkProfileBubbleView(views::View* anchor,
/external/chromium_org/ash/
H A Dpopup_message.cc48 views::View* anchor,
69 views::View* anchor,
73 : views::BubbleDelegateView(anchor, arrow),
79 // An anchor can have an asymmetrical border for spacing reasons. Adjust the
80 // anchor location for this.
81 if (anchor->border())
82 insets += anchor->border()->GetInsets();
186 views::View* anchor,
192 caption, message, message_type, anchor, arrow, size_override,
66 MessageBubble(const base::string16& caption, const base::string16& message, IconType message_type, views::View* anchor, views::BubbleBorder::Arrow arrow, const gfx::Size& size_override, int arrow_offset) argument
183 PopupMessage(const base::string16& caption, const base::string16& message, IconType message_type, views::View* anchor, views::BubbleBorder::Arrow arrow, const gfx::Size& size_override, int arrow_offset) argument
H A Dpopup_message.h30 // Creates a message pointing towards |anchor| with the requested
53 views::View* anchor,
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPopupWindowTest.java129 private View anchor; field in class:PopupWindowTest.WithContentView
136 anchor = new View(Robolectric.application);
142 popupWindow.showAsDropDown(anchor);
149 popupWindow.showAsDropDown(anchor, 56, 69);
157 popupWindow.showAsDropDown(anchor);
166 popupWindow.showAsDropDown(anchor);
173 popupWindow.showAsDropDown(anchor);
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dtooltip_icon.cc35 TooltipBubble(views::View* anchor, const base::string16& message) argument
36 : InfoBubble(anchor, message) {}
43 bounds.Inset(GetPreferredInsets(anchor()));
/external/doclava/src/com/google/doclava/
H A DAttributeInfo.java75 public String anchor() { method in class:AttributeInfo
80 return mClass.htmlPage() + "#" + anchor();
85 data.setValue(base + ".anchor", anchor());
/external/proguard/src/proguard/gui/
H A DMemberSpecificationDialog.java86 constraints.anchor = GridBagConstraints.WEST;
92 constraintsStretch.anchor = GridBagConstraints.WEST;
97 constraintsLast.anchor = GridBagConstraints.WEST;
104 constraintsLastStretch.anchor = GridBagConstraints.WEST;
112 panelConstraints.anchor = GridBagConstraints.NORTHWEST;
120 stretchPanelConstraints.anchor = GridBagConstraints.NORTHWEST;
124 labelConstraints.anchor = GridBagConstraints.CENTER;
129 lastLabelConstraints.anchor = GridBagConstraints.CENTER;
135 advancedButtonConstraints.anchor = GridBagConstraints.SOUTHWEST;
141 okButtonConstraints.anchor
[all...]
H A DTabbedPane.java59 cardConstraints.anchor = GridBagConstraints.NORTHWEST;
76 buttonConstraints.anchor = GridBagConstraints.NORTHWEST;
156 imageConstraints.anchor = GridBagConstraints.SOUTHWEST;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPopupWindow.java144 public void showAsDropDown(View anchor) { argument
152 public void showAsDropDown(View anchor, int xoff, int yoff) { argument
155 showAsDropDown(anchor);
/external/chromium_org/ash/shelf/
H A Doverflow_bubble.h33 // Shows an bubble pointing to |anchor| with |shelf_view| as its content.
34 void Show(views::View* anchor, ShelfView* shelf_view);
/external/chromium_org/chrome/browser/resources/sync_internals/
H A Ddata.js153 var anchor = $('dump-to-file-anchor');
154 anchor.href = makeBlobUrl(output);
155 anchor.download = makeDownloadName();
156 anchor.click();
/external/chromium_org/chrome/browser/ui/cocoa/website_settings/
H A Dpermission_bubble_controller.h37 // Makes the bubble visible, with an arrow pointing to |anchor|. The bubble
43 - (void)showAtAnchor:(NSPoint)anchor
/external/chromium_org/chrome/browser/ui/views/accessibility/
H A Dinvert_bubble_view.cc161 views::View* anchor = browser_view->toolbar()->app_menu(); local
162 if (gfx::IsInvertedColorScheme() && anchor && anchor->GetWidget() &&
165 InvertBubbleView* delegate = new InvertBubbleView(browser, anchor);
/external/chromium_org/ppapi/c/dev/
H A Dppb_text_input_dev.h96 * the caret position within <code>text</code>. <code>anchor</code> is the
97 * byte-index of the anchor position (i.e., if a range of text is selected,
99 * there are no selection, <code>anchor</code> is equal to <code>caret</code>.
109 * to an empty string and <code>caret</code> and <code>anchor</code> to zero.
117 uint32_t anchor);
/external/chromium_org/ui/gfx/
H A Dtransform_util.h16 // Returns a scale transform at |anchor| point.
17 GFX_EXPORT Transform GetScaleTransform(const Point& anchor, float scale);
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_runner_impl_adapter.h26 MenuAnchorPosition anchor,

Completed in 581 milliseconds

1234567891011>>