Searched defs:info (Results 226 - 250 of 292) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java143 info().flashColor = flashColor;
151 return info().flashColor;
158 info().flashTime = flashTime;
166 return info().flashTime;
173 info().flashCount = flashCount;
180 return info().flashCount;
186 info().stream = stream;
193 return info().stream;
200 info().log(toShortString() + " Setting font: " + aFont);
216 info()
1455 static DebugGraphicsInfo info() { method in class:DebugGraphics
[all...]
H A DGroupLayout.java777 ComponentInfo info = componentInfos.remove(existingComponent);
778 if (info == null) {
785 info.setComponent(newComponent);
786 componentInfos.put(newComponent, info);
857 ComponentInfo info = componentInfos.remove(component);
858 if (info != null) {
859 info.dispose();
927 for (ComponentInfo info : componentInfos.values()) {
928 info.setBounds(insets, width, ltr);
1084 for (ComponentInfo info
3543 remove(ComponentInfo info) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DParsedSynthStyle.java97 public void setPainters(PainterInfo[] info) { argument
98 _painters = info;
112 // Check the state info first
113 StateInfo info = (StateInfo)getStateInfo(context.getComponentState());
115 if (info != null) {
116 if ((painter = getBestPainter(info.getPainters(), method,
127 private SynthPainter getBestPainter(PainterInfo[] info, String method, argument
129 if (info != null) {
135 for (int counter = info.length - 1; counter >= 0; counter--) {
136 PainterInfo pi = info[counte
177 StateInfo(DefaultSynthStyle.StateInfo info) argument
196 addTo( DefaultSynthStyle.StateInfo info) argument
257 equalsPainter(PainterInfo info) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DFixedHeightLayoutCache.java72 private SearchInfo info; field in class:FixedHeightLayoutCache
82 info = new SearchInfo();
209 if(root.getPathForRow(row, getRowCount(), info)) {
210 return info.getPath();
1320 * Information about the found row is returned in <code>info</code>.
1325 SearchInfo info) {
1327 info.node = this;
1328 info.isNodeParentNode = false;
1329 info.childIndex = childIndex;
1342 info
1324 getPathForRow(int row, int nextRow, SearchInfo info) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DStandardGlyphVector.java79 * transform. In the glyph info array, the bounds are the outline
267 FontInfo info) {
268 if (info.aaHint == SunHints.INTVAL_TEXT_ANTIALIAS_ON) {
623 // get info from the font and use real OT/GX justification. Right now
1118 // !!! need to support creating a StandardGlyphVector from a TextMeasurer's info...
1580 * -For general info, strikes are held with soft references.
1583 * info along with the image and position info, but toss the strike info
266 getStandardGV(GlyphVector gv, FontInfo info) argument
/openjdk7/jdk/src/share/classes/java/security/
H A DProvider.java78 * <tr><td><code>Provider.id info</code></td>
108 private String info; field in class:Provider
131 * @param info a description of the provider and its services.
133 protected Provider(String name, double version, String info) { argument
136 this.info = info;
166 return info;
431 // note: name and info may be null
434 super.put("Provider.id info", String.valueOf(info));
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DlinkResolver.cpp1056 CallInfo info; local
1057 resolve_virtual_call(info, Handle(), receiver_klass, resolved_klass, name, signature, current_klass, true, false, THREAD);
1062 return info.selected_method();
1072 CallInfo info; local
1073 resolve_interface_call(info, Handle(), receiver_klass, resolved_klass, name, signature, current_klass, true, false, THREAD);
1078 return info.selected_method();
1088 CallInfo info; local
1089 resolve_virtual_call(info, Handle(), receiver_klass, resolved_klass, name, signature, current_klass, true, false, THREAD);
1094 return info.vtable_index();
1103 CallInfo info; local
1115 CallInfo info; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSSoundbank.java177 private final DLSInfo info = new DLSInfo(); field in class:DLSSoundbank
405 info.name = null;
410 info.name = chunk.readString(chunk.available());
412 info.creationDate = chunk.readString(chunk.available());
414 info.engineers = chunk.readString(chunk.available());
416 info.product = chunk.readString(chunk.available());
418 info.copyright = chunk.readString(chunk.available());
420 info.comments = chunk.readString(chunk.available());
422 info.tools = chunk.readString(chunk.available());
424 info
1158 writeInfo(RIFFWriter writer, DLSInfo info) argument
[all...]
H A DDirectAudioDevice.java171 public Line getLine(Line.Info info) throws LineUnavailableException { argument
172 Line.Info fullInfo = getLineInfo(info);
174 throw new IllegalArgumentException("Line unsupported: " + info);
182 // if a format is specified by the info class passed in, use it.
187 if (info instanceof DataLine.Info) {
188 supportedFormats = ((DataLine.Info)info).getFormats();
189 lineBufferSize = ((DataLine.Info)info).getMaxBufferSize();
196 // use the last format specified in the line.info object passed
216 throw new IllegalArgumentException("Line unsupported: " + info);
220 public int getMaxLines(Line.Info info) { argument
401 DirectDL(DataLine.Info info, DirectAudioDevice mixer, AudioFormat format, int bufferSize, int mixerIndex, int deviceID, boolean isSource) argument
925 DirectSDL(DataLine.Info info, AudioFormat format, int bufferSize, DirectAudioDevice mixer) argument
942 DirectTDL(DataLine.Info info, AudioFormat format, int bufferSize, DirectAudioDevice mixer) argument
1034 DirectClip(DataLine.Info info, AudioFormat format, int bufferSize, DirectAudioDevice mixer) argument
[all...]
H A DSoftSynthesizer.java178 final static MidiDevice.Info info = new Info(); field in class:SoftSynthesizer
302 private void processPropertyInfo(Map<String, Object> info) { argument
303 AudioSynthesizerPropertyInfo[] items = getPropertyInfo(info);
844 return info;
872 public AudioSynthesizerPropertyInfo[] getPropertyInfo(Map<String, Object> info) { argument
878 // If info != null or synthesizer is closed
880 // If info == null and synthesizer is open
882 boolean o = info == null && open;
949 Object v = (info == null) ? null : info
1039 open(SourceDataLine line, Map<String, Object> info) argument
1141 openStream(AudioFormat targetFormat, Map<String, Object> info) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java246 // cached values computed from GlyphSets and set info:
1072 * The text hit info (1, t) represents the trailing side of 'b'. If 'q',
1118 float[] info) {
1176 if (info == null) {
1177 info = new float[2];
1181 info[1] = (float) ((topX - bottomX) / bounds.getWidth());
1182 info[0] = (float) (topX + (info[1]*bounds.getX()));
1185 info[1] = (float) ((topX - bottomX) / bounds.getHeight());
1186 info[
1116 getCaretInfo(int caret, Rectangle2D bounds, float[] info) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp273 void LIRGenerator::cmp_mem_int(LIR_Condition condition, LIR_Opr base, int disp, int c, CodeEmitInfo* info) { argument
275 __ load(new LIR_Address(base, disp, T_INT), o7opr, info);
280 void LIRGenerator::cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Opr base, int disp, BasicType type, CodeEmitInfo* info) { argument
282 __ load(new LIR_Address(base, disp, type), o7opr, info);
287 void LIRGenerator::cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Opr base, LIR_Opr disp, BasicType type, CodeEmitInfo* info) { argument
289 __ load(new LIR_Address(base, disp, type), o7opr, info);
420 CodeEmitInfo* info = state_for(x, x->state(), true); local
421 monitor_enter(obj.result(), lock, hdr, scratch, x->monitor_no(), info_for_exception, info);
503 CodeEmitInfo* info = state_for(x); local
507 __ branch(lir_cond_equal, T_LONG, new DivByZeroStub(info));
567 CodeEmitInfo* info = state_for(x); local
764 CodeEmitInfo* info = state_for(x, x->state()); local
882 CodeEmitInfo* info = state_for(x, x->state()); local
896 CodeEmitInfo* info = state_for(x, x->state()); local
922 CodeEmitInfo* info = state_for(x, x->state()); local
974 CodeEmitInfo* info = state_for(x, x->state()); local
1003 reg, args, info); local
1137 volatile_field_store(LIR_Opr value, LIR_Address* address, CodeEmitInfo* info) argument
1146 volatile_field_load(LIR_Address* address, LIR_Opr result, CodeEmitInfo* info) argument
[all...]
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c847 ProcessDir(manifest_info* info, HKEY top_key) { argument
860 if (JLI_AcceptableRelease(name, info->jre_version))
907 LocateJRE(manifest_info* info) { argument
916 if ((path = ProcessDir(info, key)) != NULL) {
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c322 static void dummyTimer(CFRunLoopTimerRef timer, void *info) {} argument
/openjdk7/jdk/src/share/back/
H A DdebugInit.c772 EventInfo info; local
776 (void)memset(&info,0,sizeof(info));
777 info.ei = triggering_ei;
778 eventHelper_recordEvent(&info, 0, suspendPolicy, initEventBag);
H A DeventHandler.c751 EventInfo info; local
756 (void)memset(&info,0,sizeof(info));
757 info.ei = EI_SINGLE_STEP;
758 info.thread = thread;
759 info.clazz = getMethodClass(jvmti_env, method);
760 info.method = method;
761 info.location = location;
762 event_callback(env, &info);
773 EventInfo info; local
796 EventInfo info; local
824 EventInfo info; local
849 EventInfo info; local
867 EventInfo info; local
886 EventInfo info; local
915 EventInfo info; local
937 EventInfo info; local
964 EventInfo info; local
991 EventInfo info; local
1014 EventInfo info; local
1036 EventInfo info; local
1063 EventInfo info; local
1096 EventInfo info; local
1130 EventInfo info; local
1172 EventInfo info; local
1212 EventInfo info; local
1231 EventInfo info; local
[all...]
H A DeventHelper.c50 EventInfo info; member in struct:EventCommandSingle
355 * So get the method class to write location info.
406 EventInfo *evinfo = &command->info;
513 thread = single->u.eventCommand.info.thread;
928 if (command->u.eventCommand.info.ei == EI_VM_DEATH) {
1013 (void)memcpy(&command->u.eventCommand.info, evinfo, sizeof(*evinfo));
1014 saveEventInfoRefs(env, &command->u.eventCommand.info);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp842 CallInfo info; local
845 LinkResolver::resolve_interface_call(info, receiver, recv_klass, klass,
849 return info.selected_method();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java1254 b.info = kind;
1300 boolean change = f.merge(cw, n.frame, e.info);
1351 b.info = Edge.EXCEPTION;
1446 l.inputStackTop = b.info == Edge.EXCEPTION ? 1 : start
1447 + b.info;
1511 * @param info information about the control flow edge to be added.
1514 private void addSuccessor(final int info, final Label successor) { argument
1517 b.info = info;
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_Ports.c245 void printInfo(PortInfo* info) { argument
246 TRACE5(" PortInfo %p: handle=%p, mixerIndex=%d, dstLineCount=%d, dstLines=%p, ", info, (void*) info->handle, info->mixerIndex, info->dstLineCount, info->dstLines);
247 TRACE5("srcLineCount=%d, srcLines=%p, targetPortCount=%d, sourcePortCount=%d, ports=%p, ", info->srcLineCount, info->srcLines, info->targetPortCount, info
378 PortInfo* info = NULL; local
485 PortInfo* info = (PortInfo*) id; local
516 PortInfo* info = (PortInfo*) id; local
545 PortInfo* info = (PortInfo*) id; local
557 PortInfo* info = (PortInfo*) id; local
604 findDestLine(PortInfo* info, DWORD dwDestination) argument
617 createMuxControl(PortInfo* info, PortControlCreator* creator, MIXERLINE* dstLine, DWORD srcLineID, void** controlObjects, int* controlCount) argument
719 createPortControl(PortInfo* info, PortControlCreator* creator, MIXERCONTROL* mixerControl, INT32 type, void** controlObjects, int* controlCount) argument
798 createLineControls(PortInfo* info, PortControlCreator* creator, MIXERLINE* line, void** controlObjects, int* controlCount) argument
852 addCompoundControl(PortInfo* info, PortControlCreator* creator, char* name, void** controlObjects, int* controlCount) argument
868 addAllControls(PortInfo* info, PortControlCreator* creator, void** controlObjects, int* controlCount) argument
884 PortInfo* info = (PortInfo*) id; local
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DConstantPool.java257 CPInfo info = pool[index];
258 if (info == null) {
267 CPInfo info = get(index);
268 if (info.getTag() != expected_type)
269 throw new UnexpectedEntry(index, expected_type, info.getTag());
270 return info;
291 CPInfo info = pool[i];
292 if (info instanceof CONSTANT_Utf8_info &&
293 ((CONSTANT_Utf8_info) info).value.equals(value))
336 R visitClass(CONSTANT_Class_info info, argument
337 visitDouble(CONSTANT_Double_info info, P p) argument
338 visitFieldref(CONSTANT_Fieldref_info info, P p) argument
339 visitFloat(CONSTANT_Float_info info, P p) argument
340 visitInteger(CONSTANT_Integer_info info, P p) argument
341 visitInterfaceMethodref(CONSTANT_InterfaceMethodref_info info, P p) argument
342 visitInvokeDynamic(CONSTANT_InvokeDynamic_info info, P p) argument
343 visitLong(CONSTANT_Long_info info, P p) argument
344 visitNameAndType(CONSTANT_NameAndType_info info, P p) argument
345 visitMethodref(CONSTANT_Methodref_info info, P p) argument
346 visitMethodHandle(CONSTANT_MethodHandle_info info, P p) argument
347 visitMethodType(CONSTANT_MethodType_info info, P p) argument
348 visitString(CONSTANT_String_info info, P p) argument
349 visitUtf8(CONSTANT_Utf8_info info, P p) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c49 * Each element has a key (N bytes) and possible additional info.
107 void *info; /* Info pointer */ member in struct:TableElement
116 Blocks *info_blocks; /* Blocks space for info */
123 int info_size; /* Size of info structure. */
215 return element->info;
589 void *info; local
592 /* Assume we need new allocations for key and info */
594 info = NULL;
608 info = element->info;
760 void *info; local
910 void *info; local
[all...]
H A Dhprof_tls.c156 delete_globalref(JNIEnv *env, TlsInfo *info) argument
161 HPROF_ASSERT(info!=NULL);
162 ref = info->globalref;
163 info->globalref = NULL;
170 clean_info(TlsInfo *info) argument
173 if ( info->stack != NULL ) {
174 stack_term(info->stack);
175 info->stack = NULL;
177 if ( info->frames_buffer != NULL ) {
178 HPROF_FREE(info
191 TlsInfo * info; local
208 TlsInfo *info; local
229 TlsInfo *info; local
266 TlsInfo *info; local
296 TlsInfo *info; local
306 setup_trace_buffers(TlsInfo *info, int max_depth) argument
348 TlsInfo *info; local
368 TlsInfo *info; local
426 insure_method_on_stack(jthread thread, TlsInfo *info, jlong current_time, FrameIndex frame_index, jmethodID method) argument
488 TlsInfo * info; local
558 TlsInfo *info; local
604 TlsInfo *info; local
688 TlsInfo info; local
726 TlsInfo *info; local
775 TlsInfo *info; local
807 TlsInfo *info; local
816 TlsInfo *info; local
831 TlsInfo *info; local
858 TlsInfo *info; local
928 TlsInfo *info; local
941 TlsInfo *info; local
982 TlsInfo *info; local
1101 TlsInfo *info; local
1112 TlsInfo *info; local
1127 TlsInfo *info; local
1148 TlsInfo *info; local
1157 TlsInfo *info; local
1166 TlsInfo *info; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CertImpl.java97 // x509.info.subject.dname
101 // x509.info.issuer.dname
105 // x509.info.serialNumber.number
109 // x509.info.key.value
114 // x509.info.version.value
131 protected X509CertInfo info = null; field in class:X509CertImpl
300 * @params info the X509CertificateInfo which the Certificate is to be
304 this.info = certInfo;
448 byte[] rawCert = info.getEncodedInfo();
521 // encode certificate info
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp667 objArrayHandle info; local
670 info = objArrayHandle(THREAD, info_oop);
673 info->obj_at_put(0, bsm());
677 info->obj_at_put(1+i, arg_oop);
680 return info();

Completed in 1955 milliseconds

1234567891011>>