Searched refs:nelems (Results 1 - 7 of 7) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java73 int nelems = 0; field in class:Scope
104 private Scope(Scope next, Symbol owner, Entry[] table, int nelems) { argument
106 this.nelems = nelems;
131 Scope result = new Scope(this, newOwner, this.table, this.nelems);
143 return new Scope(this, this.owner, this.table.clone(), this.nelems);
161 next.nelems = nelems;
188 // We don't need to update nelems for shared inherited scopes,
190 nelems
[all...]
/openjdk7/langtools/test/tools/javac/api/
H A DTestGetElement.java106 int nelems = 0;
108 nelems += scanner.scan(trees.getPath(e), test);
113 if (nelems != EXPECT) {
115 "Unexpected number of elements found: " + nelems + " expected: " + EXPECT);
/openjdk7/langtools/test/tools/javac/scope/7017664/
H A DCompoundScopeTest.java147 Scope createScope(int nelems) { argument
149 for (int i = 0 ; i < nelems ; i++) {
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c82 #define BV_ELEMENT_COUNT(nelems) ((((nelems+1)) >> BV_CHUNK_POWER_2) + 1)
717 int nelems; local
722 nelems = ltable->next_index-1;
725 return nelems;
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsPath.java637 Integer[] nelems = new Integer[endIndex - beginIndex];
639 nelems[i-beginIndex] = sb.length();
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAttribute.java620 Element[] nelems = Arrays.copyOf(elems, elems.length);
621 return nelems;
629 Element[] nelems = Arrays.copyOf(elems, elems.length);
630 return nelems; // no callables; whole body
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUnsafe.java1013 * @params loadavg an array of double of size nelems
1014 * @params nelems the number of samples to be retrieved and
1020 public native int getLoadAverage(double[] loadavg, int nelems); argument

Completed in 216 milliseconds