/external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/ |
H A D | op_++.pass.cpp | 22 std::chrono::hours& href = ++h; local 23 assert(&href == &h);
|
H A D | op_--.pass.cpp | 22 std::chrono::hours& href = --h; local 23 assert(&href == &h);
|
/external/autotest/frontend/client/src/autotest/common/ui/ |
H A D | RealHyperlink.java | 24 public void setHref(String href) { argument 25 link.setAttribute("href", href);
|
/external/chromium-trace/catapult/third_party/vinn/vinn/ |
H A D | html_to_js_generator.js | 103 var href = ''; variable 107 if (node.attrs[i].name === 'href') 108 href = node.attrs[i].value; 113 'global.HTMLImportsLoader.loadHTML(\'' + href + '\');',
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
H A D | HyperRef.java | 19 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 D | HTMLDocument.java | 138 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/doclava/src/com/google/doclava/ |
H A D | KeywordEntry.java | 22 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 D | 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 [all...] |
/external/libxml2/doc/examples/ |
H A D | xpath1.c | 150 xmlChar* href; local 178 /* find href */ 179 href = next; 186 if(xmlXPathRegisterNs(xpathCtx, prefix, href) != 0) { 187 fprintf(stderr,"Error: unable to register NS with prefix=\"%s\" and href=\"%s\"\n", prefix, href); 224 ns->prefix, ns->href, cur->ns->href, cur->name); 227 ns->prefix, ns->href, cur->name); 233 cur->ns->href, cu [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/ |
H A D | url.py | 211 href = property(href__get) variable in class:URLResource 215 self.href or "''") 275 '<a href="http://localhost/view/foo">view</a>' 277 '<a href="http://localhost/view" onclick="return confirm(\'Really?\')">goto</a>' 279 '<a href="http://localhost/view?title=See+%22it%22">goto</a>' 281 '<a href="http://localhost/view/another?var=fuggetaboutit">goto</a>' 293 return self.href 316 attrs.insert(0, ('href', self.href)) 323 return 'location.href [all...] |
/external/autotest/frontend/shared/ |
H A D | resource_lib.py | 147 def href(self, query_params=None): member in class:Resource 183 uri = link['href'] 192 return {'href': self.href(query_params=query_params)} 507 content=entry.href()) 508 response['Location'] = entry.href()
|
/external/libxml2/ |
H A D | runsuite.c | 778 xmlChar *href = NULL; local 788 href = getString(cur, 789 "string(ts:instanceDocument/@xlink:href)"); 790 if ((href == NULL) || (href[0] == 0)) { 791 test_log("testGroup line %ld misses href for schemaDocument\n", 796 path = xmlBuildURI(href, BAD_CAST base); 800 xmlGetLineNo(cur), href); 859 if (href != NULL) xmlFree(href); 875 xmlChar *href = NULL; local [all...] |
H A D | 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 [all...] |
H A D | debugXML.c | 731 if (ns->href == NULL) { 734 "Incomplete namespace %s href=NULL\n", 738 "Incomplete default namespace href=NULL\n"); 742 fprintf(ctxt->output, "namespace %s href=", 745 fprintf(ctxt->output, "default namespace href="); 747 xmlCtxtDumpString(ctxt, ns->href); 1773 fprintf(output, "default -> %s", (char *)ns->href); 1776 (char *)ns->href); 2113 xmlChar* href; local 2133 /* find href */ [all...] |
H A D | xinclude.c | 494 xmlChar *href; local 513 href = xmlXIncludeGetProp(ctxt, cur, XINCLUDE_HREF); 514 if (href == NULL) { 515 href = xmlStrdup(BAD_CAST ""); /* @@@@ href is now optional */ 516 if (href == NULL) 519 if ((href[0] == '#') || (href[0] == 0)) 530 if (href != NULL) 531 xmlFree(href); 2029 xmlChar *href; local [all...] |
H A D | tree.c | 714 * @href: the URI associated 722 * We use href==NULL in the case of an element creation where the namespace 728 xmlNewNs(xmlNodePtr node, const xmlChar *href, const xmlChar *prefix) { argument 736 if (xmlStrEqual(href, XML_XML_NAMESPACE)) 759 if (href != NULL) 760 cur->href = xmlStrdup(href); 829 if (cur->href != NULL) xmlFree((char *) cur->href); 2960 attr = xmlHasNsProp(cur->parent, prop->name, prop->ns->href); 6128 xmlSearchNsByHref(xmlDocPtr doc, xmlNodePtr node, const xmlChar * href) argument [all...] |
H A D | relaxng.c | 46 (xmlStrEqual(node->ns->href, xmlRelaxNGNs))) 402 xmlChar *href; /* the normalized href value */ member in struct:_xmlRelaxNGInclude 415 xmlChar *href; /* the normalized href value */ member in struct:_xmlRelaxNGDocument 685 if (docu->href != NULL) 686 xmlFree(docu->href); 724 if (incl->href != NULL) 725 xmlFree(incl->href); 1553 xmlChar *href local 7036 xmlChar *href, *ns, *base, *URL; local 7122 xmlChar *href, *ns, *base, *URL; local [all...] |
H A D | testapi.c | 21721 xmlChar * href; /* the URI associated */ local 21731 href = gen_const_xmlChar_ptr(n_href, 1); 21734 ret_val = xmlNewNs(node, (const xmlChar *)href, (const xmlChar *)prefix); 21739 des_const_xmlChar_ptr(n_href, (const xmlChar *)href, 1); 23416 xmlChar * href; /* the namespace value */ local 23425 href = gen_const_xmlChar_ptr(n_href, 2); 23427 ret_val = xmlSearchNsByHref(doc, node, (const xmlChar *)href); 23432 des_const_xmlChar_ptr(n_href, (const xmlChar *)href, 2); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.help.base_3.5.2.v201011171123.jar | ... util.Hashtable decoder static final String[] encoder static void " href="/7.1.1_r6/s?defs= " () public ... |
H A D | org.eclipse.help_3.5.0.v20100524.jar | ... .AbstractContentExtensionProvider extends java.lang.Object {
public void " href="/7.1.1_r6/s?defs= " () public ... |
H A D | org.eclipse.ui.forms_3.5.2.r36_v20100702.jar | ... IManagedForm managedForm private boolean dirty private boolean stale public void " href="/7.1.1_r6/s?defs= " () public ... |
/external/libjpeg-turbo/ |
H A D | turbojpeg.c | 356 int href=1, vref=1; local 359 href=tjMCUWidth[i]/8; vref=tjMCUHeight[i]/8; 361 if(dinfo->comp_info[k].h_samp_factor==href
|
/external/libxml2/include/libxml/ |
H A D | tree.h | 63 * 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc. 392 const xmlChar *href; /* URL for the namespace */ member in struct:_xmlNs 768 const xmlChar *href, 773 const xmlChar *href, 993 const xmlChar *href);
|
/external/libxml2/python/ |
H A D | libxml.c | 2867 xmlChar *href; local 2871 (args, (char *) "Oz:xmlNodeRemoveNsDef", &pyobj_node, &href)) 2881 if (href == NULL) { 2890 if (xmlStrEqual(ns->href, href)) {
|
/external/guice/extensions/struts2/lib/ |
H A D | struts2-core-2.2.1.jar | ... javax.servlet.http.HttpServletRequest request public void " href="/7.1.1_r6/s?defs= " (javax ... |