HomeSort by relevance Sort by last modified time
    Searched refs:href (Results 1 - 25 of 490) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGURIReference.idl 31 readonly attribute SVGAnimatedString href;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLBaseElement.idl 21 attribute DOMString href;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.arithmetic/
op_++.pass.cpp 22 std::chrono::hours& href = ++h; local
23 assert(&href == &h);
op_--.pass.cpp 22 std::chrono::hours& href = --h; local
23 assert(&href == &h);
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HyperRef.java 19 public HyperRef (final String href, final String text, final boolean nbsp)
23 if ((href == null) || (href.length () == 0))
24 throw new IllegalArgumentException ("null or empty input: href");
29 getAttributes ().set (Attribute.HREF, href);
31 // TODO: does href need to be URL-encoded?
  /frameworks/base/docs/html/design/
design_toc.cs 4 <div class="nav-section-header"><a href="<?cs var:toroot ?>design/index.html">Get Started</a></div>
6 <li><a href="<?cs var:toroot ?>design/get-started/creative-vision.html">Creative Vision</a></li>
7 <li><a href="<?cs var:toroot ?>design/get-started/principles.html">Design Principles</a></li>
8 <li><a href="<?cs var:toroot ?>design/get-started/ui-overview.html">UI Overview</a></li>
13 <div class="nav-section-header"><a href="<?cs var:toroot ?>design/style/index.html">Style</a></div>
15 <li><a href="<?cs var:toroot ?>design/style/devices-displays.html">Devices and Displays</a></li>
16 <li><a href="<?cs var:toroot ?>design/style/themes.html">Themes</a></li>
17 <li><a href="<?cs var:toroot ?>design/style/touch-feedback.html">Touch Feedback</a></li>
18 <li><a href="<?cs var:toroot ?>design/style/metrics-grids.html">Metrics and Grids</a></li>
19 <li><a href="<?cs var:toroot ?>design/style/typography.html">Typography</a></li
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/
URIResolver.java 32 * @param href An href attribute, which may be relative or absolute.
36 * @return A Source object, or null if the href cannot be resolved,
42 public Source resolve(String href, String base)
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestNode.idl 26 attribute DOMString href;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImportRule.idl 23 [TreatReturnedNullStringAs=Null] readonly attribute DOMString href;
StyleRuleImport.h 38 static PassRefPtr<StyleRuleImport> create(const String& href, PassRefPtr<MediaQuerySet>);
46 String href() const { return m_strHref; } function in class:WebCore::StyleRuleImport
61 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet)
63 m_ownerRule->setCSSStyleSheet(href, baseURL, charset, sheet);
69 void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource*);
72 StyleRuleImport(const String& href, PassRefPtr<MediaQuerySet>);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.h 39 static PassOwnPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href)
42 return adoptPtr(new XSLImportRule(parentSheet, href));
47 const String& href() const { return m_strHref; } function in class:WebCore::XSLImportRule
57 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
59 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
XSLImportRule.cpp 33 XSLImportRule::XSLImportRule(XSLStyleSheet* parent, const String& href)
35 , m_strHref(href)
50 void XSLImportRule::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet)
55 m_styleSheet = XSLStyleSheet::create(this, href, baseURL);
  /external/doclava/src/com/google/doclava/
