Searched defs:exprs (Results 1 - 4 of 4) 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/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 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);
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)))

Completed in 1083 milliseconds