/openjdk7/langtools/test/tools/javac/annotations/6365854/ |
H A D | T6365854.java | 48 TestCore tc = new TestCore(); 49 System.out.println(tc.toString());
|
/openjdk7/hotspot/test/compiler/6942326/ |
H A D | Test.java | 148 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 D | GraphViewerImplementation.java | 39 EditorTopComponent tc = new EditorTopComponent(diagram); 40 tc.open(); 41 tc.requestActive();
|
/openjdk7/langtools/test/tools/javac/varargs/ |
H A D | BadSyntax2.java | 40 Tclass<String> tc = new Tclass<String>(s); //this gets Assertion field in class:BadSyntax2
|
/openjdk7/jdk/src/solaris/native/sun/awt/ |
H A D | awt_motif.h | 40 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 D | WTextComponentPeer.java | 58 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 D | DivideTests.java | 232 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 D | ExceptionListImpl.java | 58 public void add(TypeCode tc) argument 60 _exceptions.addElement(tc);
|
H A D | TypeCodeImpl.java | 215 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 D | AnyImpl.java | 244 * @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 D | TrafficClass.java | 43 int tc = s.getTrafficClass(); 53 int tc = s.getTrafficClass();
|
/openjdk7/langtools/test/tools/javac/ |
H A D | T6326754.java | 71 TestConstructor tc = new TestConstructor("saaa"); 72 tc.setT("sasa");
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | binaryTreeDictionary.cpp | 62 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 D | binaryTreeDictionary.hpp | 97 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 D | CDREncapsCodec.java | 125 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 D | Request.java | 233 * @param tc the <code>TypeCode</code> object containing type information 237 public abstract void set_return_type(TypeCode tc); argument
|
H A D | TypeCode.java | 178 * @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 D | PopulationCoding.java | 89 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 D | RemoteDebuggerServer.java | 144 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 D | CAccessible.java | 105 JTextComponent tc = (JTextComponent) c; 107 tc.getDocument().addDocumentListener(listener); 108 tc.addCaretListener(listener);
|
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | concurrentG1Refine.hpp | 82 void threads_do(ThreadClosure *tc);
|
H A D | concurrentG1Refine.cpp | 109 void ConcurrentG1Refine::threads_do(ThreadClosure *tc) { argument 112 tc->do_thread(_threads[i]);
|
/openjdk7/jdk/test/java/awt/event/TextEvent/TextEventSequenceTest/ |
H A D | TextEventSequenceTest.java | 114 TextComponent tc = (TextComponent) e.getSource(); 115 String text = tc.getText();
|
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | DefaultFormatter.java | 683 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 D | ReferenceType.java | 174 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))
|