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

123

/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/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/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSImportRule.cpp47 String CSSImportRule::href() const function in class:WebCore::CSSImportRule
49 return m_importRule->href();
63 result.append(m_importRule->href());
H A DStyleRuleImport.cpp34 PassRefPtr<StyleRuleImport> StyleRuleImport::create(const String& href, PassRefPtr<MediaQuerySet> media) argument
36 return adoptRef(new StyleRuleImport(href, media));
39 StyleRuleImport::StyleRuleImport(const String& href, PassRefPtr<MediaQuerySet> media) argument
43 , m_strHref(href)
60 void StyleRuleImport::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* cachedStyleSheet) argument
70 m_styleSheet = StyleSheetContents::create(this, href, context);
H A DStyleRuleImport.h38 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) argument
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/dom/
H A DDOMURLUtilsReadOnly.cpp35 String DOMURLUtilsReadOnly::href(DOMURLUtilsReadOnly* impl) function in class:WebCore::DOMURLUtilsReadOnly
H A DProcessingInstruction.cpp103 String href = attrs.get("href");
112 if (href.length() > 1 && href[0] == '#') {
113 m_localHref = href.substring(1);
124 String url = document().completeURL(href).string();
129 FetchRequest request(ResourceRequest(document().completeURL(href)), FetchInitiatorTypeNames::processinginstruction);
167 void ProcessingInstruction::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) argument
177 RefPtr<StyleSheetContents> newSheet = StyleSheetContents::create(href, parserContext);
192 void ProcessingInstruction::setXSLStyleSheet(const String& href, cons argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLBaseElement.cpp80 KURL HTMLBaseElement::href() const function in class:WebCore::HTMLBaseElement
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLImportRule.cpp33 XSLImportRule::XSLImportRule(XSLStyleSheet* parent, const String& href) argument
35 , m_strHref(href)
50 void XSLImportRule::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) argument
55 m_styleSheet = XSLStyleSheet::create(this, href, baseURL);
H A DXSLImportRule.h39 static PassOwnPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href) argument
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);
/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/chromium_org/android_webview/common/
H A Daw_hit_test_data.h24 // 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/content/test/plugin/
H A Dplugin_private_test.cc30 NPIdentifier href = HostFunctions()->getstringidentifier("href"); local
39 HostFunctions()->getproperty(id(), NPVARIANT_TO_OBJECT(location_var), href, local
/external/chromium_org/chrome/renderer/
H A Dweb_apps.cc74 WebString href = link.getAttribute("href"); local
75 if (href.isNull() || href.isEmpty())
79 GURL url = link.document().completeURL(href);
/external/chromium_org/ppapi/tests/
H A Dtest_url_util.cc126 pp::Var href = window.GetProperty("location").GetProperty("href"); local
127 ASSERT_TRUE(href.is_string());
129 ASSERT_EQ(url.AsString(), href.AsString());
145 pp::Var href = window.GetProperty("location").GetProperty("href"); local
146 ASSERT_TRUE(href.is_string());
147 ASSERT_EQ(url.AsString(), href.AsString());
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DLinkLoader.cpp101 bool LinkLoader::loadLink(const LinkRelAttribute& relAttribute, const String& type, const KURL& href, Document& document) argument
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/third_party/WebKit/Source/core/svg/
H A DSVGFontFaceUriElement.cpp93 const AtomicString& href = getAttribute(XLinkNames::hrefAttr); local
94 if (!href.isNull()) {
96 FetchRequest request(ResourceRequest(document().completeURL(href)), localName());
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFEImage.cpp48 FEImage::FEImage(Filter* filter, Document& document, const String& href, const SVGPreserveAspectRatio& preserveAspectRatio) argument
51 , m_href(href)
61 PassRefPtr<FEImage> FEImage::createWithIRIReference(Filter* filter, Document& document, const String& href, const SVGPreserveAspectRatio& preserveAspectRatio) argument
63 return adoptRef(new FEImage(filter, document, href, preserveAspectRatio));
/external/chromium_org/third_party/WebKit/Source/core/frame/
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/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DWebKitHitTestTest.java57 private static String fullPageLink(String href, String anchorText) { argument
58 return CommonResources.makeHtmlPageFrom("", "<a class=\"full_view\" href=\"" +
59 href + "\" " + "onclick=\"return false;\">" + anchorText + "</a>");
115 final String href,
122 return (href == null ? data.href == null :
123 href.equals(data.href)) &&
267 String page = CommonResources.makeHtmlPageFrom("", "<a class=\"full_view\" href=\"" +
114 pollForHrefAndImageSrcOnUiThread( final String href, final String anchorText, final String imageSrc) argument
/external/chromium_org/chrome/common/extensions/
H A Dupdate_manifest.cc113 // NULL if there isn't one with that href.
115 const xmlChar* href = reinterpret_cast<const xmlChar*>(expected_href); local
117 if (ns->href && !xmlStrcmp(ns->href, href)) {

Completed in 1603 milliseconds

123