HomeSort by relevance Sort by last modified time
    Searched defs:href (Results 26 - 50 of 69) sorted by null

12 3

  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 230 const AtomicString& href = toElement(node)->getAttribute(HTMLNames::hrefAttr); local
231 if (href.isNull())
233 KURL url = node->document().completeURL(href);
  /external/doclava/src/com/google/doclava/
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/chromium_org/third_party/WebKit/Source/core/html/
HTMLLinkElement.cpp 413 KURL HTMLLinkElement::href() const function in class:blink::HTMLLinkElement
499 void LinkStyle::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* cachedStyleSheet)
526 RefPtrWillBeRawPtr<StyleSheetContents> styleSheet = StyleSheetContents::create(href, parserContext);
  /external/chromium_org/third_party/libxml/src/
runsuite.c 790 xmlChar *href = NULL; local
800 href = getString(cur,
801 "string(ts:instanceDocument/@xlink:href)");
802 if ((href == NULL) || (href[0] == 0)) {
803 test_log("testGroup line %ld misses href for schemaDocument\n",
808 path = xmlBuildURI(href, BAD_CAST base);
812 xmlGetLineNo(cur), href);
871 if (href != NULL) xmlFree(href);
887 xmlChar *href = NULL; local
    [all...]
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 729 if (ns->href == NULL) {
732 "Incomplete namespace %s href=NULL\n",
736 "Incomplete default namespace href=NULL\n");
740 fprintf(ctxt->output, "namespace %s href=",
743 fprintf(ctxt->output, "default namespace href=");
745 xmlCtxtDumpString(ctxt, ns->href);
2108 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...]
  /external/chromium_org/third_party/readability/js/
readability.js 93 readability.parsedPages[window.location.href.replace(/\/$/, '')] = true;
114 "<p>Sorry, readability was unable to parse this page for content. If you feel like it should have been able to, please <a href='http://code.google.com/p/arc90labs-readability/issues/entry'>let us know by submitting an issue.</a></p>",
151 if((window.location.protocol + "//" + window.location.host + "/") === window.location.href) {
214 if(readability.convertLinksToFootnotes && !window.location.href.match(/wikipedia\.org/g)) {
252 "<a href='#' onclick='return window.location.reload()' title='Reload original page' id='reload-page'>Reload Original Page</a>" +
253 "<a href='#' onclick='javascript:window.print();' title='Print page' id='print-page'>Print Page</a>" +
254 "<a href='#' onclick='readability.emailBox(); return false;' title='Email page' id='email-page'>Email Page</a>";
408 if (document.styleSheets[k].href !== null && document.styleSheets[k].href.lastIndexOf("readability") === -1) {
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodecList.cpp 266 const char *href = NULL; local
269 if (!strcmp(attrs[i], "href")) {
273 href = attrs[i + 1];
283 for (i = 0; href[i] != '\0'; i++) {
284 if (href[i] == '.' || href[i] == '_' ||
285 (href[i] >= '0' && href[i] <= '9') ||
286 (href[i] >= 'A' && href[i] <= 'Z') |
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 306 String href = String.format("<a href=\"%s\">%s</a>", link, matchStr); local
307 m.appendReplacement(sb, href);
  /external/chromium_org/third_party/libxslt/libxslt/
variables.c 1414 const xmlChar *href; local
    [all...]
xslt.c 491 ret->origNsName = ns->href;
1071 if (xmlStrEqual(cur->href, XSLT_NAMESPACE))
1083 if (xmlStrEqual(cur->href, style->exclPrefixTab[i]))
6771 xmlChar *href = NULL; local
6859 xmlChar *href = NULL; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help.base_3.5.2.v201011171123.jar 
org.eclipse.help_3.5.0.v20100524.jar 
  /external/chromium_org/android_webview/native/
aw_contents.cc 837 ScopedJavaLocalRef<jstring> href; local
838 if (data.href.length())
839 href = ConvertUTF16ToJavaString(env, data.href);
853 href.obj(),
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 236 AtomicString href = getAttribute(XLinkNames::hrefAttr); local
238 if (href.isEmpty())
241 target = SVGURIReference::targetElementFromIRIString(href, treeScope(), &id);
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapSerializationEnvelope.java 50 private static final String HREF_LABEL = "href";
342 * subclasses. Precondition: On the start tag of the object or property, so href can be read.
349 String href = parser.getAttributeValue(null, HREF_LABEL); local
351 if (href != null) {
353 throw new RuntimeException("href at root level?!?");
355 href = href.substring(1);
356 obj = idMap.get(href);
362 idMap.put(href, f);
  /external/libxml2/
c14n.c 417 const xmlChar *href; local
430 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href;
431 has_empty_ns = (xmlC14NStrEqual(prefix, NULL) && xmlC14NStrEqual(href, NULL));
439 return(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL));
450 const xmlChar *href; local
463 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href
    [all...]
debugXML.c 729 if (ns->href == NULL) {
732 "Incomplete namespace %s href=NULL\n",
736 "Incomplete default namespace href=NULL\n");
740 fprintf(ctxt->output, "namespace %s href=",
743 fprintf(ctxt->output, "default namespace href=");
745 xmlCtxtDumpString(ctxt, ns->href);
2111 xmlChar* href; local
    [all...]
xinclude.c 493 xmlChar *href; local
512 href = xmlXIncludeGetProp(ctxt, cur, XINCLUDE_HREF);
513 if (href == NULL) {
514 href = xmlStrdup(BAD_CAST ""); /* @@@@ href is now optional */
515 if (href == NULL)
518 if ((href[0] == '#') || (href[0] == 0))
529 if (href != NULL)
530 xmlFree(href);
2028 xmlChar *href; local
    [all...]
  /frameworks/base/core/java/android/text/
Html.java 293 out.append("<a href=\"");
698 String href = attributes.getValue("", "href"); local
701 text.setSpan(new Href(href), len, len, Spannable.SPAN_MARK_MARK);
706 Object obj = getLast(text, Href.class);
712 Href h = (Href) obj;
835 private static class Href {
838 public Href(String href)
    [all...]
  /external/chromium_org/google_apis/drive/
gdata_wapi_parser.h 77 const GURL& href() const { return href_; } function in class:google_apis::Link
90 void set_href(const GURL& href) { href_ = href; }
136 const GURL& href() const { return href_; } function in class:google_apis::ResourceLink
139 void set_href(const GURL& href) { href_ = href; }
  /external/chromium_org/third_party/libxml/src/include/libxml/
tree.h 62 * 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc.
353 const xmlChar *href; /* URL for the namespace */ member in struct:_xmlNs
724 const xmlChar *href,
729 const xmlChar *href,
949 const xmlChar *href);
    [all...]
  /external/libxml2/include/libxml/
tree.h 63 * 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc.
391 const xmlChar *href; /* URL for the namespace */ member in struct:_xmlNs
763 const xmlChar *href,
768 const xmlChar *href,
988 const xmlChar *href);
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContents.java 106 public String href; field in class:AwContents.HitTestData
    [all...]

Completed in 1690 milliseconds

12 3