Home
last modified time | relevance | path

Searched refs:anchor (Results 1 – 25 of 642) sorted by relevance

12345678910>>...26

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DLinkifier.js43 formatLiveAnchor: function(anchor, uiLocation) { } argument
82 var anchor = WebInspector.linkifyURLAsNode("", "", classes, false);
83 … var liveLocation = script.createLiveLocation(rawLocation, this._updateAnchor.bind(this, anchor));
85 return anchor;
96 var anchor = WebInspector.linkifyURLAsNode("", "", classes, false);
97 …ctor.cssModel.createLiveLocation(styleSheetId, rawLocation, this._updateAnchor.bind(this, anchor));
101 return anchor;
115 _updateAnchor: function(anchor, uiLocation) argument
117 anchor.preferredPanel = "sources";
118 anchor.href = sanitizeHref(uiLocation.uiSourceCode.originURL());
[all …]
/external/chromium_org/chrome/browser/ui/app_list/
Dapp_list_positioner.cc38 gfx::Point anchor; in GetAnchorPointForScreenCorner() local
41 anchor = screen_rect.origin(); in GetAnchorPointForScreenCorner()
44 anchor = screen_rect.top_right(); in GetAnchorPointForScreenCorner()
47 anchor = screen_rect.bottom_left(); in GetAnchorPointForScreenCorner()
50 anchor = screen_rect.bottom_right(); in GetAnchorPointForScreenCorner()
54 anchor = gfx::Point(); in GetAnchorPointForScreenCorner()
56 return ClampAnchorPoint(anchor); in GetAnchorPointForScreenCorner()
63 gfx::Point anchor; in GetAnchorPointForShelfCorner() local
66 anchor = gfx::Point(work_area.x(), screen_rect.y()); in GetAnchorPointForShelfCorner()
69 anchor = gfx::Point(work_area.right(), screen_rect.y()); in GetAnchorPointForShelfCorner()
[all …]
/external/llvm/utils/TableGen/
DX86ModRMFilters.cpp14 void ModRMFilter::anchor() { } in anchor() function in ModRMFilter
16 void DumbFilter::anchor() { } in anchor() function in DumbFilter
18 void ModFilter::anchor() { } in anchor() function in ModFilter
20 void EscapeFilter::anchor() { } in anchor() function in EscapeFilter
22 void AddRegEscapeFilter::anchor() { } in anchor() function in AddRegEscapeFilter
24 void ExtendedFilter::anchor() { } in anchor() function in ExtendedFilter
26 void ExactFilter::anchor() { } in anchor() function in ExactFilter
DX86ModRMFilters.h30 virtual void anchor();
53 virtual void anchor();
68 virtual void anchor();
95 virtual void anchor();
127 virtual void anchor();
148 virtual void anchor();
176 virtual void anchor();
/external/bison/lib/
Dfd-hook.c31 static struct fd_hook anchor = { &anchor, &anchor, NULL, NULL }; variable
37 if (remaining_list == &anchor) in execute_close_hooks()
48 return execute_close_hooks (anchor.private_next, primary, fd); in execute_all_close_hooks()
55 if (remaining_list == &anchor) in execute_ioctl_hooks()
67 return execute_ioctl_hooks (anchor.private_next, primary, fd, request, arg); in execute_all_ioctl_hooks()
81 link->private_next = anchor.private_next; in register_fd_hook()
82 link->private_prev = &anchor; in register_fd_hook()
85 anchor.private_next->private_prev = link; in register_fd_hook()
86 anchor.private_next = link; in register_fd_hook()
/external/clang/lib/Driver/
DAction.cpp42 void InputAction::anchor() {} in anchor() function in InputAction
48 void BindArchAction::anchor() {} in anchor() function in BindArchAction
54 void JobAction::anchor() {} in anchor() function in JobAction
64 void PreprocessJobAction::anchor() {} in anchor() function in PreprocessJobAction
70 void PrecompileJobAction::anchor() {} in anchor() function in PrecompileJobAction
76 void AnalyzeJobAction::anchor() {} in anchor() function in AnalyzeJobAction
82 void MigrateJobAction::anchor() {} in anchor() function in MigrateJobAction
88 void CompileJobAction::anchor() {} in anchor() function in CompileJobAction
94 void AssembleJobAction::anchor() {} in anchor() function in AssembleJobAction
100 void LinkJobAction::anchor() {} in anchor() function in LinkJobAction
[all …]
/external/icu4c/layout/
DAnchorTables.cpp16 LEPoint &anchor) const in getAnchor()
23 f1->getAnchor(fontInstance, anchor); in getAnchor()
31 f2->getAnchor(glyphID, fontInstance, anchor); in getAnchor()
39 f3->getAnchor(fontInstance, anchor); in getAnchor()
47 f1->getAnchor(fontInstance, anchor); in getAnchor()
52 void Format1AnchorTable::getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const in getAnchor()
60 fontInstance->pixelsToUnits(pixels, anchor); in getAnchor()
63 …nchorTable::getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const in getAnchor()
75 fontInstance->pixelsToUnits(point, anchor); in getAnchor()
78 void Format3AnchorTable::getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const in getAnchor()
[all …]
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;
/external/chromium_org/content/browser/renderer_host/input/
Dsynthetic_pinch_gesture.cc89 touch_event_.PressPoint(params_.anchor.x(), current_y_0_); in PressTouchPoints()
90 touch_event_.PressPoint(params_.anchor.x(), current_y_1_); in PressTouchPoints()
100 touch_event_.MovePoint(0, params_.anchor.x(), floor(current_y_0_)); in MoveTouchPoints()
101 touch_event_.MovePoint(1, params_.anchor.x(), floor(current_y_1_)); in MoveTouchPoints()
128 current_y_0_ = params_.anchor.y() - inner_distance_to_anchor; in SetupCoordinates()
129 current_y_1_ = params_.anchor.y() + inner_distance_to_anchor; in SetupCoordinates()
130 target_y_0_ = params_.anchor.y() - outer_distance_to_anchor; in SetupCoordinates()
131 target_y_1_ = params_.anchor.y() + outer_distance_to_anchor; in SetupCoordinates()
133 current_y_0_ = params_.anchor.y() - outer_distance_to_anchor; in SetupCoordinates()
134 current_y_1_ = params_.anchor.y() + outer_distance_to_anchor; in SetupCoordinates()
[all …]
/external/chromium_org/third_party/WebKit/Source/web/
DValidationMessageClientImpl.cpp71 void ValidationMessageClientImpl::showValidationMessage(const Element& anchor, const String& messag… in showValidationMessage() argument
74 hideValidationMessage(anchor); in showValidationMessage()
77 if (!anchor.renderBox()) in showValidationMessage()
81 m_currentAnchor = &anchor; in showValidationMessage()
82 IntRect anchorInRootView = currentView()->contentsToRootView(anchor.pixelSnappedBoundingBox()); in showValidationMessage()
102 void ValidationMessageClientImpl::hideValidationMessage(const Element& anchor) in hideValidationMessage() argument
104 if (!m_currentAnchor || !isValidationMessageVisible(anchor)) in hideValidationMessage()
115 bool ValidationMessageClientImpl::isValidationMessageVisible(const Element& anchor) in isValidationMessageVisible() argument
117 return m_currentAnchor == &anchor; in isValidationMessageVisible()
/external/llvm/lib/IR/
DLLVMContextImpl.cpp138 void UnaryConstantExpr::anchor() { } in anchor() function in UnaryConstantExpr
140 void BinaryConstantExpr::anchor() { } in anchor() function in BinaryConstantExpr
142 void SelectConstantExpr::anchor() { } in anchor() function in SelectConstantExpr
144 void ExtractElementConstantExpr::anchor() { } in anchor() function in ExtractElementConstantExpr
146 void InsertElementConstantExpr::anchor() { } in anchor() function in InsertElementConstantExpr
148 void ShuffleVectorConstantExpr::anchor() { } in anchor() function in ShuffleVectorConstantExpr
150 void ExtractValueConstantExpr::anchor() { } in anchor() function in ExtractValueConstantExpr
152 void InsertValueConstantExpr::anchor() { } in anchor() function in InsertValueConstantExpr
154 void GetElementPtrConstantExpr::anchor() { } in anchor() function in GetElementPtrConstantExpr
156 void CompareConstantExpr::anchor() { } in anchor() function in CompareConstantExpr
/external/clang/include/clang/Driver/
DAction.h101 virtual void anchor();
115 virtual void anchor();
131 virtual void anchor();
144 virtual void anchor();
154 virtual void anchor();
164 virtual void anchor();
174 virtual void anchor();
184 virtual void anchor();
194 virtual void anchor();
204 virtual void anchor();
[all …]
/external/libvorbis/examples/
Dframeview.pl190 -width=>-20,-height=>-46,-anchor=>'nw');
193 place(-x=>-1,-y=>-1,-relx=>1.0,-rely=>1.0,-anchor=>'se');
196 place(-x=>5,-y=>5,-anchor=>'nw');
201 -width=>-20,-height=>-46,-anchor=>'nw');
204 place(-x=>5,-y=>5,-anchor=>'nw');
209 place(-x=>-5,-relx=>1.,-y=>$panely,-anchor=>'ne');
216 place(-x=>5,-y=>-5,-rely=>1.,-relwidth=>.2,-width=>-5,-anchor=>'sw');
220 place(-x=>-5,-y=>-5,-relwidth=>.2,-rely=>1.,-width=>-5,-relx=>1.,-anchor=>'se');
224 place(-x=>5,-y=>-5,-relwidth=>.3,-width=>-7,-rely=>1.,-relx=>.2,-anchor=>'sw');
228 place(-x=>-5,-y=>-5,-relwidth=>.3,-width=>-7,-rely=>1.,-relx=>.8,-anchor=>'se');
[all …]
/external/chromium_org/ppapi/native_client/src/trusted/weak_ref/
Dcall_on_main_thread.h55 nacl::WeakRefAnchor* anchor, in WeakRefNewCallback() argument
58 nacl::WeakRef<R>* wp = anchor->MakeWeakRef<R>(raw_data); in WeakRefNewCallback()
69 nacl::WeakRefAnchor* anchor, in WeakRefCallOnMainThread() argument
74 WeakRefNewCallback(anchor, callback_fn, raw_data, &cc); in WeakRefCallOnMainThread()
120 nacl::WeakRefAnchor* anchor, in WeakRefNewCallback() argument
130 anchor->MakeWeakRef<WeakRefAutoAbandonWrapper<R> >( in WeakRefNewCallback()
143 nacl::WeakRefAnchor* anchor, in WeakRefCallOnMainThread() argument
148 WeakRefNewCallback(anchor, raw_callback_fn, raw_data, &cc); in WeakRefCallOnMainThread()
206 nacl::WeakRefAnchor* anchor, in WeakRefNewCallback() argument
226 return WeakRefNewCallback(anchor, weak_ref_member_func_invoker_ptr, in WeakRefNewCallback()
[all …]
/external/chromium_org/ash/shelf/
Dshelf_tooltip_manager.cc52 ShelfTooltipBubble(views::View* anchor,
73 views::View* anchor, in ShelfTooltipBubble() argument
76 : views::BubbleDelegateView(anchor, arrow), host_(host) { in ShelfTooltipBubble()
85 if (anchor->border()) in ShelfTooltipBubble()
86 insets += anchor->border()->GetInsets(); in ShelfTooltipBubble()
98 if (anchor->GetWidget() && anchor->GetWidget()->GetNativeView()) { in ShelfTooltipBubble()
100 anchor->GetWidget()->GetNativeView()->GetRootWindow(); in ShelfTooltipBubble()
163 void ShelfTooltipManager::ShowDelayed(views::View* anchor, in ShowDelayed() argument
177 CreateBubble(anchor, text); in ShowDelayed()
181 void ShelfTooltipManager::ShowImmediately(views::View* anchor, in ShowImmediately() argument
[all …]
Doverflow_bubble.cc33 void OverflowBubble::Show(views::View* anchor, ShelfView* shelf_view) { in Show() argument
37 bubble_->InitOverflowBubble(anchor, shelf_view); in Show()
39 anchor_ = anchor; in Show()
43 RootWindowController::ForWindow(anchor->GetWidget()->GetNativeView())-> in Show()
65 views::View* anchor = anchor_; in HideBubbleAndRefreshButton() local
69 anchor->SchedulePaint(); in HideBubbleAndRefreshButton()
/external/chromium_org/chrome/browser/ui/cocoa/
Dspeech_recognition_bubble_cocoa.mm74 // arrow anchor point inside that to point at the bottom-left of the html
85 NSPoint anchor = NSMakePoint(anchor_x, anchor_y);
86 if (NSPointInRect(anchor, tab_bounds)) {
88 anchor = [view convertPoint:anchor toView:nil];
94 anchor = locationBar->GetPageInfoBubblePoint();
98 anchor = NSMakePoint(NSMinX(tab_bounds), NSMaxY(tab_bounds));
99 anchor = [view convertPoint:anchor toView:nil];
103 anchor = [parent_window convertBaseToScreen:anchor];
108 anchoredAt:anchor]);
/external/chromium_org/v8/test/webkit/fast/js/
Dstring-anchor-expected.txt24 This is a test case for String.prototype.anchor(name).
29 PASS '_'.anchor('b') is "<a name=\"b\">_</a>"
30 PASS '<'.anchor('b') is "<a name=\"b\"><</a>"
31 PASS '_'.anchor(0x2A) is "<a name=\"42\">_</a>"
32 PASS '_'.anchor('"') is "<a name=\"&quot;\">_</a>"
33 PASS '_'.anchor('" href="http://www.evil.com') is "<a name=\"&quot; href=&quot;http://www.evil.com\…
34 PASS String.prototype.anchor.call(0x2A, 0x2A) is "<a name=\"42\">42</a>"
35 FAIL String.prototype.anchor.call(undefined) should throw TypeError: Type error. Was <a name="undef…
36 FAIL String.prototype.anchor.call(null) should throw TypeError: Type error. Was <a name="undefined"…
37 PASS String.prototype.anchor.length is 1
/external/clang/include/clang/CodeGen/
DCodeGenAction.h66 virtual void anchor();
72 virtual void anchor();
78 virtual void anchor();
84 virtual void anchor();
90 virtual void anchor();
96 virtual void anchor();
/external/llvm/docs/_themes/llvm-theme/static/
Dllvm-theme.css206 h1 a.anchor, h2 a.anchor, h3 a.anchor, h4 a.anchor, h5 a.anchor, h6 a.anchor {
213 h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor,
214 h5:hover a.anchor, h6:hover a.anchor {
218 h1 a.anchor:hover, h2 a.anchor:hover, h3 a.anchor:hover, h4 a.anchor:hover,
219 h5 a.anchor:hover, h6 a.anchor:hover {
/external/regex-re2/re2/testing/
Dtester.cc124 static string FormatAnchor(Prog::Anchor anchor) { in FormatAnchor() argument
125 switch (anchor) { in FormatAnchor()
282 Prog::Anchor anchor, in RunSearch() argument
306 prog_->UnsafeSearchBacktrack(text, context, anchor, kind_, in RunSearch()
317 prog_->SearchNFA(text, context, anchor, kind_, in RunSearch()
327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL, in RunSearch()
337 prog_->SearchDFA(text, context, anchor, kind_, result->submatch, in RunSearch()
356 anchor == Prog::kUnanchored || in RunSearch()
362 result->matched = prog_->SearchOnePass(text, context, anchor, kind_, in RunSearch()
372 result->matched = prog_->SearchBitState(text, context, anchor, kind_, in RunSearch()
[all …]
/external/chromium_org/third_party/re2/re2/testing/
Dtester.cc124 static string FormatAnchor(Prog::Anchor anchor) { in FormatAnchor() argument
125 switch (anchor) { in FormatAnchor()
282 Prog::Anchor anchor, in RunSearch() argument
306 prog_->UnsafeSearchBacktrack(text, context, anchor, kind_, in RunSearch()
317 prog_->SearchNFA(text, context, anchor, kind_, in RunSearch()
327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL, in RunSearch()
337 prog_->SearchDFA(text, context, anchor, kind_, result->submatch, in RunSearch()
356 anchor == Prog::kUnanchored || in RunSearch()
362 result->matched = prog_->SearchOnePass(text, context, anchor, kind_, in RunSearch()
372 result->matched = prog_->SearchBitState(text, context, anchor, kind_, in RunSearch()
[all …]
/external/chromium_org/chrome/common/extensions/docs/examples/api/bookmarks/basic/
Dpopup.js34 var anchor = $('<a>');
35 anchor.attr('href', bookmarkNode.url);
36 anchor.text(bookmarkNode.title);
41 anchor.click(function() {
95 edit.val(anchor.text());
103 anchor.text(edit.val());
117 }).append(anchor);
/external/chromium_org/ui/webui/resources/js/cr/ui/
Dbubble.js158 var anchor = this.anchorNode_.getBoundingClientRect();
159 var anchorMid = (anchor.left + anchor.right) / 2;
197 var offsetTop = Math.min(documentHeight - anchor.bottom - bubble.height,
199 var offsetBottom = Math.min(anchor.top - bubble.height,
206 var top = anchor.bottom + offsetTop;
209 var top = anchor.top - bubble.height - offsetBottom;
215 var left = this.arrowAtRight_ ? anchor.right - bubble.width :
216 anchor.left;
222 var top = this.arrowAtTop_ ? anchor.bottom + arrow.height / 2 :
223 anchor.top - this.clientHeight - arrow.height / 2;
/external/chromium_org/content/test/data/accessibility/
Da-name-expected-win.txt3 ROLE_SYSTEM_LINK name='named anchor' state=SELECTABLE
4 ROLE_SYSTEM_TEXT name='named anchor' state=READONLY
5 ROLE_SYSTEM_LINK name='both a named anchor and a link' state=FOCUSABLE,SELECTABLE,LINKED
6 ROLE_SYSTEM_TEXT name='both a named anchor and a link' state=READONLY,LINKED

12345678910>>...26