HomeSort by relevance Sort by last modified time
    Searched full:anchor (Results 1 - 25 of 1542) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/YAMLParser/
spec-05-06.data 3 anchored: !local &anchor value
4 alias: *anchor
spec-08-02.data 3 First occurrence: &anchor Value
4 Second occurrence: *anchor
spec-08-11.data 3 First occurrence: &anchor Value
4 Second occurrence: *anchor
duplicate-mapping-key.former-loader-error.data 4 &anchor foo:
6 *anchor: duplicate key
8 *anchor: duplicate key
spec-08-12.data 5 &anchor "Anchored",
7 *anchor, # Alias node
  /external/chromium_org/content/test/data/accessibility/
a-name-expected-win.txt 3 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
a-name-expected-android.txt 2 android.view.View clickable name='named anchor'
3 android.view.View clickable focusable name='both a named anchor and a link Link'
a-name.html 7 <a name="named_anchor_1">named anchor</a>
8 <a name="named_anchor_2" href="#foo">both a named anchor and a link</a>
  /external/chromium_org/ui/android/java/src/org/chromium/ui/base/
ViewAndroidDelegate.java 10 * Interface to acquire and release anchor views from the implementing View.
15 * @return An anchor view that can be used to anchor decoration views like Autofill popup.
20 * Set the anchor view to specified position and width (all units in dp).
21 * @param view The anchor view that needs to be positioned.
22 * @param x X coordinate of the top left corner of the anchor view.
23 * @param y Y coordinate of the top left corner of the anchor view.
24 * @param width The width of the anchor view.
25 * @param height The height of the anchor view.
30 * Release given anchor view
    [all...]
  /external/chromium_org/chrome_frame/test/data/
fulltab_anchor_url_navigate.html 4 <title>ChromeFrame fulltab mode anchor url navigate test</title>
23 "Failed to find anchor in URL");
30 ChromeFrame full tab mode anchor URL validation test.
31 Validates that URLs with anchor are received correctly in Chrome.
  /external/icu4c/layout/
AnchorTables.h 28 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;
AnchorTables.cpp 16 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/chromium/chrome/browser/resources/shared/js/cr/ui/
position_util_test.html 23 #anchor {
43 <div id=anchor></div>
48 var anchor = document.getElementById('anchor');
50 var anchorParent = anchor.offsetParent;
66 anchor.style.top = '100px';
67 anchor.style.left = '100px';
80 cr.ui.positionPopupAroundElement(anchor, popup, cr.ui.AnchorType.ABOVE);
85 anchor.style.top = '90px';
86 cr.ui.positionPopupAroundElement(anchor, popup, cr.ui.AnchorType.ABOVE)
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_positioner.cc 38 gfx::Point anchor; local
41 anchor = screen_rect.origin();
44 anchor = screen_rect.top_right();
47 anchor = screen_rect.bottom_left();
50 anchor = screen_rect.bottom_right();
54 anchor = gfx::Point();
56 return ClampAnchorPoint(anchor);
63 gfx::Point anchor; local
66 anchor = gfx::Point(work_area.x(), screen_rect.y());
69 anchor = gfx::Point(work_area.right(), screen_rect.y())
87 gfx::Point anchor; local
115 gfx::Point anchor; local
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Parser/
simple-url.html 5 var anchor = document.createElement("a");
8 anchor.href = "http://www.apple.com/"
url-parser.html 6 var anchor = document.createElement("a");
10 anchor.href = urls[x];
  /external/llvm/utils/TableGen/
