Searched refs:exprs (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJArray.java39 private List<JExpression> exprs = null; field in class:JArray
45 if (exprs == null)
46 exprs = new ArrayList<JExpression>();
47 exprs.add(e);
76 if ((size == null) || (exprs != null))
78 if (exprs != null) {
79 f.g(exprs);
83 if ((size == null) || (exprs != null))
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DJavaVFrame.java170 StackValueCollection exprs = getExpressions();
173 Assert.that(exprs.size() == otherExprs.size(), "sanity check");
175 for (int i = 0; i < exprs.size(); i++) {
176 if (!exprs.get(i).equals(otherExprs.get(i))) {
/openjdk7/jdk/src/share/sample/nio/file/
H A DChmod.java61 * <p> The {@code exprs} parameter is a comma separated list of expressions
83 * exprs} parameter:
106 * @param exprs
113 * If the value of the {@code exprs} parameter is invalid
115 public static Changer compile(String exprs) { argument
117 if (exprs.length() < 2)
125 for (String expr: exprs.split(",")) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe.cpp598 StackValueCollection* exprs = expressions(); local
600 assert(exprs->size() == other_exprs->size(), "sanity check");
601 for(i = 0; i < exprs->size(); i++) {
602 if (!exprs->at(i)->equal(other_exprs->at(i)))
H A DvframeArray.cpp131 StackValueCollection *exprs = vf->expressions(); local
132 _expressions = new StackValueCollection(exprs->size());
133 for(index = 0; index < exprs->size(); index++) {
134 StackValue* value = exprs->at(index);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DUnionPathIterator.java112 DTMIterator[] exprs = m_iterators;
117 System.arraycopy(exprs, 0, m_iterators, 0, len);

Completed in 49 milliseconds