Searched defs:id (Results 701 - 725 of 770) sorted by relevance

<<21222324252627282930>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBImpl.java217 // default ORB version is the version of ORB with correct Rep-id
361 // This is the unique id of this server (JVM). Multiple incarnations
863 * @param id the logical id for the typecode.
868 public synchronized TypeCode create_struct_tc(String id, argument
873 return new TypeCodeImpl(this, TCKind._tk_struct, id, name, members);
879 * @param id the logical id for the typecode.
886 public synchronized TypeCode create_union_tc(String id, argument
894 id,
908 create_enum_tc(String id, String name, String[] members) argument
925 create_alias_tc(String id, String name, TypeCode original_type) argument
941 create_exception_tc(String id, String name, StructMember[] members) argument
956 create_interface_tc(String id, String name) argument
1035 create_native_tc(String id, String name) argument
1042 create_abstract_interface_tc( String id, String name) argument
1056 create_value_tc(String id, String name, short type_modifier, TypeCode concrete_base, ValueMember[] members) argument
1067 create_recursive_tc(String id) argument
1072 create_value_box_tc(String id, String name, TypeCode boxed_type) argument
1191 register_initial_reference( String id, org.omg.CORBA.Object obj ) argument
[all...]
H A DORBSingleton.java155 public TypeCode create_struct_tc(String id, argument
159 return new TypeCodeImpl(this, TCKind._tk_struct, id, name, members);
162 public TypeCode create_union_tc(String id, argument
169 id,
175 public TypeCode create_enum_tc(String id, argument
179 return new TypeCodeImpl(this, TCKind._tk_enum, id, name, members);
182 public TypeCode create_alias_tc(String id, argument
186 return new TypeCodeImpl(this, TCKind._tk_alias, id, name, original_type);
189 public TypeCode create_exception_tc(String id, argument
193 return new TypeCodeImpl(this, TCKind._tk_except, id, nam
196 create_interface_tc(String id, String name) argument
228 create_native_tc(String id, String name) argument
234 create_abstract_interface_tc( String id, String name) argument
248 create_value_tc(String id, String name, short type_modifier, TypeCode concrete_base, ValueMember[] members) argument
258 create_recursive_tc(String id) argument
262 create_value_box_tc(String id, String name, TypeCode boxed_type) argument
337 register_initial_reference( String id, org.omg.CORBA.Object obj ) argument
626 registerInitialReference( String id, Closure closure ) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTML.java56 * Creates a new <code>Tag</code> with the specified <code>id</code>,
60 * @param id the id of the new tag
62 protected Tag(String id) { argument
63 this(id, false, false);
67 * Creates a new <code>Tag</code> with the specified <code>id</code>;
71 * @param id the id of the new tag
77 protected Tag(String id, boolean causesBreak, boolean isBlock) { argument
78 name = id;
293 UnknownTag(String id) argument
353 Attribute(String id) argument
[all...]
H A DHTMLDocument.java119 * &lt;div id="BOX">
1388 * Returns the element that has the given id <code>Attribute</code>.
1392 * <code>&lt;a id="HelloThere"&gt;</code> the attribute is
1393 * 'id' and the character tag is 'a'.
1395 * <code>getElement(RootElement, HTML.Attribute.id, id)</code>.
1398 * @param id the string representing the desired <code>Attribute</code>
1401 * or <code>null</code> if <code>id</code> is <code>null</code>
1405 public Element getElement(String id) { argument
1406 if (id
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java505 short id = getComponentFontID(fallbackScripts[i],
509 id = remapLocaleMap(fontIndex, styleIndex, fallbackScripts[i], id);
512 id = remapProportional(fontIndex, id);
514 if (contains(nameIDs, id, index)) {
519 + ", fbIndex=" + i + ",fbS=" + fallbackScripts[i] + ", id=" + id);
521 fallbackFontNameIDs.add(id);
522 nameIDs[index++] = id;
561 remapProportional(int fontIndex, short id) argument
1612 contains(short IDs[], short id, int limit) argument
1622 getComponentFontName(short id) argument
1629 getComponentFileName(short id) argument
[all...]
H A DSunToolkit.java1357 final void notifyModalityChange(int id, Dialog source) { argument
1358 ModalityEvent ev = new ModalityEvent(source, modalityListeners, id);
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp138 // These counters are used for assigning id's to each compilation
504 // <task id='9' method='M' osr_bci='X' level='1' blocking='1' stamp='1.234'>
1389 // Assign a serialized id number to this compilation request. If the
1397 uint id; local
1399 id = ++_osr_compilation_id;
1400 if ((uint)CIStartOSR <= id && id < (uint)CIStopOSR) {
1401 return id;
1404 id = ++_compilation_id;
1405 if ((uint)CIStart <= id
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Duniverse.hpp478 DeferredObjAllocEvent(const oop o, const size_t s, const jint id) { argument
481 _arena_id = id;
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp1141 vmIntrinsics::ID id = vmIntrinsics::find_id(klass_id, name_id, sig_id, flags); local
1142 if (id != vmIntrinsics::_none) {
1143 set_intrinsic_id(id);
1157 id = vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
1165 id = MethodHandles::signature_polymorphic_name_id(method_holder(), name());
1166 if (is_static() != MethodHandles::is_signature_polymorphic_static(id))
1167 id = vmIntrinsics::_none;
1171 if (id != vmIntrinsics::_none) {
1173 set_intrinsic_id(id);
/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.cpp1106 Node* id = CMoveNode::is_cmove_id(phase, cmp, tval, fval, b); local
1107 if (id == NULL)
1111 // Since the 'id' value will float free of the diamond, either
1113 Node* ctl = id->in(0);
1115 if (id->is_ConstraintCast()) {
1116 return id->in(1);
1123 return id;
1141 Node* id = is_cmove_id(phase, true_path); local
1142 if (id != NULL) return id;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpAdaptorServer.java1285 void createSnmpRequestHandler(SnmpAdaptorServer server, int id, argument
1292 new SnmpRequestHandler(this, id, s, p, tree, m, a, factory,
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapClient.java367 rber.parseInt(); // msg id
629 int seq; // Request id
645 replyBer.parseInt(); // req id
754 String id = attrid.toLowerCase();
756 return ((id.indexOf(";binary") != -1) ||
757 defaultBinaryAttrs.containsKey(id) ||
758 ((binaryAttrs != null) && (binaryAttrs.containsKey(id))));
888 rber.parseInt(); // msg id
1173 LdapResult extendedOp(String id, byte[] request, Control[] reqCtls, argument
1181 if (id
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DXMLCipher.java3339 private String id = null; field in class:XMLCipher.Factory.EncryptedTypeImpl
3356 return (id);
3360 * @param id
3362 public void setId(String id) { argument
3363 this.id = id;
3586 private String id = null; field in class:XMLCipher.Factory.EncryptionPropertiesImpl
3597 return (id);
3600 public void setId(String id) { argument
3601 this.id
3651 private String id = null; field in class:XMLCipher.Factory.EncryptionPropertyImpl
3692 setId(String id) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DKeyboardFocusManager.java1041 * @param id one of
1051 * @throws IllegalArgumentException if id is not one of
1068 setDefaultFocusTraversalKeys(int id, argument
1071 if (id < 0 || id >= TRAVERSAL_KEY_LENGTH) {
1102 if (i == id) {
1112 oldKeys = defaultFocusTraversalKeys[id];
1113 defaultFocusTraversalKeys[id] =
1117 firePropertyChange(defaultFocusTraversalKeyPropertyNames[id],
1130 * @param id on
1147 getDefaultFocusTraversalKeys(int id) argument
[all...]
H A DWindow.java1083 synchronized void postWindowEvent(int id) { argument
1087 WindowEvent e = new WindowEvent(this, id);
1956 switch(e.id) {
2368 * @param id one of KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
2378 * @throws IllegalArgumentException if id is not one of
2385 public Set<AWTKeyStroke> getFocusTraversalKeys(int id) { argument
2386 if (id < 0 || id >= KeyboardFocusManager.TRAVERSAL_KEY_LENGTH) {
2392 ? focusTraversalKeys[id]
2399 getDefaultFocusTraversalKeys(id);
[all...]
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DKeyEvent.java138 * An unspecified behavior will be caused if the {@code id} parameter
942 private KeyEvent(Component source, int id, long when, int modifiers, argument
944 this(source, id, when, modifiers, keyCode, keyChar, keyLocation);
955 * @param id An integer indicating the type of event.
980 * if <code>id</code> is <code>KEY_TYPED</code> and
982 * or if <code>id</code> is <code>KEY_TYPED</code> and
984 * or if <code>id</code> is <code>KEY_TYPED</code> and
998 public KeyEvent(Component source, int id, long when, int modifiers, argument
1000 super(source, id, when, modifiers);
1001 if (id
1068 KeyEvent(Component source, int id, long when, int modifiers, int keyCode, char keyChar) argument
1078 KeyEvent(Component source, int id, long when, int modifiers, int keyCode) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_Runtime1_x86.cpp643 OopMapSet* Runtime1::generate_handle_exception(StubID id, StubAssembler *sasm) { argument
655 switch (id) {
678 oop_map = save_live_registers(sasm, 1 /*thread*/, id == handle_exception_nofpu_id);
746 switch (id) {
751 restore_live_registers(sasm, id == handle_exception_nofpu_id);
981 OopMapSet* Runtime1::generate_code_for(StubID id, StubAssembler* sasm) { argument
992 switch (id) {
995 oop_maps = generate_handle_exception(id, sasm);
1008 if (id == new_instance_id) {
1010 } else if (id
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.hpp80 typedef lgrp_id_t (*lgrp_home_func_t)(idtype_t idtype, id_t id);
281 static id_t lgrp_home(idtype_t type, id_t id) { return _lgrp_home != NULL ? _lgrp_home(type, id) : -1; } argument
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformssel.hpp117 InstructForm(const char *id, bool ideal_only = false);
118 InstructForm(const char *id, InstructForm *instr, MatchRule *rule);
382 MachNodeForm(char *id);
540 OpClassForm(const char *id);
581 OperandForm(const char *id);
582 OperandForm(const char *id, bool ideal_only);
847 int id; // hold type for this object member in class:InstructForm::AttributeForm
862 int type() { return id;} // return this object's "id"
926 int _commutative_id; // id o
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp288 int _id; // the unique instruction id
349 bool check_flag(InstructionFlag id) const { return (_flags & (1 << id)) != 0; }
350 void set_flag(InstructionFlag id, bool f) { _flags = f ? (_flags | (1 << id)) : (_flags & ~(1 << id)); }; argument
396 int id() const { return _id; } function in class:Instruction
527 HASHING1(Instruction, false, id()) // hashing disabled by default
1457 vmIntrinsics::ID id,
1464 , _id(id)
[all...]
H A Dc1_Optimizer.cpp781 tty->print_cr("Local 0 (value %d) proven non-null upon entry", local0->id());
862 x->id());
882 x->explicit_null_check()->id(), x->id(), obj->id());
888 tty->print_cr("Eliminated AccessField %d's null check for value %d", x->id(), obj->id());
894 tty->print_cr("AccessField %d of value %d proves value to be non-null", x->id(), obj->id());
913 x->explicit_null_check()->id(),
1158 int id = excp->block_id(); local
1169 int id = next->block_id(); local
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWWindowPeer.java767 public void notifyMouseEvent(int id, long when, int button, argument
781 if (id == MouseEvent.MOUSE_EXITED) {
790 postMouseEnteredExitedEvent(target, id, when, modifiers, lp,
808 postMouseEnteredExitedEvent(target, id, when, modifiers, oldp,
813 postMouseEnteredExitedEvent(target, id, when, modifiers, oldp,
818 if (targetPeer != null && targetPeer.isEnabled() && id != MouseEvent.MOUSE_ENTERED) {
821 postMouseEnteredExitedEvent(target, id, when, modifiers, newp,
838 if (id == MouseEvent.MOUSE_PRESSED) {
853 } else if (id == MouseEvent.MOUSE_DRAGGED) {
859 } else if (id
917 postMouseEnteredExitedEvent( Component target, int id, long when, int modifiers, Point loc, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int button) argument
959 notifyKeyEvent(int id, long when, int modifiers, int keyCode, char keyChar, int keyLocation) argument
[all...]
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_PCM.cpp929 int DAUDIO_Start(void* id, int isSource) { argument
930 OSX_DirectAudioDevice *device = (OSX_DirectAudioDevice*)id;
942 int DAUDIO_Stop(void* id, int isSource) { argument
943 OSX_DirectAudioDevice *device = (OSX_DirectAudioDevice*)id;
951 void DAUDIO_Close(void* id, int isSource) { argument
952 OSX_DirectAudioDevice *device = (OSX_DirectAudioDevice*)id;
958 int DAUDIO_Write(void* id, char* data, int byteSize) { argument
959 OSX_DirectAudioDevice *device = (OSX_DirectAudioDevice*)id;
968 int DAUDIO_Read(void* id, char* data, int byteSize) { argument
969 OSX_DirectAudioDevice *device = (OSX_DirectAudioDevice*)id;
978 DAUDIO_GetBufferSize(void* id, int isSource) argument
987 DAUDIO_StillDraining(void* id, int isSource) argument
996 DAUDIO_Flush(void* id, int isSource) argument
1005 DAUDIO_GetAvailable(void* id, int isSource) argument
1016 DAUDIO_GetBytePosition(void* id, int isSource, INT64 javaBytePos) argument
1030 DAUDIO_SetBytePosition(void* id, int isSource, INT64 javaBytePos) argument
1034 DAUDIO_RequiresServicing(void* id, int isSource) argument
1038 DAUDIO_Service(void* id, int isSource) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGImageReader.java981 private native void setOutColorSpace(long structPointer, int id); argument
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKEngine.java274 static WidgetType getWidgetType(JComponent c, Region id) { argument
275 Object value = regionToWidgetTypeMap.get(id);
312 } else if (id == Region.LABEL) {
323 } else if (id == Region.TEXT_FIELD) {
330 } else if (id == Region.FORMATTED_TEXT_FIELD) {
337 } else if (id == Region.ARROW_BUTTON) {
379 Region id, int state, ShadowType shadowType, ArrowType direction,
383 int widget = getWidgetType(context.getComponent(), id).ordinal();
389 Region id, int state, ShadowType shadowType,
396 int widget = getWidgetType(context.getComponent(), id)
378 paintArrow(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, ArrowType direction, String detail, int x, int y, int w, int h) argument
388 paintBox(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h) argument
401 paintBoxGap(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h, PositionType boxGapType, int tabBegin, int size) argument
412 paintCheck(Graphics g, SynthContext context, Region id, String detail, int x, int y, int w, int h) argument
420 paintExpander(Graphics g, SynthContext context, Region id, int state, ExpanderStyle expanderStyle, String detail, int x, int y, int w, int h) argument
430 paintExtension(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h, PositionType placement, int tabIndex) argument
440 paintFlatBox(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h, ColorType colorType) argument
451 paintFocus(Graphics g, SynthContext context, Region id, int state, String detail, int x, int y, int w, int h) argument
459 paintHandle(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h, Orientation orientation) argument
469 paintHline(Graphics g, SynthContext context, Region id, int state, String detail, int x, int y, int w, int h) argument
477 paintOption(Graphics g, SynthContext context, Region id, String detail, int x, int y, int w, int h) argument
485 paintShadow(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h) argument
498 paintSlider(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h, Orientation orientation) argument
508 paintVline(Graphics g, SynthContext context, Region id, int state, String detail, int x, int y, int w, int h) argument
516 paintBackground(Graphics g, SynthContext context, Region id, int state, Color color, int x, int y, int w, int h) argument
630 setRangeValue(SynthContext context, Region id, double value, double min, double max, double visible) argument
[all...]

Completed in 163 milliseconds

<<21222324252627282930>>