Searched defs:href (Results 1 - 25 of 41) sorted by relevance

12

/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHyperRef.java19 public HyperRef (final String href, final String text, final boolean nbsp) argument
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?
H A DHTMLDocument.java138 public void addLINK (final String type, final String href) argument
145 link.getAttributes ().set (Attribute.HREF, href); // TODO: escape
146 link.getAttributes ().set (Attribute.SRC, href); // TODO: escape
/external/webkit/Source/WebCore/workers/
H A DWorkerLocation.cpp37 String WorkerLocation::href() const function in class:WebCore::WorkerLocation
/external/chromium/chrome/browser/resources/shared/js/
H A Dparse_html_subset.js14 'href': function(node, value) {
15 // Only allow a[href] starting with http:// and https://
/external/doclava/src/com/google/doclava/
H A DKeywordEntry.java22 KeywordEntry(String label, String href, String comment) { argument
24 this.href = href;
30 data.setValue(base + ".href", this.href);
43 private String href; field in class:KeywordEntry
H A DLinkReference.java41 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
[all...]
/external/webkit/Source/WebCore/xml/
H A DXSLImportRule.h40 static PassRefPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href) argument
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);
H A DXSLImportRule.cpp33 XSLImportRule::XSLImportRule(XSLStyleSheet* parent, const String& href) argument
35 , m_strHref(href)
55 void XSLImportRule::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) argument
60 m_styleSheet = XSLStyleSheet::create(this, href, baseURL);
H A DXSLStyleSheetLibxslt.cpp214 xmlChar* uriRef = xsltGetNsProp(curr, (const xmlChar*)"href", XSLT_NAMESPACE);
225 xmlChar* uriRef = xsltGetNsProp(curr, (const xmlChar*)"href", XSLT_NAMESPACE);
234 void XSLStyleSheet::loadChildSheet(const String& href) argument
236 RefPtr<XSLImportRule> childRule = XSLImportRule::create(this, href);
287 // In order to ensure that libxml canonicalized both URLs, we get the original href
290 CString importHref = import->href().utf8();
/external/webkit/Source/WebCore/css/
H A DCSSImportRule.h39 static PassRefPtr<CSSImportRule> create(CSSStyleSheet* parent, const String& href, PassRefPtr<MediaList> media) argument
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*);
H A DCSSImportRule.cpp34 CSSImportRule::CSSImportRule(CSSStyleSheet* parent, const String& href, PassRefPtr<MediaList> media) argument
36 , m_strHref(href)
57 void CSSImportRule::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CachedCSSStyleSheet* sheet) argument
61 m_styleSheet = CSSStyleSheet::create(this, href, baseURL, charset);
85 m_styleSheet = CSSStyleSheet::create(this, href, baseURL, charset);
H A DStyleSheet.h46 // 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);
H A DCSSStyleSheet.cpp54 CSSStyleSheet::CSSStyleSheet(CSSStyleSheet* parentSheet, const String& href, const KURL& baseURL, const String& charset) argument
55 : StyleSheet(parentSheet, href, baseURL)
64 CSSStyleSheet::CSSStyleSheet(Node* parentNode, const String& href, const KURL& baseURL, const String& charset) argument
65 : StyleSheet(parentNode, href, baseURL)
75 CSSStyleSheet::CSSStyleSheet(CSSRule* ownerRule, const String& href, const KURL& baseURL, const String& charset) argument
76 : StyleSheet(ownerRule, href, baseURL)
/external/webkit/Source/WebCore/svg/
H A DSVGFontFaceUriElement.cpp95 String href = getAttribute(XLinkNames::hrefAttr); local
96 if (!href.isNull()) {
98 m_cachedFont = cachedResourceLoader->requestFont(href);
/external/webkit/Source/WebCore/dom/
H A DProcessingInstruction.cpp134 String href = attrs.get("href");
140 if (href.length() > 1 && href[0] == '#') {
141 m_localHref = href.substring(1);
157 String url = document()->completeURL(href).string();
205 void ProcessingInstruction::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CachedCSSStyleSheet* sheet) argument
213 RefPtr<CSSStyleSheet> newSheet = CSSStyleSheet::create(this, href, baseURL, charset);
225 void ProcessingInstruction::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) argument
228 m_sheet = XSLStyleSheet::create(this, href, baseUR
[all...]
/external/webkit/Source/WebCore/page/
H A DLocation.cpp61 String Location::href() const function in class:WebCore::Location
/external/chromium/chrome/common/extensions/
H A Dupdate_manifest.cc111 // 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/chromium/chrome/common/
H A Dweb_apps.cc61 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/bindings/js/
H A DJSLocationCustom.cpp180 UString href = value.toString(exec); local
183 impl()->setHref(ustringToString(href), activeDOMWindow(exec), firstDOMWindow(exec));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8LocationCustom.cpp89 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/webkit/Source/WebCore/html/
H A DHTMLLinkElement.cpp250 // 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) argument
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());
H A DHTMLViewSourceDocument.cpp286 PassRefPtr<Element> HTMLViewSourceDocument::addBase(const AtomicString& href) argument
290 attributeMap->addAttribute(Attribute::createMapped(hrefAttr, href));
H A DHTMLAnchorElement.cpp255 // 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...]
/external/libxslt/libxslt/
H A Dvariables.c1414 const xmlChar *href; local
1441 href = NULL;
1450 href = NULL;
1452 href = ns->href;
1459 res_ptr = xmlHashLookup2(ctxt->globalVars, name, href);
1476 (xmlStrEqual(elem->nameURI, href))) {
1576 if (href != NULL)
1577 elem->nameURI = xmlDictLookup(ctxt->dict, href, -1);
1592 res = xmlHashAddEntry2(ctxt->globalVars, name, href, ele
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jar ... util.Hashtable decoder static final String[] encoder static void " href="/4.2.2_r1/s?defs= " () public ...

Completed in 627 milliseconds

12