Searched defs:tc (Results 1 - 25 of 46) sorted by relevance

12

/openjdk7/langtools/test/tools/javac/varargs/
H A DBadSyntax2.java40 Tclass<String> tc = new Tclass<String>(s); //this gets Assertion field in class:BadSyntax2
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DExceptionListImpl.java58 public void add(TypeCode tc) argument
60 _exceptions.addElement(tc);
H A DRequestImpl.java225 public synchronized void set_return_type(TypeCode tc) argument
229 _result.value().type(tc);
H A DAnyImpl.java244 * @param tc the TypeCode for the element in the Any
246 public void type(TypeCode tc) argument
250 typeCode = TypeCodeImpl.convertToNative(orb, tc);
256 isInitialized = (tc.kind().value() == TCKind._tk_null);
547 public void read_value(org.omg.CORBA.portable.InputStream in, TypeCode tc) argument
562 typeCode = TypeCodeImpl.convertToNative(orb, tc);
643 private String getTCKindName( int tc )
645 if ((tc >= 0) && (tc < TypeCodeImpl.kindNames.length))
646 return TypeCodeImpl.kindNames[tc] ;
1051 insert_Object(org.omg.CORBA.Object o, TypeCode tc) argument
1095 insert_TypeCode(TypeCode tc) argument
[all...]
H A DTypeCodeImpl.java215 public TypeCodeImpl(ORB orb, TypeCode tc) argument
217 // also see the 'convertToNative(ORB orb, TypeCode tc)' function
222 // Should only be used if tc is not an instance of this class!
225 if (tc instanceof TypeCodeImpl) {
226 TypeCodeImpl tci = (TypeCodeImpl)tc;
234 _kind = tc.kind().value();
240 _type_modifier = tc.type_modifier();
242 TypeCode tccb = tc.concrete_base_type();
248 //_memberAccess = tc._memberAccess;
250 _memberAccess = new short[tc
593 convertToNative(ORB orb, TypeCode tc) argument
702 equal(TypeCode tc) argument
898 equivalent(TypeCode tc) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DTypeCodeReader.java68 public void addTypeCodeAtPosition(TypeCodeImpl tc, int position); argument
H A DTypeCodeInputStream.java93 public void addTypeCodeAtPosition(TypeCodeImpl tc, int position) { argument
98 //if (TypeCodeImpl.debug) System.out.println(this + " adding tc " + tc + " at position " + position);
99 typeMap.put(new Integer(position), tc);
106 //System.out.println("Getting tc " + (TypeCode)typeMap.get(new Integer(position)) +
H A DWrapperInputStream.java154 public void addTypeCodeAtPosition(TypeCodeImpl tc, int position) { argument
159 //if (TypeCodeImpl.debug) System.out.println(this + " adding tc " + tc + " at position " + position);
160 typeMap.put(new Integer(position), tc);
166 //if (TypeCodeImpl.debug) System.out.println("Getting tc " + (TypeCodeImpl)typeMap.get(new Integer(position)) +
H A DIDLJavaSerializationOutputStream.java387 public final void write_TypeCode(TypeCode tc) { argument
388 if (tc == null) {
392 if (tc instanceof TypeCodeImpl) {
393 tci = (TypeCodeImpl) tc;
395 tci = new TypeCodeImpl(orb, tc);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1Refine.cpp109 void ConcurrentG1Refine::threads_do(ThreadClosure *tc) { argument
112 tc->do_thread(_threads[i]);
/openjdk7/hotspot/src/share/vm/utilities/
H A Devents.cpp56 ThreadCritical tc; local
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DRequest.java233 * @param tc the <code>TypeCode</code> object containing type information
237 public abstract void set_return_type(TypeCode tc); argument
H A DTypeCode.java178 * @param tc the <code>TypeCode</code> object to compare against
183 public abstract boolean equal(TypeCode tc); argument
191 * @param tc the typecode to compare with this typecode
197 public abstract boolean equivalent(TypeCode tc); argument
/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.cpp100 ThreadCritical tc; local
123 ThreadCritical tc; local
143 ThreadCritical tc; local
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicEditorPaneUI.java111 public EditorKit getEditorKit(JTextComponent tc) { argument
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.cpp211 void ConcurrentMarkSweepThread::threads_do(ThreadClosure* tc) { argument
212 assert(tc != NULL, "Null ThreadClosure");
214 tc->do_thread(_cmst);
221 gang->threads_do(tc);
/openjdk7/hotspot/test/compiler/6942326/
H A DTest.java148 TestCon tc = new TestCon17();
149 test_consub_indexof(tc, b);
153 tc = new TestCon16();
154 test_consub_indexof(tc, b);
158 tc = new TestCon9();
159 test_consub_indexof(tc, b);
163 tc = new TestCon8();
164 test_consub_indexof(tc, b);
168 tc = new TestCon4();
169 test_consub_indexof(tc,
308 test_consub_indexof(TestCon tc, String b) argument
322 test_conmis_indexof(TestCon tc, String b) argument
336 test_subcon(TestCon tc) argument
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DDatagramSocket.java1109 * <P> The tc <B>must</B> be in the range <code> 0 <= tc <=
1131 * for Internet Protocol v6 <code>tc</code> is the value that
1134 * @param tc an <code>int</code> value for the bitset.
1140 public synchronized void setTrafficClass(int tc) throws SocketException { argument
1141 if (tc < 0 || tc > 255)
1142 throw new IllegalArgumentException("tc is not in range 0 -- 255");
1146 getImpl().setOption(SocketOptions.IP_TOS, new Integer(tc));
H A DSocket.java1288 * <P> The tc <B>must</B> be in the range <code> 0 <= tc <=
1318 * For Internet Protocol v6 <code>tc</code> is the value that
1321 * @param tc an <code>int</code> value for the bitset.
1327 public void setTrafficClass(int tc) throws SocketException { argument
1328 if (tc < 0 || tc > 255)
1329 throw new IllegalArgumentException("tc is not in range 0 -- 255");
1333 getImpl().setOption(SocketOptions.IP_TOS, new Integer(tc));
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DgcTaskManager.cpp572 void GCTaskManager::threads_do(ThreadClosure* tc) { argument
573 assert(tc != NULL, "Null ThreadClosure");
576 tc->do_thread(thread(i));
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DBaseSSLSocketImpl.java483 public final void setTrafficClass(int tc) throws SocketException { argument
485 super.setTrafficClass(tc);
487 self.setTrafficClass(tc);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DType.java134 public final boolean isType(int tc) { argument
135 return typeCode == tc;
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DDatagramSocketAdaptor.java349 public void setTrafficClass(int tc) throws SocketException { argument
350 setIntOption(StandardSocketOptions.IP_TOS, tc);
H A DSocketAdaptor.java404 public void setTrafficClass(int tc) throws SocketException { argument
405 setIntOption(StandardSocketOptions.IP_TOS, tc);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.cpp383 ValueStack* tc = t->caller_state(); local
384 if (tc == NULL) return s;
385 t = tc;
386 bci_result = tc->bci();

Completed in 336 milliseconds

12