Searched defs:nv (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DNodeSequence.java68 NodeVector nv = (m_cache != null) ? m_cache.getVector() : null;
69 return nv;
97 final NodeVector nv = getVector();
98 return (nv != null);
121 NodeVector nv = getVector();
122 if (nv != null) {
562 final NodeVector nv;
564 nv = (NodeVector) vec.clone();
571 newCache.setVector(nv);
574 vec = nv;
920 setVector(NodeVector nv) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DProgressMonitor.java256 * @param nv an int specifying the current value, between the
262 public void setProgress(int nv) { argument
263 if (nv >= max) {
268 myBar.setValue(nv);
275 if (nv > min) {
278 (nv - min));
287 myBar.setValue(nv);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathContext.java717 public void setCurrentNodeStack(IntStack nv) { m_currentNodes = nv; } argument
853 public void setCurrentExpressionNodeStack(IntStack nv) { m_currentExpressionNodes = nv; } argument

Completed in 2930 milliseconds