Searched refs:tc (Results 1 - 25 of 104) sorted by relevance

12345

/openjdk7/langtools/test/tools/javac/annotations/6365854/
H A DT6365854.java48 TestCore tc = new TestCore();
49 System.out.println(tc.toString());
/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/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DGraphViewerImplementation.java39 EditorTopComponent tc = new EditorTopComponent(diagram);
40 tc.open();
41 tc.requestActive();
/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/jdk/src/solaris/native/sun/awt/
H A Dawt_motif.h40 extern int32_t awt_motif_getIMStatusHeight(Widget w, jobject tc);
41 extern XVaNestedList awt_motif_getXICStatusAreaList(Widget w, jobject tc);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWTextComponentPeer.java58 TextComponent tc = (TextComponent)target;
59 String text = tc.getText();
64 select(tc.getSelectionStart(), tc.getSelectionEnd());
65 setEditable(tc.isEditable());
/openjdk7/jdk/test/java/math/BigDecimal/
H A DDivideTests.java232 for(BigDecimal[] tc : testCases) {
234 if (! (quotient = tc[0].divide(tc[1])).equals(tc[2]) ) {
236 System.err.println("Unexpected quotient from " + tc[0] + " / " + tc[1] +
237 "; expected " + tc[2] + " got " + quotient);
253 for(BigDecimal[] tc : testCases) {
255 if (! (quotient = tc[0].divide(tc[
[all...]
/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 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...]
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...]
/openjdk7/jdk/test/java/net/Socket/
H A DTrafficClass.java43 int tc = s.getTrafficClass();
53 int tc = s.getTrafficClass();
/openjdk7/langtools/test/tools/javac/
H A DT6326754.java71 TestConstructor tc = new TestConstructor("saaa");
72 tc.setT("sasa");
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.cpp62 TreeList<Chunk>* TreeList<Chunk>::as_TreeList(TreeChunk<Chunk>* tc) { argument
64 assert(tc->size() >= BinaryTreeDictionary<Chunk>::min_tree_chunk_size, "Chunk is too small for a TreeChunk");
65 TreeList<Chunk>* tl = tc->embedded_list();
66 tc->set_list(tl);
71 tl->set_size(tc->size());
72 tl->link_head(tc);
73 tl->link_tail(tc);
84 TreeChunk<Chunk>* tc = (TreeChunk<Chunk>*) addr; local
90 SpaceMangler::is_mangled((HeapWord*) tc->size_addr()) &&
91 SpaceMangler::is_mangled((HeapWord*) tc
103 remove_chunk_replace_if_needed(TreeChunk<Chunk>* tc) argument
515 remove_chunk_from_tree(TreeChunk<Chunk>* tc) argument
697 semi_splay_step(TreeList<Chunk>* tc) argument
732 TreeChunk<Chunk>* tc = TreeChunk<Chunk>::as_TreeChunk(fc); local
774 TreeList<Chunk>* tc = root(); local
786 Chunk* tc = tl->head(); local
[all...]
H A DbinaryTreeDictionary.hpp97 static TreeList<Chunk>* as_TreeList(TreeChunk<Chunk>* tc);
112 // remove_chunk_replace_if_needed() removes the given "tc" from the TreeList.
113 // If "tc" is the first chunk in the list, it is also the
118 TreeList<Chunk>* remove_chunk_replace_if_needed(TreeChunk<Chunk>* tc);
120 void return_chunk_at_head(TreeChunk<Chunk>* tc);
121 void return_chunk_at_tail(TreeChunk<Chunk>* tc);
200 TreeChunk<Chunk>* remove_chunk_from_tree(TreeChunk<Chunk>* tc);
213 bool verify_chunk_in_free_list(Chunk* tc) const;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DCDREncapsCodec.java125 public Any decode_value( byte[] data, TypeCode tc )
130 if( tc == null )
132 return decodeImpl( data, tc );
182 private Any decodeImpl( byte[] data, TypeCode tc )
202 if( tc == null ) {
203 tc = cdrIn.read_TypeCode();
208 any.read_value( cdrIn, tc );
/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/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPopulationCoding.java89 Coding tc = longest;
94 tc = shorter; // shorten it by reducing B
96 return tc;
106 Coding tc = (Coding) tokenCoding;
107 if (tc == fitTokenCoding(fVlen, tc.L()))
108 this.L = tc.L();
124 Coding tc = (Coding) tokenCoding;
129 for (int n = 1; n <= tc.B(); n++) {
130 int nmax = tc
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebuggerServer.java144 ThreadContext tc = t.getContext();
145 long[] regs = new long[tc.getNumRegisters()];
147 regs[r] = tc.getRegister(r);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCAccessible.java105 JTextComponent tc = (JTextComponent) c;
107 tc.getDocument().addDocumentListener(listener);
108 tc.addCaretListener(listener);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1Refine.hpp82 void threads_do(ThreadClosure *tc);
H A DconcurrentG1Refine.cpp109 void ConcurrentG1Refine::threads_do(ThreadClosure *tc) { argument
112 tc->do_thread(_threads[i]);
/openjdk7/jdk/test/java/awt/event/TextEvent/TextEventSequenceTest/
H A DTextEventSequenceTest.java114 TextComponent tc = (TextComponent) e.getSource();
115 String text = tc.getText();
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultFormatter.java683 JTextComponent tc = DefaultFormatter.this.getFormattedTextField();
684 if (tc.composedTextExists()) {
693 JTextComponent tc = DefaultFormatter.this.getFormattedTextField();
694 if (tc.composedTextExists()) {
727 JTextComponent tc = DefaultFormatter.this.getFormattedTextField();
728 if (tc.composedTextExists()) {
739 JTextComponent tc = DefaultFormatter.this.getFormattedTextField();
740 if (tc.composedTextExists() ||
752 JTextComponent tc = DefaultFormatter.this.getFormattedTextField();
753 if (tc
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DReferenceType.java174 Type tc = ((ArrayType) this).getElementType();
176 if (sc instanceof BasicType && tc instanceof BasicType && sc.equals(tc))
182 if (tc instanceof ReferenceType && sc instanceof ReferenceType &&
183 ((ReferenceType) sc).isAssignmentCompatibleWith((ReferenceType) tc))

Completed in 2048 milliseconds

12345