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

1 2

  /ndk/sources/cxx-stl/llvm-libc++/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/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
LinkReference.java 41 public String href; field in class:LinkReference
62 * regex pattern to use when matching explicit "<a href" reference text
65 Pattern.compile("^<a href=\"([^\"]*)\">([^<]*)</a>[ \n\r\t]*$", Pattern.CASE_INSENSITIVE);
79 * and fills in href and label with error text.
365 // explicit "<a href" form
372 result.href = matcher.group(1);
375 if (DBG) System.out.println(" ---- explicit href reference");
377 result.href = result.packageInfo.htmlPage();
379 result.href = result.packageInfo.htmlPage();
404 if (DBG) System.out.println(" --- href = '" + result.href + "'")
    [all...]
  /external/webkit/Source/WebCore/workers/
WorkerLocation.cpp 37 String WorkerLocation::href() const function in class:WebCore::WorkerLocation
  /external/chromium/chrome/browser/resources/shared/js/
parse_html_subset.js 14 'href': function(node, value) {
15 // Only allow a[href] starting with http:// and https://
  /external/webkit/Source/WebCore/css/
CSSImportRule.h 39 static PassRefPtr<CSSImportRule> create(CSSStyleSheet* parent, const String& href, PassRefPtr<MediaList> media)
41 return adoptRef(new CSSImportRule(parent, href, media));
46 String href() const { return m_strHref; } function in class:WebCore::CSSImportRule
58 CSSImportRule(CSSStyleSheet* parent, const String& href, PassRefPtr<MediaList>);
67 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CachedCSSStyleSheet*);
StyleSheet.h 46 // Note that href is the URL that started the redirect chain that led to
49 const String& href() const { return m_originalURL; } function in class:WebCore::StyleSheet
69 StyleSheet(Node* ownerNode, const String& href, const KURL& finalURL);
70 StyleSheet(StyleSheet* parentSheet, const String& href, const KURL& finalURL);
71 StyleSheet(StyleBase* owner, const String& href, const KURL& finalURL);
  /external/webkit/Source/WebCore/svg/
SVGFontFaceUriElement.cpp 95 String href = getAttribute(XLinkNames::hrefAttr); local
96 if (!href.isNull()) {
98 m_cachedFont = cachedResourceLoader->requestFont(href);
  /external/webkit/Source/WebCore/xml/
XSLImportRule.h 40 static PassRefPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href)
42 return adoptRef(new XSLImportRule(parentSheet, href));
47 const String& href() const { return m_strHref; } function in class:WebCore::XSLImportRule
56 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
61 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
  /external/webkit/Source/WebCore/page/
Location.cpp 61 String Location::href() const function in class:WebCore::Location
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StylesheetPIHandler.java 39 * @see <a href="http://www.w3.org/TR/xml-stylesheet/">Associating Style Sheets with XML documents, Version 1.0</a>
67 * Get the object that will be used to resolve URIs in href
79 * Get the object that will be used to resolve URIs in href
138 * @see <a href="http://www.w3.org/TR/xml-stylesheet/">Associating Style Sheets with XML documents, Version 1.0</a>
146 String href = null; // CDATA #REQUIRED local
177 else if (name.equals("href"))
183 href = token;
187 // If the href value has parameters to be passed to a
190 // the href value. Without this check, we would move on
197 href = href + token + tokenizer.nextToken()
    [all...]
  /external/chromium/chrome/common/extensions/
update_manifest.cc 111 // NULL if there isn't one with that href.
113 const xmlChar* href = reinterpret_cast<const xmlChar*>(expected_href); local
115 if (ns->href && !xmlStrcmp(ns->href, href)) {
  /external/webkit/Source/WebCore/bindings/js/
JSLocationCustom.cpp 180 UString href = value.toString(exec); local
183 impl()->setHref(ustringToString(href), activeDOMWindow(exec), firstDOMWindow(exec));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8LocationCustom.cpp 89 INC_STATS("DOM.Location.href._set");
94 String href = toWebCoreString(value); local
96 impl->setHref(href, state->activeWindow(), state->firstWindow());
258 String result = imp->href();
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorInclude.java 47 * @see <a href="http://www.w3.org/TR/xslt#dtd">XSLT DTD</a>
48 * @see <a href="http://www.w3.org/TR/xslt#include">include in XSLT Specification</a>
65 * @return non-null reference to the href attribute string, or
354 String href = getHref(); local
356 s = uriresolver.resolve(href,base);
388 // the system ID Resolver to take the href and base
  /external/chromium/chrome/common/
web_apps.cc 61 WebString href = link.getAttribute("href"); local
62 if (href.isNull() || href.isEmpty())
66 GURL url = link.document().completeURL(href);
174 std::string definition_url_string(elem.getAttribute("href").utf8());
  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.cpp 255 // Should be draggable if we have an href attribute.
264 KURL HTMLAnchorElement::href() const function in class:WebCore::HTMLAnchorElement
306 String fragmentIdentifier = href().fragmentIdentifier();
312 KURL url = href();
322 const KURL& url = href();
334 KURL url = href();
364 return href().host();
379 KURL url = href();
389 return href().path();
394 KURL url = href();
    [all...]
HTMLLinkElement.cpp 250 // FIXME: The href attribute of the link element can be in "//hostname" form, and we shouldn't attempt
360 void HTMLLinkElement::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CachedCSSStyleSheet* sheet)
367 m_sheet = CSSStyleSheet::create(this, href, baseURL, charset);
400 m_sheet = CSSStyleSheet::create(this, href, baseURL, charset);
468 KURL HTMLLinkElement::href() const function in class:WebCore::HTMLLinkElement
500 addSubresourceURL(urls, href());
  /external/libxslt/libxslt/
variables.c 1414 const xmlChar *href; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help.base_3.5.2.v201011171123.jar 
  /external/libxml2/
c14n.c 415 const xmlChar *href; local
428 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href;
429 has_empty_ns = (xmlC14NStrEqual(prefix, NULL) && xmlC14NStrEqual(href, NULL));
437 return(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL));
448 const xmlChar *href; local
461 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href
    [all...]
debugXML.c 730 if (ns->href == NULL) {
733 "Incomplete namespace %s href=NULL\n",
737 "Incomplete default namespace href=NULL\n");
741 fprintf(ctxt->output, "namespace %s href=",
744 fprintf(ctxt->output, "default namespace href=");
746 xmlCtxtDumpString(ctxt, ns->href);
2109 xmlChar* href; local
    [all...]
xinclude.c 492 xmlChar *href; local
511 href = xmlXIncludeGetProp(ctxt, cur, XINCLUDE_HREF);
512 if (href == NULL) {
513 href = xmlStrdup(BAD_CAST ""); /* @@@@ href is now optional */
514 if (href == NULL)
517 if ((href[0] == '#') || (href[0] == 0))
528 if (href != NULL)
529 xmlFree(href);
1999 xmlChar *href; local
    [all...]
  /frameworks/base/core/java/android/text/
Html.java 296 out.append("<a href=\"");
692 String href = attributes.getValue("", "href"); local
695 text.setSpan(new Href(href), len, len, Spannable.SPAN_MARK_MARK);
700 Object obj = getLast(text, Href.class);
706 Href h = (Href) obj;
829 private static class Href {
832 public Href(String href)
    [all...]

Completed in 2522 milliseconds

1 2