Searched refs:source (Results 401 - 425 of 878) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCV9InstructionFactoryImpl.java82 ImmediateOrRegister source, SPARCRegister rd) {
83 return new SPARCV9MOVccInstruction(name, conditionCode, conditionFlag, source, rd);
100 public SPARCInstruction newV9PopcInstruction(ImmediateOrRegister source, SPARCRegister rd) { argument
101 return new SPARCV9PopcInstruction(source, rd);
81 newV9MOVccInstruction(String name, int conditionCode, int conditionFlag, ImmediateOrRegister source, SPARCRegister rd) argument
H A DSPARCV9InstructionFactory.java41 ImmediateOrRegister source, SPARCRegister rd);
47 public SPARCInstruction newV9PopcInstruction(ImmediateOrRegister source, SPARCRegister rd); argument
40 newV9MOVccInstruction(String name, int conditionCode, int conditionFlag, ImmediateOrRegister source, SPARCRegister rd) argument
/openjdk7/jdk/src/share/classes/java/text/
H A DCollator.java30 * The original version of this source code and documentation is copyrighted
291 * Compares the source string to the target string according to the
293 * equal to or greater than zero depending on whether the source String is
301 * @param source the source string.
303 * @return Returns an integer value. Value is less than zero if source is less than
304 * target, value is zero if source and target are equal, value is greater than zero
305 * if source is greater than target.
309 public abstract int compare(String source, String target); argument
335 * @param source th
341 getCollationKey(String source) argument
352 equals(String source, String target) argument
[all...]
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTView.h68 - (void) setDragSource:(CDragSource *)source;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJStaticJavaFile.java50 * This {@link JResourceFile} implementation will generate a Java source
51 * file by copying the source code from a resource.
55 * source code to have an arbitrary package declaration.
61 * Note that because we don't parse the static Java source code,
72 private final URL source; field in class:JStaticJavaFile
87 this.source = _source;
103 InputStream is = source.openStream();
119 throw new IOException("unable to process "+source+" line:"+lineNumber+"\n"+e.getMessage());
130 * the contents of the source file.
152 * Filter that alters the Java source cod
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassVisitor.java36 * Redistribution and use in source and binary forms, with or without
39 * 1. Redistributions of source code must retain the above copyright
101 * Visits the source of the class.
103 * @param source the name of the source file from which the class was
106 * between source and compiled elements of the class. May be
109 void visitSource(String source, String debug); argument
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DMemoryClassLoader.java56 for (Source source : sources) {
57 if (source != null) {
58 list.add(source);
87 public Output getJavaFileForOutput(Location location, String name, Kind kind, FileObject source) { argument
/openjdk7/jdk/test/java/nio/channels/AsynchronousSocketChannel/
H A DStressLoopback.java48 Source[] source = new Source[count];
53 source[i] = new Source(ch);
60 source[i].start();
70 long nwrote = source[i].finish();
/openjdk7/jdk/test/java/nio/channels/SelectionKey/
H A DAtomicAttachTest.java63 pipe.source().close();
/openjdk7/langtools/test/tools/javac/6402516/
H A DCheckClass.java33 import com.sun.source.tree.*;
H A DCheckMethod.java33 import com.sun.source.tree.*;
H A DCheckIsAccessible.java33 import com.sun.source.tree.*;
34 import com.sun.source.util.*;
/openjdk7/langtools/test/tools/javac/api/6608214/
H A DT6608214.java31 import com.sun.source.util.JavacTask;
/openjdk7/langtools/test/tools/javac/api/
H A DT6357331.java32 import com.sun.source.util.*;
/openjdk7/langtools/test/tools/javac/multicatch/model/
H A DModelChecker.java33 import com.sun.source.tree.CatchTree;
34 import com.sun.source.util.TreePathScanner;
35 import com.sun.source.util.Trees;
36 import com.sun.source.util.TreePath;
/openjdk7/langtools/test/tools/javap/
H A DTestSuperclass.java120 // Extract class sig from first line of Java source
121 String expect = js.source.replaceAll("(?s)^(.* Test[^{]+?) *\\{.*", "$1");
161 final String source; field in class:TestSuperclass.JavaSource
165 source = template
174 return source;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DStepIterator.java61 public StepIterator(DTMAxisIterator source, DTMAxisIterator iterator) { argument
62 _source = source;
64 // System.out.println("SI source = " + source + " this = " + this);
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileStream.hpp62 ClassFileStream(u1* buffer, int length, char* source);
69 char* source() const { return _source; } function in class:ClassFileStream
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DNextDiagramAction.java102 public void changed(DiagramViewModel source) { argument
103 update(source);
H A DPrevDiagramAction.java102 public void changed(DiagramViewModel source) { argument
103 update(source);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCArrayInfo.java56 public CArrayInfo(Model model,CNonElement itemType, XSComponent source, CCustomizations customizations) { argument
57 super(model,source,customizations);
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DWrite.java55 String source =
58 bufs[i] = ByteBuffer.allocateDirect(source.length());
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTreePath.java26 package com.sun.source.util;
28 import com.sun.source.tree.*;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DParserFactory.java59 final Source source; field in class:ParserFactory
71 this.source = Source.instance(context);
/openjdk7/langtools/test/tools/javac/6902720/
H A DTest.java29 import com.sun.source.tree.CompilationUnitTree;
30 import com.sun.source.util.JavacTask;

Completed in 108 milliseconds

<<11121314151617181920>>