Searched refs:def (Results 26 - 50 of 129) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DImports.java213 // ClassDefinition def = env.getClassDefinition(nm);
227 ClassDefinition def = decl.getClassDefinitionNoCheck(env);
232 Identifier importedPackage = def.getName().getQualifier();
236 for (; def != null; def = def.getOuterClass()) {
237 if (def.isPrivate()
238 || !(def.isPublic()
240 env.error(where, "cant.access.class", def);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DNewInstanceExpression.java88 ClassDefinition def = null;
138 def = env.getClassDefinition(right.type);
155 // If we failed to find a class or a class was ambiguous, def
159 if (def == null) {
167 insertOuterLink(env, ctx, where, def, outerArg, args);
206 if (def.isInterface()) {
215 // Otherwise, def is actually our superclass.
216 superDef = def;
233 body + " SUPER " + def);
235 def, arg
346 insertOuterLink(Environment env, Context ctx, long where, ClassDefinition def, Expression outerArg, Expression args[]) argument
[all...]
H A DThrowStatement.java63 ClassDefinition def = c.getClassDefinition(env);
66 if (!def.subClassOf(env, throwable)) {
67 env.error(where, "throw.not.throwable", def);
H A DCatchStatement.java85 ClassDefinition def = env.getClassDefinition(type);
86 if (!def.subClassOf(env,
88 env.error(where, "catch.not.throwable", def);
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DPreferences.java509 * @param def the value to be returned in the event that this
511 * @return the value associated with <tt>key</tt>, or <tt>def</tt>
517 * <tt>null</tt> value for <tt>def</tt> <i>is</i> permitted.)
519 public abstract String get(String key, String def); argument
590 * @param def the value to be returned in the event that this
595 * <tt>key</tt> in this preference node, or <tt>def</tt> if the
604 public abstract int getInt(String key, int def); argument
640 * @param def the value to be returned in the event that this
645 * <tt>key</tt> in this preference node, or <tt>def</tt> if the
654 public abstract long getLong(String key, long def); argument
709 getBoolean(String key, boolean def) argument
758 getFloat(String key, float def) argument
807 getDouble(String key, double def) argument
871 getByteArray(String key, byte[] def) argument
[all...]
H A DAbstractPreferences.java266 * this invocation returns <tt>def</tt>.
269 * @param def the value to be returned in the event that this
271 * @return the value associated with <tt>key</tt>, or <tt>def</tt>
278 public String get(String key, String def) { argument
291 return (result==null ? def : result);
369 * value is returned by this method. Otherwise, <tt>def</tt> is returned.
372 * @param def the value to be returned in the event that this
376 * <tt>key</tt> in this preference node, or <tt>def</tt> if the
383 public int getInt(String key, int def) { argument
384 int result = def;
438 getLong(String key, long def) argument
496 getBoolean(String key, boolean def) argument
551 getFloat(String key, float def) argument
606 getDouble(String key, double def) argument
652 getByteArray(String key, byte[] def) argument
[all...]
/openjdk7/jdk/test/javax/imageio/plugins/png/
H A DPngOutputTypeTest.java79 BufferedImage def; field in class:PngOutputTypeTest
97 def = reader.read(0);
98 System.out.println("Default image type: " + def.getType());
99 if (def == null || def.getType() == BufferedImage.TYPE_CUSTOM) {
111 compare(def, raw);
122 compare(def, img);
/openjdk7/jdk/test/tools/pack200/
H A DPack200Props.java108 String def = expectedDefaults.get(key);
114 if (!def.equals(x)) {
116 + "\n value expected: " + def
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceMember.java470 ClassDefinition def;
476 def = exp[i].getClassDefinition(env);
482 env.resolveByName(where, getClassDefinition(), def.getName());
488 def.noteUsedBy(getClassDefinition(), where, env);
490 canAccess(env, def.getClassDeclaration())) {
491 env.error(where, "cant.access.class", def);
492 } else if (!def.subClassOf(env, throwable)) {
493 env.error(where, "throws.not.throwable", def);
563 ClassDefinition def = c.getClassDefinition(env);
564 if (def
[all...]
/openjdk7/jdk/test/java/util/PluggableLocale/
H A DCollatorProviderTest.java60 Collator def = Collator.getInstance(new Locale(""));
61 String defrules = ((RuleBasedCollator)def).getRules();
/openjdk7/jdk/src/share/classes/sun/net/
H A DNetProperties.java90 String def = props.getProperty(key);
92 return System.getProperty(key, def);
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp60 // GC point we'll have the reaching-def Nodes. If the reaching Nodes are
68 // irreducible loops, we can have a reaching def of an oop that only reaches
77 // The reaching def's is a simple 1-pass worklist approach. I tried a clever
85 // practice. One array will map to a reaching def Node (or NULL for
94 Node **_defs; // array mapping register to reaching def
139 // Assign new reaching def's.
256 // See if dead (no reaching def).
257 Node *def = _defs[reg]; // Get reaching def local
258 assert( def, "sinc
476 Node *def = n->in(l); local
[all...]
H A Dsplit_if.cpp255 Node *PhaseIdealLoop::spinup( Node *iff_dom, Node *new_false, Node *new_true, Node *use_blk, Node *def, small_cache *cache ) { argument
272 phi_post = def->clone();
281 if( def->is_CFG() ) {
284 assert( def->is_Phi(), "" );
288 phi_post = PhiNode::make_blank(prior_n, def);
291 phi_post->init_req( i, spinup( iff_dom, new_false, new_true, prior_n->in(i), def, cache ) );
323 Node *PhaseIdealLoop::find_use_block( Node *use, Node *def, Node *old_false, Node *new_false, Node *old_true, Node *new_true ) { argument
334 if( use->in(j) == def )
336 assert( j < use->req(), "def should be among use's inputs" );
371 void PhaseIdealLoop::handle_use( Node *use, Node *def, small_cach argument
[all...]
H A Doutput.hpp184 void verify_do_def( Node *n, OptoReg::Name def, const char *msg );
186 void anti_do_def( Block *b, Node *def, OptoReg::Name def_reg, int is_def );
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipOutputStream.java161 def.setLevel(level);
236 def.finish();
237 while (!def.finished()) {
242 if (e.size != def.getBytesRead()) {
245 " but got " + def.getBytesRead() + " bytes)");
247 if (e.csize != def.getBytesWritten()) {
250 e.csize + " but got " + def.getBytesWritten() + " bytes)");
259 e.size = def.getBytesRead();
260 e.csize = def.getBytesWritten();
264 def
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageWriter.java802 Attribute.Layout def = (Attribute.Layout) e.getKey();
805 Integer predefIndex = attrIndexTable.get(def);
816 index = setAttributeLayoutIndex(def, nextLoBit);
819 index = setAttributeLayoutIndex(def, ATTR_INDEX_OVERFLOW);
822 // Now that we know the index, record the count of this def.
825 // For all callables in the def, keep a tally of back-calls.
826 Attribute.Layout.Element[] cbles = def.getCallables();
834 backCountTable.put(def, bc);
838 Entry ne = ConstantPool.getUtf8Entry(def.name());
839 String layout = def
[all...]
H A DAttribute.java51 Layout def; // the name and format of this attr field in class:Attribute
55 public String name() { return def.name(); }
56 public Layout layout() { return def; }
59 public Entry getNameRef() { return def.getNameRef(); }
62 this.def = old.def;
67 public Attribute(Layout def, byte[] bytes, Object fixups) { argument
68 this.def = def;
73 public Attribute(Layout def, byt argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/relaxng/
H A DRELAXNGCompiler.java160 for( DDefine def : defs ) {
161 DPattern p = def.getPattern();
203 new CClassInfoParent.Package(pkg), def.getName(), base,
215 for( DDefine def : defs ) {
216 DPattern p = def.getPattern();
264 // for( DDefine def : defs ) {
267 // def.getPattern().accept(new InheritanceChecker());
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DMultiSocketFactory.java36 private static RMISocketFactory def = field in class:MultiSocketFactory
64 return def.createServerSocket(port);
93 return def.createSocket(host, port);
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/unicast/
H A DMultiSocketFactory.java36 private static RMISocketFactory def = field in class:MultiSocketFactory
64 return def.createServerSocket(port);
93 return def.createSocket(host, port);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateTable.hpp340 static void def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)( ), char filler );
341 static void def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(int arg ), int arg );
342 static void def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(bool arg ), bool arg );
343 static void def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(TosState tos), TosState tos);
344 static void def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(Operation op), Operation op);
345 static void def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(Condition cc), Condition cc);
/openjdk7/jdk/test/java/net/ProxySelector/
H A DProxyTest.java54 private ProxySelector def = null; field in class:ProxyTest.MyProxySelector
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DConstantPool.java160 ConstantPoolData def = ff[l];
162 ff[l] = ff[r]; ff[r] = def;
168 ConstantPoolData def = ff[left];
170 ff[left] = ff[middle]; ff[middle] = def;
/openjdk7/jdk/make/bridge/JAWTAccessBridge/
H A DMakefile61 /def:$(CLOSED_PLATFORM_SRC)/native/sun/bridge/JAWTAccessBridge.DEF /libpath:"$(LIBDIR)"
/openjdk7/jdk/make/bridge/WindowsAccessBridge/
H A DMakefile61 /def:$(CLOSED_PLATFORM_SRC)/native/sun/bridge/WinAccessBridge.DEF /libpath:"$(LIBDIR)"

Completed in 71 milliseconds

123456