Searched defs:create (Results 251 - 275 of 313) sorted by relevance

<<111213

/openjdk7/jdk/src/share/demo/nio/zipfs/
H A DDemo.java145 create, // <java Demo create zipfile file [...]> enum constant in enum:Demo.Action
146 // create a new zipfile if it doesn't exit
164 if (action == Action.create)
165 env.put("create", "true");
301 case create:
/openjdk7/jdk/test/java/util/zip/
H A Dzip.java50 * cflag: create
102 create(new BufferedOutputStream(out, 4096));
323 void create(OutputStream out) throws IOException method in class:zip
549 throw new IOException(formatMsg("error.create.dir",
554 throw new IOException(formatMsg("error.create.dir",
561 output(formatMsg("out.create", name));
568 "error.create.dir", d.getPath()));
651 " -c create new archive\n" +
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DPostExceptionTest.java55 // Various methods to create an instance of Case in a single line
97 // forms + registerMBean in turn to create the MBean.
98 // Wich method is used to create the MBean is indicated by "how"
129 Exception reg = null; // exception thrown by create/register
133 oi = how.create(t, where, mbs, name);
356 * This enum lists the 5 methods to create and register an
363 public ObjectInstance create(Throwable t, EnumSet<WHERE> where,
374 public ObjectInstance create(Throwable t, EnumSet<WHERE> where,
386 public ObjectInstance create(Throwable t, EnumSet<WHERE> where,
399 public ObjectInstance create(Throwabl
422 public abstract ObjectInstance create(Throwable t, EnumSet<WHERE> where, method in class:PostExceptionTest.CREATE
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DSoftCache.java128 private static ValueCell create(Object key, Object value, method in class:SoftCache.ValueCell
291 hash.put(key, ValueCell.create(key, v, queue));
314 ValueCell vc = ValueCell.create(key, value, queue);
371 return ent.setValue(ValueCell.create(ent.getKey(), value, queue));
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DDatagramSocketAdaptor.java51 // ## super will create a useless impl
61 public static DatagramSocket create(DatagramChannelImpl dc) { method in class:DatagramSocketAdaptor
381 protected void create() throws SocketException {}
H A DSocketAdaptor.java67 public static Socket create(SocketChannelImpl sc) { method in class:SocketAdaptor
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPathGraphics.java81 public Graphics create() { method in class:PSPathGraphics
83 return new PSPathGraphics((Graphics2D) getDelegate().create(),
389 * create to hold the transformed image.
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXObject.java165 static public XObject create(Object val) method in class:XObject
167 return XObjectFactory.create(val);
180 static public XObject create(Object val, XPathContext xctxt) method in class:XObject
182 return XObjectFactory.create(val, xctxt);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DBufferStrategyPaintManager.java76 // Methods used to create BufferStrategy for Applets.
535 // Couldn't create BufferStrategy, fallback to normal
737 * the BufferStartegy hasn't been created and <code>create</code> is
741 * @param create If true, and the BufferStartegy is currently null,
744 public BufferStrategy getBufferStrategy(boolean create) { argument
746 if (bs == null && create) {
H A DUIManager.java211 * AppContext. If <code>create</code> is a true, a non-null
213 * <code>create</code> is false and this has not been invoked
217 getPropertyChangeSupport(boolean create) { argument
218 if (create && changeSupport == null) {
234 * Return the <code>LAFState</code> object, lazily create one if necessary.
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicHTML.java66 View hview = f.create(doc.getDefaultRootElement());
332 public View create(Element elem) { method in class:BasicHTML.BasicHTMLViewFactory
333 View view = super.create(elem);
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics.java115 * @see java.awt.Graphics#create()
127 public abstract Graphics create(); method in class:Graphics
163 public Graphics create(int x, int y, int width, int height) { method in class:Graphics
164 Graphics g = create();
1155 * @see java.awt.Graphics#create
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DFp.java122 public V get(K key, Map0<V> create){ argument
124 V value = create.apply();
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmThread.cpp229 void VMThread::create() { function in class:VMThread
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/nav/
H A DNavigatorImpl.java59 return create(REFLECTION.getBaseClass(ent.t, enc.c));
140 return create(c);
179 return create(REFLECTION.getTypeArgument(ent.t,i));
207 return create(primitiveType);
211 public static final NType create(Type t) { method in class:NavigatorImpl
214 return create((Class)t);
219 public static NClass create( Class c ) { method in class:NavigatorImpl
233 return new NParameterizedType(create(rawType),args);
270 return isSubClassOf(c,create(Enum.class));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/name/
H A DNameImpl.java115 throw new IllegalArgumentException("Cannot create a name from a null tag.");
172 public static NameImpl create(String name, String prefix, String uri) { method in class:NameImpl
414 return create(localName, prefix, uri);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/xml/
H A DXMLMessage.java78 public static Message create(final String ct, InputStream in, WSBinding binding) { method in class:XMLMessage
108 public static Message create(Source source) { method in class:XMLMessage
114 public static Message create(DataSource ds, WSBinding binding) { method in class:XMLMessage
118 create(ds.getContentType(), ds.getInputStream(), binding);
124 public static Message create(Exception e) { method in class:XMLMessage
583 XMLStreamWriter writer = XMLStreamWriterFactory.create(bos);
/openjdk7/jdk/src/windows/classes/java/net/
H A DPlainSocketImpl.java38 * TCP implementation. Otherwise we create an instance of
154 protected synchronized void create(boolean stream) throws IOException { method in class:PlainSocketImpl
155 impl.create(stream);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java126 public Graphics create() { method in class:WPathGraphics
128 return new WPathGraphics((Graphics2D) getDelegate().create(),
1002 * create to hold the transformed image.
1188 * didn't create a new IndexColorModel AND the whole of
1191 * don't need to create this intermediate image - GDI
H A DWPrintDialogPeer.java51 void create(WComponentPeer parent) { method in class:WPrintDialogPeer
/openjdk7/jdk/test/java/nio/channels/
H A DAsyncCloseAndInterrupt.java122 throw new RuntimeException("Cannot create disk file");
152 abstract InterruptibleChannel create() throws IOException; method in class:AsyncCloseAndInterrupt.ChannelFactory
157 InterruptibleChannel create() throws IOException {
164 InterruptibleChannel create() throws IOException {
172 InterruptibleChannel create() throws IOException {
181 InterruptibleChannel create() throws IOException {
192 InterruptibleChannel create() throws IOException {
200 InterruptibleChannel create() throws IOException {
208 InterruptibleChannel create() throws IOException {
215 InterruptibleChannel create() throw
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DJCDiagnostic.java94 return create(ERROR, null, defaultErrorFlags, source, pos, key, args);
107 return create(WARNING, null, EnumSet.of(DiagnosticFlag.MANDATORY), source, pos, key, args);
122 return create(WARNING, lc, EnumSet.of(DiagnosticFlag.MANDATORY), source, pos, key, args);
134 return create(WARNING, lc, EnumSet.noneOf(DiagnosticFlag.class), null, null, key, args);
146 return create(WARNING, null, EnumSet.noneOf(DiagnosticFlag.class), source, pos, key, args);
160 return create(WARNING, lc, EnumSet.noneOf(DiagnosticFlag.class), source, pos, key, args);
170 return create(NOTE, null, EnumSet.of(DiagnosticFlag.MANDATORY), source, null, key, args);
179 return create(NOTE, null, EnumSet.noneOf(DiagnosticFlag.class), null, null, key, args);
191 return create(NOTE, null, EnumSet.noneOf(DiagnosticFlag.class), source, pos, key, args);
200 return create(FRAGMEN
213 public JCDiagnostic create( method in class:JCDiagnostic.Factory
228 public JCDiagnostic create( method in class:JCDiagnostic.Factory
[all...]
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBumps/
H A DTest6657026.java91 public Graphics create() { method in class:Test6657026.MyGraphics
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DParserTable.java128 TransportDefault.makeReadTimeoutsFactory().create(
427 "readTimeouts", TransportDefault.makeReadTimeoutsFactory().create(
481 return TransportDefault.makeReadTimeoutsFactory().create(
614 public CorbaContactInfoList create( IOR ior ) { return null; } method in class:ParserTable.TestContactInfoListFactory
/openjdk7/jdk/src/share/classes/java/net/
H A DAbstractPlainSocketImpl.java88 protected synchronized void create(boolean stream) throws IOException { method in class:AbstractPlainSocketImpl
92 // only create the fd after we know we will be able to create the socket

Completed in 334 milliseconds

<<111213