Home
last modified time | relevance | path

Searched refs:IntVector (Results 1 – 18 of 18) sorted by relevance

/external/emma/core/java12/com/vladium/jcd/cls/
DInterfaceCollection.java14 import com.vladium.util.IntVector;
48 _clone.m_interfaces = (IntVector) m_interfaces.clone (); in clone()
101 m_interfaces = capacity < 0 ? new IntVector () : new IntVector (capacity); in InterfaceCollection()
107 private IntVector m_interfaces; // vector of constant pool indices
DMethodCollection.java16 import com.vladium.util.IntVector;
40 final IntVector result = new IntVector (count); in get()
DFieldCollection.java16 import com.vladium.util.IntVector;
40 final IntVector result = new IntVector (count); in get()
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
DDeclaredExceptionTable.java14 import com.vladium.util.IntVector;
53 _clone.m_exceptions = (IntVector) m_exceptions.clone (); in clone()
99 m_exceptions = capacity < 0 ? new IntVector () : new IntVector (capacity); in DeclaredExceptionTable()
105 private IntVector m_exceptions;
/external/apache-xml/src/main/java/org/apache/xml/utils/
DIntVector.java33 public class IntVector implements Cloneable class
52 public IntVector() in IntVector() method in IntVector
65 public IntVector(int blocksize) in IntVector() method in IntVector
78 public IntVector(int blocksize, int increaseSize) in IntVector() method in IntVector
91 public IntVector(IntVector v) in IntVector() method in IntVector
416 return new IntVector(this); in clone()
DIntStack.java34 public class IntStack extends IntVector
/external/emma/core/java12/com/vladium/util/
DIntVector.java16 final class IntVector implements Cloneable class
20 public IntVector () in IntVector() method in IntVector
25 public IntVector (final int initCapacity) in IntVector() method in IntVector
76 final IntVector _clone = (IntVector) super.clone (); in clone()
/external/emma/core/java12/com/vladium/emma/report/
DAbstractReportGenerator.java19 import com.vladium.util.IntVector;
89 final IntVector columnIDs = new IntVector (); in initialize()
122 final IntVector sort = new IntVector (); in initialize()
184 final IntVector orderedAttrIDsWithDir = new IntVector (); in initialize()
DReportProperties.java19 import com.vladium.util.IntVector;
326 final IntVector _columns = new IntVector (); in parseProperties()
354 final IntVector _sort = new IntVector (); in parseProperties()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMAxisIterNodeList.java25 import org.apache.xml.utils.IntVector;
61 private IntVector m_cachedNodes;
76 m_cachedNodes = new IntVector(); in DTMAxisIterNodeList()
DDTMStringPool.java26 import org.apache.xml.utils.IntVector;
62 IntVector m_hashChain;
73 m_hashChain=new IntVector(chainSize); in DTMStringPool()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
DSAX2RTFDTM.java29 import org.apache.xml.utils.IntVector;
135 m_sourceLine = (m_useSourceLocationProperty) ? new IntVector() : null; in SAX2RTFDTM()
136 m_sourceColumn = (m_useSourceLocationProperty) ? new IntVector() : null; in SAX2RTFDTM()
DSAX2DTM.java31 import org.apache.xml.utils.IntVector;
201 protected IntVector m_sourceLine;
204 protected IntVector m_sourceColumn;
289 m_sourceLine = (m_useSourceLocationProperty) ? new IntVector() : null; in SAX2DTM()
290 m_sourceColumn = (m_useSourceLocationProperty) ? new IntVector() : null; in SAX2DTM()
/external/clang/test/Sema/
Dbuiltins.c128 typedef int __attribute__((vector_size(16))) IntVector; typedef
163 F((IntVector){0, 1, 2, 3}); in test17()
/external/v8/src/compiler/
Dinstruction-selector.h406 IntVector effect_level_;
407 IntVector virtual_registers_;
408 IntVector virtual_register_rename_;
Dinstruction.h1329 const IntVector& operands() const { return operands_; } in NON_EXPORTED_BASE()
1339 IntVector operands_; in NON_EXPORTED_BASE()
/external/v8/src/zone/
Dzone-containers.h140 typedef ZoneVector<int> IntVector; typedef
/external/emma/core/java12/com/vladium/emma/report/html/
DReportGenerator.java30 import com.vladium.util.IntVector;
875 final IntVector headerColumns = new IntVector (columns.length); in addHeaderRow()