HomeSort by relevance Sort by last modified time
    Searched refs:AVT (Results 1 - 14 of 14) sorted by null

  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemSort.java 35 * lang %avt; #IMPLIED
36 * data-type %avt; "text"
37 * order %avt; "ascending"
38 * case-order %avt; #IMPLIED
102 private AVT m_lang_avt = null;
112 public void setLang(AVT v)
125 public AVT getLang()
135 private AVT m_dataType_avt = null;
169 public void setDataType(AVT v)
206 public AVT getDataType(
    [all...]
XSLTVisitor.java 109 public boolean visitAVT(AVT elem)
ElemLiteralResult.java 109 AVT avt = (AVT) m_avts.get(i); local
110 avt.fixupVariables(vnames, cstate.getGlobalsSize());
130 * @param avt literal result attribute to add (AVT only)
132 public void addLiteralResultAttribute(AVT avt)
138 m_avts.add(avt);
163 * @param avt Enumerated value, either Constants.ATTRVAL_PRESERVE
199 AVT avt = (AVT) m_avts.get(i); local
224 AVT avt = getLiteralResultAttributeNS(namespaceURI, localName); local
251 AVT avt = (AVT) m_avts.get(i); local
278 AVT avt = getLiteralResultAttribute(rawName); local
363 AVT avt = (AVT) m_avts.get(i); local
599 AVT avt = (AVT) eum.next(); local
630 AVT avt = (AVT) eum.next(); local
    [all...]
ElemElement.java 38 * name %avt; #REQUIRED
39 * namespace %avt; #IMPLIED
57 protected AVT m_name_avt = null;
67 public void setName(AVT v)
80 public AVT getName()
92 protected AVT m_namespace_avt = null;
103 public void setNamespace(AVT v)
117 public AVT getNamespace()
215 // Only validate if an AVT was used.
ElemPI.java 35 * name %avt; #REQUIRED
53 private AVT m_name_atv = null;
61 public void setName(AVT v)
72 public AVT getName()
145 // Only check if an avt was used (ie. this wasn't checked at compose time.)
ElemNumber.java 65 * format %avt; '1'
66 * lang %avt; #IMPLIED
67 * letter-value %avt; #IMPLIED
68 * grouping-separator %avt; #IMPLIED
69 * grouping-size %avt; #IMPLIED
311 private AVT m_format_avt = null;
321 public void setFormat(AVT v)
334 public AVT getFormat()
344 private AVT m_lang_avt = null;
357 public void setLang(AVT v
    [all...]
ElemAttribute.java 39 * name %avt; #REQUIRED
40 * namespace %avt; #IMPLIED
211 * name %avt; #REQUIRED
212 * namespace %avt; #IMPLIED
263 * @see ElemElement#setName(AVT)
265 public void setName(AVT v) {
AVT.java 19 * $Id: AVT.java 469221 2006-10-30 18:26:44Z minchau $
40 public class AVT implements java.io.Serializable, XSLTVisitable
58 * If the AVT is not complex, just hold the simple string.
64 * If the AVT is complex, hold a Vector of AVTParts.
150 * Construct an AVT by parsing the string, and either
152 * on to the string if the AVT is simple.
162 public AVT(StylesheetHandler handler, String uri, String name,
441 * Get the AVT as the original string.
443 * @return The AVT as the original string
476 * Evaluate the AVT and return a String
    [all...]
ElemExtensionCall.java 288 AVT avt = getLiteralResultAttribute(rawName); local
290 if ((null != avt) && avt.getRawName().equals(rawName))
294 return avt.evaluate(xctxt,
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 83 EVT AVT;
95 AVT = MVT::i16;
100 AVT = MVT::i32;
105 AVT = MVT::i64;
111 AVT = MVT::i8;
117 if (AVT.bitsGT(MVT::i8)) {
118 unsigned UBytes = AVT.getSizeInBits() / 8;
123 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
127 AVT = MVT::i8;
143 SDValue Ops[] = { Chain, DAG.getValueType(AVT), InFlag }
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTAttributeDef.java 32 import org.apache.xalan.templates.AVT;
64 * @param supportsAVT true if this attribute supports AVT's.
86 * @param supportsAVT true if this attribute supports AVT's.
109 * @param supportsAVT true if this attribute supports AVT's.
140 * @param supportsAVT true if this attribute supports AVT's.
174 * @param supportsAVT true if this attribute supports AVT's.
261 // Used for QName attributes that are always AVT. Prefix isn't resolved.
402 * If true, this is attribute supports AVT's.
407 * Get whether or not this attribute supports AVT's.
409 * @return true if this attribute supports AVT's
520 AVT avt = new AVT(handler, uri, name, rawName, value, owner); local
551 AVT avt = new AVT(handler, uri, name, rawName, value, owner); local
584 AVT avt = new AVT(handler, uri, name, rawName, value, owner); local
627 AVT avt = null; local
682 AVT avt = new AVT(handler, uri, name, rawName, value, owner); local
795 AVT avt = new AVT(handler, uri, name, rawName, value, owner); local
877 AVT avt = null; local
974 AVT avt = null; local
1037 AVT avt = null; local
1316 AVT avt = new AVT(handler, uri, name, rawName, value, owner); local
    [all...]
  /external/libxslt/libxslt/
attrvt.c 90 * @avt: pointer to an xsltAttrVT structure
95 xsltFreeAttrVT(xsltAttrVTPtr avt) {
98 if (avt == NULL) return;
100 if (avt->strstart == 1) {
101 for (i = 0;i < avt->nb_seg; i += 2)
102 if (avt->segments[i] != NULL)
103 xmlFree((xmlChar *) avt->segments[i]);
104 for (i = 1;i < avt->nb_seg; i += 2)
105 xmlXPathFreeCompExpr((xmlXPathCompExprPtr) avt->segments[i]);
107 for (i = 0;i < avt->nb_seg; i += 2
176 xsltAttrVTPtr avt; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerImpl.java 55 import org.apache.xalan.templates.AVT;
    [all...]
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 330 milliseconds