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

1 2 3 4

  /external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/
op_++.pass.cpp 33 std::chrono::hours& href = ++h; local
34 assert(&href == &h);
op_--.pass.cpp 33 std::chrono::hours& href = --h; local
34 assert(&href == &h);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.arithmetic/
op_++.pass.cpp 33 std::chrono::hours& href = ++h; local
34 assert(&href == &h);
op_--.pass.cpp 33 std::chrono::hours& href = --h; local
34 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.
369 // explicit "<a href" form
376 result.href = matcher.group(1);
379 if (DBG) System.out.println(" ---- explicit href reference");
381 result.href = result.packageInfo.htmlPage();
383 result.href = result.packageInfo.htmlPage();
415 if (DBG) System.out.println(" --- href = '" + result.href + "'")
    [all...]
  /external/pdfium/fxjs/xfa/
cjx_exdata.cpp 51 void CJX_ExData::href(CFXJSE_Value* pValue, function in class:CJX_ExData
cjx_image.cpp 57 void CJX_Image::href(CFXJSE_Value* pValue, function in class:CJX_Image
  /external/libxml2/doc/examples/
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, cur->name)
    [all...]
  /external/skia/experimental/svg/model/
SkSVGPattern.cpp 33 void SkSVGPattern::setHref(const SkSVGStringType& href) {
34 fHref = std::move(href);
64 if (const auto* href = v.as<SkSVGStringValue>()) {
65 this->setHref(*href);
83 const auto* href = ctx.findNodeById(fHref); local
84 if (!href || href->tag() != SkSVGTag::kPattern) {
88 return static_cast<const SkSVGPattern*>(href);
105 * (possibly due to its own ?xlink:href? attribute), then this element inherits the children from
107 * referenced element inherits attributes or children due to its own ?xlink:href? attribute, the
    [all...]
  /external/skqp/experimental/svg/model/
SkSVGPattern.cpp 33 void SkSVGPattern::setHref(const SkSVGStringType& href) {
34 fHref = std::move(href);
64 if (const auto* href = v.as<SkSVGStringValue>()) {
65 this->setHref(*href);
83 const auto* href = ctx.findNodeById(fHref); local
84 if (!href || href->tag() != SkSVGTag::kPattern) {
88 return static_cast<const SkSVGPattern*>(href);
105 * (possibly due to its own ?xlink:href? attribute), then this element inherits the children from
107 * referenced element inherits attributes or children due to its own ?xlink:href? attribute, the
    [all...]
  /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/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
Crawler.java 107 for (Element element : document.select("a[href]")) {
108 String href = element.attr("href"); local
109 HttpUrl link = response.request().httpUrl().resolve(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
  /prebuilts/tools/common/m2/repository/org/apache/maven/reporting/maven-reporting-impl/2.0.5/
maven-reporting-impl-2.0.5.jar 
  /external/libxml2/
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...]
c14n.c 418 const xmlChar *href; local
431 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href;
432 has_empty_ns = (xmlC14NStrEqual(prefix, NULL) && xmlC14NStrEqual(href, NULL));
440 return(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL));
451 const xmlChar *href; local
464 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href
    [all...]
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);
2114 xmlChar* href; local
    [all...]
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);
2031 xmlChar *href; local
    [all...]
  /frameworks/av/media/libstagefright/xmlparser/
MediaCodecsXmlParser.cpp 229 const char *href = nullptr; local
232 if (strEq(attrs[i], "href")) {
236 href = attrs[i];
246 for (i = 0; href[i] != '\0'; i++) {
247 if (href[i] == '.' || href[i] == '_' ||
248 (href[i] >= '0' && href[i] <= '9') ||
249 (href[i] >= 'A' && href[i] <= 'Z') |
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 324 String href = String.format("<a href=\"%s\">%s</a>", link, matchStr); local
325 m.appendReplacement(sb, href);
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-module-xhtml/1.0/
doxia-module-xhtml-1.0.jar 
  /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/libjpeg-turbo/
turbojpeg.c 357 int href=1, vref=1; local
360 href=tjMCUWidth[i]/8; vref=tjMCUHeight[i]/8;
362 if(dinfo->comp_info[k].h_samp_factor==href
380 int href=tjMCUHeight[i]/8, vref=tjMCUWidth[i]/8; local
383 href=vref=2;
385 if(dinfo->comp_info[k].h_samp_factor==href
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-decoration-model/1.0/
doxia-decoration-model-1.0.jar 

Completed in 827 milliseconds

1 2 3 4