KeywordEntry.java 22 KeywordEntry(String label, String href, String comment) {
24 this.href = href;
30 data.setValue(base + ".href", this.href);
43 private String href; field in class:KeywordEntry
  /external/chromium_org/third_party/WebKit/Source/core/loader/
LinkLoader.cpp 101 bool LinkLoader::loadLink(const LinkRelAttribute& relAttribute, const String& type, const KURL& href, Document& document)
105 // FIXME: The href attribute of the link element can be in "//hostname" form, and we shouldn't attempt
107 if (settings && settings->dnsPrefetchingEnabled() && href.isValid() && !href.isEmpty())
108 prefetchDNS(href.host());
112 if ((relAttribute.isLinkPrefetch() || relAttribute.isLinkSubresource()) && href.isValid() && document.frame()) {
116 FetchRequest linkRequest(ResourceRequest(document.completeURL(href)), FetchInitiatorTypeNames::link);
122 m_prerender = PrerenderHandle::create(document, this, href);
123 } else if (m_prerender->url() != href) {
125 m_prerender = PrerenderHandle::create(document, this, href);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/
send_links.js 10 // Return an anchor's href attribute, stripping any URL fragment (hash '#').
13 var href = element.href;
14 var hashIndex = href.indexOf('#');
16 href = href.substr(0, hashIndex);
18 return href;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementInclude.py 68 # @param href Resource reference.
77 def default_loader(href, parse, encoding=None):
78 file = open(href)
108 href = e.get("href")
111 node = loader(href, parse)
114 "cannot load %r as %r" % (href, parse)
121 text = loader(href, parse, e.get("encoding"))
124 "cannot load %r as %r" % (href, parse)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementInclude.py 68 # @param href Resource reference.
77 def default_loader(href, parse, encoding=None):
78 file = open(href)
108 href = e.get("href")
111 node = loader(href, parse)
114 "cannot load %r as %r" % (href, parse)
121 text = loader(href, parse, e.get("encoding"))
124 "cannot load %r as %r" % (href, parse)
  /external/chromium_org/chrome/common/extensions/docs/server2/
sidenav_data_source.py 31 if item.get('href', '') == path:
72 href = item.get('href')
73 if href is not None and not href.startswith(('http://', 'https://')):
74 if not href.startswith('/'):
75 logging.warn('Paths in sidenav must be qualified. %s is not.' % href)
77 href = href.lstrip('/')
78 item['href'] = self._server_instance.base_path + hre
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
namespaces.c 239 literalNsName = literalNs->href; /* Yes - set for nsAlias table */
243 if ((literalNs == NULL) || (literalNs->href == NULL)) {
249 literalNsName = literalNs->href;
262 targetNsName = targetNs->href;
266 if ((targetNs == NULL) || (targetNs->href == NULL)) {
272 targetNsName = targetNs->href;
292 style->defaultAlias = targetNs->href;
380 if ((ns->href != NULL) && (ns->href[0] != 0)) {
388 "'%s'.\n", ns->href, target->name)
    [all...]
  /external/libxslt/libxslt/
namespaces.c 239 literalNsName = literalNs->href; /* Yes - set for nsAlias table */
243 if ((literalNs == NULL) || (literalNs->href == NULL)) {
249 literalNsName = literalNs->href;
262 targetNsName = targetNs->href;
266 if ((targetNs == NULL) || (targetNs->href == NULL)) {
272 targetNsName = targetNs->href;
292 style->defaultAlias = targetNs->href;
380 if ((ns->href != NULL) && (ns->href[0] != 0)) {
388 "'%s'.\n", ns->href, target->name)
    [all...]
  /frameworks/base/docs/html/training/
training_toc.cs 6 <a href="<?cs var:toroot ?>training/index.html">
14 <a href="<?cs var:toroot ?>training/basics/firstapp/index.html"
21 <li><a href="<?cs var:toroot ?>training/basics/firstapp/creating-project.html">
25 <li><a href="<?cs var:toroot ?>training/basics/firstapp/running-app.html">
29 <li><a href="<?cs var:toroot ?>training/basics/firstapp/building-ui.html">
33 <li><a href="<?cs var:toroot ?>training/basics/firstapp/starting-activity.html">
42 <a href="<?cs var:toroot ?>training/basics/actionbar/index.html"
50 <li><a href="<?cs var:toroot ?>training/basics/actionbar/setting-up.html">
54 <li><a href="<?cs var:toroot ?>training/basics/actionbar/adding-buttons.html">
58 <li><a href="<?cs var:toroot ?>training/basics/actionbar/styling.html"
    [all...]
  /external/chromium_org/android_webview/common/
aw_hit_test_data.h 24 // otherwise be type an LINK type, |href| will contain the javascript
25 // string in the href attribute, and |anchor_text|i and |img_src| contain
31 // contain the url but with the prefix removed. |href| will contain the
32 // exact href attribute string. Other fields are the same as SRC_LINK_TYPE.
37 // Hit on a pure image (without links). |extra_data_for_type|, |href|,
43 // image. |extra_data_for_type| and |href| will be the valid absolute url
51 // Note 3: |href| is not the raw attribute string, but the absolute link
57 // source. |href| will be the valid absolute url of the link. |anchor_text|
69 string16 href; member in struct:android_webview::AwHitTestData
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/
content.js 9 var link = links[i].href.replace(/(.*)#?/, "$1");
13 results.push({ href: link, text: text });
  /external/chromium_org/third_party/WebKit/Source/core/dom/
URLUtils.idl 30 attribute DOMString href;
32 [NotEnumerable, ImplementedAs=href] DOMString toString();
URLUtilsReadOnly.idl 30 readonly attribute DOMString href;
32 [NotEnumerable, ImplementedAs=href] DOMString toString();

Completed in 419 milliseconds

1 2 3 4 5 6 7 8 91011>>