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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGURIReference.idl 32 readonly attribute SVGAnimatedString href;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLBaseElement.idl 21 attribute DOMString href;
  /external/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);
  /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?
  /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/core/css/
CSSImportRule.idl 23 [TreatReturnedNullStringAs=Null] readonly attribute DOMString href;
StyleRuleImport.h 39 static PassRefPtrWillBeRawPtr<StyleRuleImport> create(const String& href, PassRefPtrWillBeRawPtr<MediaQuerySet>);
47 String href() const { return m_strHref; } function in class:WebCore::StyleRuleImport
65 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) OVERRIDE
67 m_ownerRule->setCSSStyleSheet(href, baseURL, charset, sheet);
73 void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource*);
76 StyleRuleImport(const String& href, PassRefPtrWillBeRawPtr<MediaQuerySet>);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.h 39 static PassOwnPtrWillBeRawPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href)
42 return adoptPtrWillBeNoop(new XSLImportRule(parentSheet, href));
48 const String& href() const { return m_strHref; } function in class:WebCore::FINAL
58 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
60 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) OVERRIDE;
  /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
  /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>
12 <div class="nav-section-header empty"><a href="<?cs var:toroot ?>design/material/index.html">Material Design</a></div>
16 <div class="nav-section-header"><a href="<?cs var:toroot ?>design/devices.html">Devices</a></div>
18 <li><a href="<?cs var:toroot ?>design/handhelds/index.html">Phones &amp; Tablets</a></li>
21 <a href="<?cs var:toroot ?>design/wear/index.html">Wear</a></div>
23 <li><a href="<?cs var:toroot ?>design/wear/creative-vision.html">Creative Vision</a></li>
24 <li><a href="<?cs var:toroot ?>design/wear/principles.html">Design Principles</a></li>
25 <li><a href="<?cs var:toroot ?>design/wear/structure.html">App Structure</a></li
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
URLUtilsReadOnly.idl 32 // stringifier readonly attribute DOMString href;
33 readonly attribute DOMString href;
34 [NotEnumerable, ImplementedAs=href] DOMString toString();
ProcessingInstruction.cpp 96 String href; local
98 if (!checkStyleSheet(href, charset))
100 process(href, charset);
103 bool ProcessingInstruction::checkStyleSheet(String& href, String& charset)
125 href = attrs.get("href");
135 void ProcessingInstruction::process(const String& href, const String& charset)
137 if (href.length() > 1 && href[0] == '#') {
138 m_localHref = href.substring(1)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestNode.idl 25 attribute DOMString href;
  /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)
  /frameworks/base/docs/html/guide/
guide_toc.cs 11 <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/index.html">
15 <li><a href="<?cs var:toroot ?>guide/components/fundamentals.html">
18 <li><a href="<?cs var:toroot ?>guide/practices/compatibility.html">
21 <li><a href="<?cs var:toroot ?>guide/topics/security/permissions.html">
30 <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/components/index.html">
35 <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/components/intents-filters.html">
39 <li><a href="<?cs var:toroot ?>guide/components/intents-common.html">
45 <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/components/activities.html">
49 <li><a href="<?cs var:toroot ?>guide/components/fragments.html">
52 <li><a href="<?cs var:toroot ?>guide/components/loaders.html"
    [all...]
  /frameworks/base/docs/html/training/
training_toc.cs 4 <a href="<?cs var:toroot ?>training/index.html">
12 <a href="<?cs var:toroot ?>training/basics/firstapp/index.html"
19 <li><a href="<?cs var:toroot ?>training/basics/firstapp/creating-project.html">
23 <li><a href="<?cs var:toroot ?>training/basics/firstapp/running-app.html">
27 <li><a href="<?cs var:toroot ?>training/basics/firstapp/building-ui.html">
31 <li><a href="<?cs var:toroot ?>training/basics/firstapp/starting-activity.html">
40 <a href="<?cs var:toroot ?>training/basics/actionbar/index.html"
48 <li><a href="<?cs var:toroot ?>training/basics/actionbar/setting-up.html">
52 <li><a href="<?cs var:toroot ?>training/basics/actionbar/adding-buttons.html">
56 <li><a href="<?cs var:toroot ?>training/basics/actionbar/styling.html"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
LinkLoader.cpp 113 bool LinkLoader::loadLink(const LinkRelAttribute& relAttribute, const AtomicString& crossOriginMode, const String& type, const KURL& href, Document& document)
117 // FIXME: The href attribute of the link element can be in "//hostname" form, and we shouldn't attempt
119 if (settings && settings->dnsPrefetchingEnabled() && href.isValid() && !href.isEmpty())
120 prefetchDNS(href.host());
124 if ((relAttribute.isLinkPrefetch() || relAttribute.isLinkSubresource() || relAttribute.isTransitionExitingStylesheet()) && href.isValid() && document.frame()) {
128 FetchRequest linkRequest(ResourceRequest(document.completeURL(href)), FetchInitiatorTypeNames::link);
136 m_prerender = PrerenderHandle::create(document, this, href, prerenderRelTypes);
137 } else if (m_prerender->url() != href) {
139 m_prerender = PrerenderHandle::create(document, this, href, prerenderRelTypes)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
sidenav_data_source.py 42 if item.get('href', '') == path:
46 'href': parent.get('href', None) }
86 href = item.get('href')
87 if href is not None and not href.startswith(('http://', 'https://')):
88 if not href.startswith('/'):
89 logging.warn('Paths in sidenav must be qualified. %s is not.' % href)
91 href = href.lstrip('/'
    [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...]
  /build/tools/droiddoc/templates-sdk-dyn/components/
masthead.cs 12 <a href="<?cs var:toroot ?>index.html">
18 <a href="#" class="arrow-inactive">Quicknav</a>
19 <a href="#" class="arrow-active">Quicknav</a>
24 <a href="<?cs var:toroot ?>design/index.html"
32 <li class="develop"><a href="<?cs var:toroot ?>develop/index.html"
40 <li class="distribute last"><a href="<?cs var:toroot ?>distribute/<?cs
61 <li><a href="<?cs var:toroot ?>design/index.html">Get Started</a></li>
62 <li><a href="<?cs var:toroot ?>design/style/index.html">Style</a></li>
63 <li><a href="<?cs var:toroot ?>design/patterns/index.html">Patterns</a></li>
64 <li><a href="<?cs var:toroot ?>design/building-blocks/index.html">Building Blocks</a></li
    [all...]

Completed in 1102 milliseconds

1 2 3 4 5 6 7 8 91011>>