X86ModRMFilters.cpp 14 void ModRMFilter::anchor() { } function in class:ModRMFilter
16 void DumbFilter::anchor() { } function in class:DumbFilter
18 void ModFilter::anchor() { } function in class:ModFilter
20 void EscapeFilter::anchor() { } function in class:EscapeFilter
22 void AddRegEscapeFilter::anchor() { } function in class:AddRegEscapeFilter
24 void ExtendedFilter::anchor() { } function in class:ExtendedFilter
26 void ExactFilter::anchor() { } function in class:ExactFilter
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Linkifier.js 40 * @param {!Element} anchor
43 formatLiveAnchor: function(anchor, uiLocation) { }
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 var liveLocation = WebInspector.cssModel.createLiveLocation(styleSheetId, rawLocation, this._updateAnchor.bind(this, anchor));
101 return anchor;
112 * @param {!Element} anchor
115 _updateAnchor: function(anchor, uiLocation
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
TrustedCertificateIndex.java 47 for (TrustAnchor anchor : anchors) {
48 index(anchor);
53 TrustAnchor anchor = new TrustAnchor(cert, null); local
54 index(anchor);
55 return anchor;
58 public void index(TrustAnchor anchor) {
60 X509Certificate cert = anchor.getTrustedCert();
64 subject = anchor.getCA();
73 anchors.add(anchor);
98 for (TrustAnchor anchor : anchors)
    [all...]
  /external/chromium_org/ui/base/models/
list_selection_model_unittest.cc 18 // 'active=X anchor=X selection=X X X...'.
21 " anchor=" + base::IntToString(model.anchor()) +
35 EXPECT_EQ("active=-1 anchor=-1 selection=", StateAsString(model));
42 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model));
49 EXPECT_EQ("active=-1 anchor=-1 selection=", StateAsString(model));
57 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model));
62 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model));
69 EXPECT_EQ("active=1 anchor=1 selection=1", StateAsString(model));
74 EXPECT_EQ("active=-1 anchor=-1 selection=", StateAsString(model))
    [all...]
list_selection_model.h 19 // 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; }
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 indices
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
string-anchor.js 25 'This is a test case for String.prototype.anchor(name).'
31 shouldBe("'_'.anchor('b')", '"<a name=\\"b\\">_</a>"');
34 shouldBe("'<'.anchor('b')", '"<a name=\\"b\\"><</a>"');
37 shouldBe("'_'.anchor(0x2A)", '"<a name=\\"42\\">_</a>"');
40 shouldBe("'_'.anchor('\"')", '"<a name=\\"&quot;\\">_</a>"');
41 shouldBe("'_'.anchor('\" href=\"http://www.evil.com')", '"<a name=\\"&quot; href=&quot;http://www.evil.com\\">_</a>"');
44 shouldBe("String.prototype.anchor.call(0x2A, 0x2A)", '"<a name=\\"42\\">42</a>"');
47 shouldThrow("String.prototype.anchor.call(undefined)", '"TypeError: Type error"');
50 shouldThrow("String.prototype.anchor.call(null)", '"TypeError: Type error"');
52 // Check anchor.length
    [all...]
string-anchor-expected.txt 24 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\">_</a>"
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="undefined">undefined</a>.
36 FAIL String.prototype.anchor.call(null) should throw TypeError: Type error. Was <a name="undefined">null</a>.
37 PASS String.prototype.anchor.length is
    [all...]
  /external/chromium/chrome/browser/tabs/
tab_strip_selection_model.h 16 // anchor: the index of the last tab the user clicked on. Extending the
20 // anchor and active index correspond to the same thing.
31 // See class description for details of the anchor.
32 void set_anchor(int anchor) { anchor_ = anchor; }
33 int anchor() const { return anchor_; } function in class:TabStripSelectionModel
47 // updates the anchor and active indices.
57 // Sets the anchor, active and selection to |index|.
63 // Adds |index| to the selection. This does not change the active or anchor
68 // anchor indices
    [all...]
tab_strip_selection_model_unittest.cc 15 // 'active=X anchor=X selection=X X X...'.
18 " anchor=" + base::IntToString(model.anchor()) +
32 EXPECT_EQ("active=-1 anchor=-1 selection=", StateAsString(model));
39 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model));
47 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model));
52 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model));
59 EXPECT_EQ("active=1 anchor=1 selection=1", StateAsString(model));
64 EXPECT_EQ("active=-1 anchor=-1 selection=", StateAsString(model));
70 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model))
    [all...]

Completed in 479 milliseconds

1 2 3 4 5 6 7 8 91011>>