Searched defs:id (Results 576 - 600 of 770) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DIdentifierExpression.java41 Identifier id; field in class:IdentifierExpression
48 public IdentifierExpression(long where, Identifier id) { argument
50 this.id = id;
52 public IdentifierExpression(IdentifierToken id) { argument
53 this(id.getWhere(), id.getName());
57 this.id = field.getName();
70 public boolean equals(Identifier id) { argument
71 return this.id
[all...]
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfoFile.java292 * u1 byte_length; // byte length of id
293 * u1 id[byte_length]; // zone name string
329 * u2 nentries; // number of id-pairs
508 * @param originalId the given custom id (before normalized such as "GMT+9")
513 String id = toCustomID(gmtOffset);
515 ZoneInfo zi = getFromCache(id);
517 zi = new ZoneInfo(id, gmtOffset);
518 zi = addToCache(id, zi);
519 if (!id.equals(originalId)) {
552 * @return a ZoneInfo instance created for the specified id, o
556 getZoneInfo(String id) argument
575 getFromCache(String id) argument
582 addToCache(String id, ZoneInfo zi) argument
595 createZoneInfo(String id) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/compiledMethodLoad/
H A DcompiledMethodLoad.c82 jmethodID id; local
84 id = record->methods[i];
86 err = (*jvmti)->GetMethodDeclaringClass(jvmti, id,
94 err = (*jvmti)->GetMethodName(jvmti, id, &method_name,
/openjdk7/jdk/test/sun/jvmstat/monitor/HostIdentifier/
H A DHostIdentifierCreate.java115 System.out.println("running test case " + test.id);
119 throw new SAXException("Testcase id = " + test.id, e);
215 int id_n = attributes.getIndex("id");
218 throw new RuntimeException("id attribute expected");
230 String id = attributes.getValue(id_n);
232 test = new TestCase(id, hostid_input);
288 return "Test " + test.id + " " + "Failed: "
297 String id; field in class:TestCase
302 public TestCase(String id, Strin argument
[all...]
/openjdk7/jdk/test/sun/jvmstat/monitor/VmIdentifier/
H A DVmIdentifierCreateResolve.java117 System.out.println("running test case " + test.id);
229 int id_n = attributes.getIndex("id");
232 throw new RuntimeException("id attribute expected");
248 String id = attributes.getValue(id_n);
250 test = new TestCase(id, vmid_input, hostid_input);
314 return "Test " + test.id + " " + "Failed: "
330 return "Test " + test.id + " " + "Failed: "
345 return "Test " + test.id + " " + "Failed: "
354 String id; field in class:TestCase
362 public TestCase(String id, Strin argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/
H A DThreadImpl.java129 public ThreadInfo getThreadInfo(long id) { argument
131 ids[0] = id;
136 public ThreadInfo getThreadInfo(long id, int maxDepth) { argument
138 ids[0] = id;
219 public long getThreadCpuTime(long id) { argument
221 ids[0] = id;
259 long id = ids[0];
260 if (id == Thread.currentThread().getId()) {
261 id = 0;
263 times[0] = getThreadTotalCpuTime0(id);
278 getThreadUserTime(long id) argument
323 getThreadAllocatedBytes(long id) argument
454 getThreadTotalCpuTime0(long id) argument
456 getThreadUserCpuTime0(long id) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmMemoryMeta.java439 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
441 public String getAttributeName(long id) argument
443 switch((int)id) {
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMessageHeader.java409 /** Convert a message-id string to canonical form (strips off
411 public static String canonicalID(String id) { argument
412 if (id == null)
415 int len = id.length();
418 while (st < len && ((c = id.charAt(st)) == '<' ||
423 while (st < len && ((c = id.charAt(len - 1)) == '>' ||
428 return substr ? id.substring(st, len) : id;
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DTarget.java45 /** object id for target */
46 private final ObjID id; field in class:Target
79 * a specific object id.
87 public Target(Remote impl, Dispatcher disp, Remote stub, ObjID id, argument
93 this.id = id;
160 return new ObjectEndpoint(id, exportedTransport);
/openjdk7/langtools/test/tools/javac/TryWithResources/
H A DTwrTests.java278 * @param id the ID of this resource
285 private static Resource createResource(int id, argument
289 if (id > createFailureId)
290 throw new AssertionError("Resource " + id + " shouldn't be created");
291 boolean createSucceeds = id != createFailureId;
292 boolean closeSucceeds = (closeFailureBitMap & (1 << id)) == 0;
293 return new Resource(id, createSucceeds, closeSucceeds, closedList);
315 * Bit i is set iff id should throw a CloseFailException.
324 int id = ((Resource.CloseFailException) t).resourceId();
325 if ((1 << id
682 createResource(int id, int closeFailureBitMap, List<Integer> closedList) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DKeyIndex.java73 * id() function.
133 * This method must be called by the code generated by the id() function
135 * id() differ in the way the lookup value can be whitespace separated
136 * list of tokens for the id() function, but a single string for the
168 * Return an IntegerArray for the DOM Node which has the given id.
170 * @param id The id
171 * @return A IntegerArray representing the Node whose id is the given value.
173 public IntegerArray getDOMNodeById(String id) { argument
177 int ident = _enhancedDOM.getElementById(id);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerHandlerImpl.java97 * @return The systemID that was set with setSystemId(String id)
107 * @param id Base URI for this stylesheet
109 public void setSystemId(String id) { argument
110 _systemId = id;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DAttrImpl.java212 * @param id
214 public void setIdAttribute(boolean id){ argument
218 isIdAttribute(id);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DDOMBuilder.java412 * @param id The ID string.
415 public void setIDAttribute(String id, Element elem) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DValueHandlerImpl.java391 // Rep-id calculations take place based on the ORB version
405 public String getClassName(String id) argument
407 RepositoryId repID = RepositoryId.cache.getId(id);
411 public Class getClassFromType(String id) argument
414 RepositoryId repId = RepositoryId.cache.getId(id);
418 public Class getAnyClassFromType(String id) argument
421 RepositoryId repId = RepositoryId.cache.getId(id);
430 public String getDefinedInId(String id) argument
432 RepositoryId repId = RepositoryId.cache.getId(id);
436 public String getUnqualifiedName(String id) argument
442 getSerialVersionUID(String id) argument
454 isSequence(String id) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebuggerClient.java118 public long[] getThreadIntegerRegisterSet(long id) { argument
120 return remoteDebugger.getThreadIntegerRegisterSet(id, false);
375 int getThreadHashCode(long id) { argument
377 return remoteDebugger.getThreadHashCode(id, false);
380 return (int) id;
387 public ThreadProxy getThreadForThreadId(long id) { argument
388 return threadFactory.createThreadWrapper(id);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJLayer.java789 private boolean isEventEnabled(long eventMask, int id) { argument
791 id >= ComponentEvent.COMPONENT_FIRST &&
792 id <= ComponentEvent.COMPONENT_LAST)
794 id >= ContainerEvent.CONTAINER_FIRST &&
795 id <= ContainerEvent.CONTAINER_LAST)
797 id >= FocusEvent.FOCUS_FIRST &&
798 id <= FocusEvent.FOCUS_LAST)
800 id >= KeyEvent.KEY_FIRST &&
801 id <= KeyEvent.KEY_LAST)
803 id
[all...]
H A DJScrollBar.java672 protected void fireAdjustmentValueChanged(int id, int type, int value) { argument
673 fireAdjustmentValueChanged(id, type, value, getValueIsAdjusting());
682 private void fireAdjustmentValueChanged(int id, int type, int value, argument
689 e = new AdjustmentEvent(this, id, type, value, isAdjusting);
708 int id = AdjustmentEvent.ADJUSTMENT_VALUE_CHANGED;
713 fireAdjustmentValueChanged(id, type, value, isAdjusting);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DInternationalFormatter.java458 * <code>id</code>. This will return <code>-1</code> if the attribute
461 int getAttributeStart(AttributedCharacterIterator.Attribute id) { argument
467 if (iterator.getAttribute(id) != null) {
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DGifImageDecoder.java643 public GifFrame(GifImageDecoder id, int dm, int dl, boolean init, argument
645 this.decoder = id;
/openjdk7/jdk/src/share/classes/javax/management/timer/
H A DTimer.java648 * @param id The timer notification identifier.
653 public synchronized void removeNotification(Integer id) throws InstanceNotFoundException { argument
657 if (timerTable.containsKey(id) == false) {
663 Object[] obj = timerTable.get(id);
702 timerTable.remove(id);
822 * @param id The timer notification identifier.
827 public String getNotificationType(Integer id) { argument
829 Object[] obj = timerTable.get(id);
839 * @param id The timer notification identifier.
844 public String getNotificationMessage(Integer id) { argument
865 getNotificationUserData(Integer id) argument
881 getDate(Integer id) argument
899 getPeriod(Integer id) argument
916 getNbOccurences(Integer id) argument
934 getFixedRate(Integer id) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.hpp107 void set_annotation(ID id) { argument
108 assert((int)id >= 0 && (int)id < (int)_annotation_LIMIT, "oob");
109 _annotations_present |= nth_bit((int)id);
113 bool has_annotation(ID id) { return (nth_bit((int)id) & _annotations_present) != 0; } argument
/openjdk7/hotspot/src/share/vm/opto/
H A DidealKit.hpp86 void set_id(int id) { _id = id; } argument
89 int id() { assert(has_id(),"uninitialized id"); return _id; } function in class:IdealVariable
159 void set(IdealVariable& v, Node* rhs) { _cvstate->set_req(first_var + v.id(), rhs); }
160 Node* value(IdealVariable& v) { return _cvstate->in(first_var + v.id()); }
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DClientNotifForwarder.java152 abstract protected void removeListenerForMBeanRemovedNotif(Integer id) argument
232 Integer id = null;
239 id=li.getListenerID();
241 infoList.remove(id);
247 if (id == null)
250 return id;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpRequestHandler.java95 public SnmpRequestHandler(SnmpAdaptorServer server, int id, argument
102 super(server, id, f, n);
531 // associated to the current request. Use the invoke id

Completed in 117 milliseconds

<<21222324252627282930>>