Searched defs:depth (Results 126 - 150 of 235) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibNode.java145 * @param depth The depth reached in the OID at this step of the
155 long[] oid, int depth,
171 * @param depth The depth reached in the OID at this step of the
183 long[] oid, int pos, int depth,
199 * @param depth The depth reached in the OID tree.
204 public abstract void get(SnmpMibSubRequest req, int depth) argument
216 * @param depth Th
154 findHandlingNode(SnmpVarBind varbind, long[] oid, int depth, SnmpRequestTree handlers) argument
182 findNextHandlingNode(SnmpVarBind varbind, long[] oid, int pos, int depth, SnmpRequestTree handlers, AcmChecker checker) argument
221 set(SnmpMibSubRequest req, int depth) argument
239 check(SnmpMibSubRequest req, int depth) argument
[all...]
H A DSnmpTableSupport.java169 SnmpOid rowOid, int depth,
168 createNewEntry(SnmpMibSubRequest request, SnmpOid rowOid, int depth, SnmpMibTable meta) argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftChorus.java120 private double depth = 0; field in class:SoftChorus.LFODelay
129 vdelay = new VariableDelay((int) ((this.depth + 10) * 2));
133 public void setDepth(double depth) { argument
134 this.depth = depth * samplerate;
135 vdelay = new VariableDelay((int) ((this.depth + 10) * 2));
162 vdelay.setDelay((float) (depth * 0.5 * (Math.cos(phase) + 2)));
169 vdelay.setDelay((float) (depth * 0.5 * (Math.cos(phase) + 2)));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DGraph.java107 public void visitNode(Node<N, E> n, int depth) { argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DFigureWidget.java297 public void addFigureToSubMenu(JMenu subMenu, final Figure f, boolean successor, int depth) { argument
314 addFigureToMenu(subMenu, f2, successor, depth - 1);
321 public void addFigureToMenu(JMenu m, final Figure f, boolean successor, int depth) { argument
328 if (depth > 0) {
335 addFigureToSubMenu(subMenu, f, successor, depth);
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DNode.java84 void indent(PrintWriter writer, int depth) { argument
85 for (int i = 0; i < depth; i++) {
108 void genJavaComment(PrintWriter writer, int depth) { argument
110 indent(writer, depth);
113 indent(writer, depth);
116 indent(writer, depth);
125 void genJava(PrintWriter writer, int depth) { argument
128 node.genJava(writer, depth);
143 void genJavaDebugWrite(PrintWriter writer, int depth, argument
145 genJavaDebugWrite(writer, depth, writeLabe
148 genJavaDebugWrite(PrintWriter writer, int depth, String writeLabel, String displayValue) argument
165 genJavaRead(PrintWriter writer, int depth, String readLabel) argument
170 genJavaDebugRead(PrintWriter writer, int depth, String readLabel, String displayValue) argument
186 genJavaPreDef(PrintWriter writer, int depth) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DstepControl.c277 * Note: current depth is reported as *before* the pending frame
300 if (step->depth == JDWP_STEP_DEPTH(OVER)) {
334 LOG_STEP(("handleFramePopEvent: starting singlestep, depth==OVER"));
336 } else if (step->depth == JDWP_STEP_DEPTH(OUT) &&
342 LOG_STEP(("handleFramePopEvent: starting singlestep, depth==OUT && fromDepth > afterPopDepth (%d>%d)",fromDepth, afterPopDepth));
352 LOG_STEP(("handleFramePopEvent: starting singlestep, have methodEnter handler && depth==OUT && fromDepth >= afterPopDepth (%d>%d)",fromDepth, afterPopDepth));
398 if (step->depth == JDWP_STEP_DEPTH(OVER) &&
406 } else if (step->depth == JDWP_STEP_DEPTH(OUT) &&
461 JDI_ASSERT(step->depth == JDWP_STEP_DEPTH(INTO));
543 if (step->depth
788 stepControl_beginStep(JNIEnv *env, jthread thread, jint size, jint depth, HandlerNode *node) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Dforte.cpp382 int depth,
439 for (; !st.at_end() && count < depth; st.forte_next(), count++) {
481 // void (*AsyncGetCallTrace)(ASGCT_CallTrace *trace, jint depth, void* ucontext)
486 // structure with enough memory for the requested stack depth. The VM fills in
492 // depth - depth of the call stack trace.
524 void AsyncGetCallTrace(ASGCT_CallTrace *trace, jint depth, void* ucontext) { argument
580 forte_fill_call_trace_given_top(thread, trace, depth, fr);
603 forte_fill_call_trace_given_top(thread, trace, depth, fr);
380 forte_fill_call_trace_given_top(JavaThread* thd, ASGCT_CallTrace* trace, int depth, frame top_frame) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DPattern.java98 void checkRecursion(int depth) throws SAXException { } argument
H A DRefPattern.java93 void checkRecursion(int depth) throws SAXException { argument
95 checkRecursionDepth = depth;
96 p.checkRecursion(depth);
99 else if (depth == checkRecursionDepth)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/
H A DSAXBufferCreator.java57 private int depth = 0; field in class:SAXBufferCreator
100 depth=0;
128 depth++;
133 if(--depth==0)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamWriterBufferCreator.java52 * Nesting depth of the element.
56 private int depth=0; field in class:StreamWriterBufferCreator
123 depth++;
135 depth++;
148 depth++;
172 if(--depth==0)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DIndentingXMLFilter.java136 if (depth > 0) {
141 depth++;
172 depth--;
206 // if (depth > 0) {
233 if (depth > 0) {
286 if (depth > 0) {
288 for( int i=0; i<depth; i++ )
311 private int depth = 0; field in class:IndentingXMLFilter
/openjdk7/jdk/src/solaris/native/sun/java2d/opengl/
H A DGLXGraphicsConfig.c201 * fbconfig with a minimal combined depth+stencil buffer. Note that we
202 * currently only need depth capabilities (for shape clipping purposes), but
204 * depth buffer (and stencil) sizes at the top of the list. Therefore, we
222 // this is the initial minimum value for the combined depth+stencil size
259 int dtype, rtype, depth, stencil, db, alpha, gamma; local
267 GLX_DEPTH_SIZE, &depth);
279 "[V] id=0x%x db=%d alpha=%d depth=%d stencil=%d valid=",
280 fbvisualid, db, alpha, depth, stencil);
307 (depth >= 16))
312 // depth
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.h103 jint depth; member in struct:_X11SDOps
139 jint depth, jboolean readBits);
149 jboolean XShared_initSurface(JNIEnv *env, X11SDOps *xsdo, jint depth, jint width, jint height, jlong drawable);
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIWindowSurfaceData.java123 "depth: " +
238 private native void initOps(WComponentPeer peer, int depth, int redMask, argument
246 int depth;
251 depth = 32;
253 depth = 24;
257 depth = cm.getPixelSize();
271 initOps(peer, depth, rMask, gMask, bMask, gd.getScreen());
/openjdk7/jdk/src/windows/native/sun/java2d/opengl/
H A DWGLGraphicsConfig.c181 * (must have a depth buffer, support for pbuffers, etc). This method will
184 * depth+stencil buffer. Note that we currently only need depth capabilities
186 * return a list of pixel formats with the largest depth buffer (and stencil)
206 // this is the initial minimum value for the combined depth+stencil size
229 // meets our requirements while keeping the combined depth+stencil sizes
238 int depth, stencil, db, alpha; local
243 depth = attrVals[0];
249 "[V] pixfmt=%d db=%d alpha=%d depth=%d stencil=%d valid=",
250 pixfmt, db, alpha, depth, stenci
[all...]
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DLockingThread.java136 int depth = m.getLockedStackDepth();
137 checkStackFrame(info, ste, depth);
192 void checkStackFrame(ThreadInfo info, StackTraceElement ste, int depth) { argument
194 if (!ste.equals(stacktrace[depth])) {
196 System.out.println("StackTrace at " + depth + " :-" +
197 stacktrace[depth]);
H A DSynchronizerLockingThread.java140 int depth = m.getLockedStackDepth();
141 checkStackFrame(info, ste, depth);
209 void checkStackFrame(ThreadInfo info, StackTraceElement ste, int depth) { argument
211 if (!ste.equals(stacktrace[depth])) {
213 System.out.println("StackTrace at " + depth + " :-" +
214 stacktrace[depth]);
H A DThreadStackTrace.java129 int depth) throws Exception {
137 for (int i = 0; i < depth; i++) {
128 checkStack(Thread t, String[] expectedStack, int depth) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbstractDiagnosticFormatter.java79 * Current depth level of the disgnostic being formatted
82 protected int depth = 0; field in class:AbstractDiagnosticFormatter
174 depth++;
179 depth--;
232 if (maxDepth == -1 || depth < maxDepth) {
233 depth++;
247 depth--;
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DPolicyNodeImpl.java66 // the tree depth
234 * Removes all paths which don't reach the specified depth.
236 * @param depth an int representing the desired minimum depth of all paths
238 void prune(int depth) { argument
249 node.prune(depth);
252 if ((node.mChildren.size() == 0) && (depth > mDepth + 1))
290 * Returns all nodes at the specified depth in the tree.
292 * @param depth an int representing the depth o
295 getPolicyNodes(int depth) argument
305 getPolicyNodes(int depth, Set<PolicyNodeImpl> set) argument
327 getPolicyNodesExpected(int depth, String expectedOID, boolean matchAny) argument
337 getPolicyNodesExpectedHelper(int depth, String expectedOID, boolean matchAny) argument
369 getPolicyNodesValid(int depth, String validOID) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DAssembler.java258 void balance(Label lbl, int depth) { argument
260 //Environment.debugOutput(inst.toString() + ": " + depth + " => " +
261 // (depth + inst.balance()));
262 depth += inst.balance();
263 if (depth < 0) {
264 throw new CompilerError("stack under flow: " + inst.toString() + " = " + depth);
266 if (depth > maxdepth) {
267 maxdepth = depth;
273 if (lbl.depth != depth) {
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmMemoryMeta.java333 public void get(SnmpMibSubRequest req, int depth) argument
335 objectserver.get(this,req,depth);
346 public void set(SnmpMibSubRequest req, int depth) argument
348 objectserver.set(this,req,depth);
359 public void check(SnmpMibSubRequest req, int depth) argument
361 objectserver.check(this,req,depth);
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DReflection.java67 public static Class getCallerClass(int depth) { argument
69 return getCallerClass0(depth+1);
82 private static native Class getCallerClass0(int depth); argument

Completed in 56 milliseconds

12345678910