Searched refs:kind (Results 151 - 175 of 410) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionFactory.java100 * @param kind how to invoke, i.e., INVOKEINTERFACE, INVOKESTATIC, INVOKEVIRTUAL,
105 Type[] arg_types, short kind) {
113 if(kind == Constants.INVOKEINTERFACE)
118 switch(kind) {
124 throw new RuntimeException("Oops: Unknown invoke kind:" + kind);
183 private InvokeInstruction createInvoke(MethodObject m, short kind) { argument
184 return createInvoke(m.class_name, m.name, m.result_type, m.arg_types, kind);
245 * @param kind how to access, i.e., GETFIELD, PUTFIELD, GETSTATIC, PUTSTATIC
248 public FieldInstruction createFieldAccess(String class_name, String name, Type type, short kind) { argument
104 createInvoke(String class_name, String name, Type ret_type, Type[] arg_types, short kind) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttr.java187 /** Check kind and type of given tree against protokind and prototype.
191 * It is not necessary in this case since we know that kind and type
194 * @param tree The tree whose kind and type is checked
196 * @param ownkind The computed kind of the tree
197 * @param pkind The expected kind (or: protokind) of the tree
228 owner.kind == VAR || // i.e. we are in a variable initializer
268 if (lsym == null || lsym.kind != TYP) {
278 return sym != null && sym.kind == TYP;
306 if (site.kind == ERR)
309 if (site.kind
[all...]
H A DCheck.java310 if (location.kind == MTH &&
345 if (e.sym.kind == VAR &&
346 (e.sym.owner.kind & (VAR | MTH)) != 0 &&
366 if (e.sym.kind == TYP && e.sym.type.tag != TYPEVAR &&
367 (e.sym.owner.kind & (VAR | MTH)) != 0 &&
385 if (e.sym.kind == TYP && e.sym.name != names.error) {
391 if (sym.kind == TYP && sym.name == name && sym.name != names.error) {
867 switch (sym.kind) {
869 if (sym.owner.kind != TYP)
908 } else if (sym.owner.kind
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java194 JavaFileObject.Kind kind,
198 return getJavaFileForOutput(CLASS_OUTPUT, classname, kind, sibling);
383 JavaFileObject.Kind kind = getKind(s);
384 return fileKinds.contains(kind);
679 JavaFileObject.Kind kind)
685 nullCheck(kind);
686 if (!sourceOrClass.contains(kind))
687 throw new IllegalArgumentException("Invalid kind: " + kind);
688 return getFileForInput(location, RelativeFile.forClass(className, kind));
193 getFileForOutput(String classname, JavaFileObject.Kind kind, JavaFileObject sibling) argument
677 getJavaFileForInput(Location location, String className, JavaFileObject.Kind kind) argument
732 getJavaFileForOutput(Location location, String className, JavaFileObject.Kind kind, FileObject sibling) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DSCDParser.java478 final private Token jj_consume_token(int kind) throws ParseException { argument
483 if (token.kind == kind) {
488 jj_kind = kind;
511 return (jj_ntk = (token.next=token_source.getNextToken()).kind);
513 return (jj_ntk = jj_nt.kind);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DJavacFiler.java173 JavaFileObject.Kind kind) {
174 return javaFileObject.isNameCompatible(simpleName, kind);
222 JavaFileObject.Kind kind) {
223 return javaFileObject.isNameCompatible(simpleName, kind);
398 JavaFileObject.Kind kind = (isSourceFile ?
403 fileManager.getJavaFileForOutput(loc, name, kind, null);
172 isNameCompatible(String simpleName, JavaFileObject.Kind kind) argument
221 isNameCompatible(String simpleName, JavaFileObject.Kind kind) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DParser.java1104 final private Token jj_consume_token(int kind) throws ParseException { argument
1109 if (token.kind == kind) {
1124 jj_kind = kind;
1128 final private boolean jj_scan_token(int kind) { argument
1142 if (tok != null) jj_add_error_token(kind, i);
1144 return (jj_scanpos.kind != kind);
1166 return (jj_ntk = (token.next=token_source.getNextToken()).kind);
1168 return (jj_ntk = jj_nt.kind);
1177 jj_add_error_token(int kind, int pos) argument
[all...]
H A DParseException.java145 if (tok.kind == 0) {
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsGCAdaptivePolicyCounters.hpp128 assert(_size_policy->kind() ==
305 virtual GCPolicyCounters::Name kind() const { function in class:CMSGCAdaptivePolicyCounters
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsTasks.cpp172 assert(Universe::heap()->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
198 assert(Universe::heap()->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
H A DpsPermGen.cpp114 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodOop.hpp180 void set_interpreter_kind(int kind) { _interpreter_kind = kind; } argument
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogParser.java255 String kind = atts.getValue("kind");
256 if (kind != null && kind.equals("osr")) {
297 String kind = atts.getValue("compile_kind");
298 if (kind == null) {
299 kind = "normal";
301 if (kind.equals("osr")) {
304 } else if (kind.equals("c2i")) {
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DOutNode.java35 void set(String kind, List<Node> components, int lineno) { argument
36 super.set(kind, components, lineno);
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DDeclarationFilter.java147 * Returns a filter that selects declarations of a particular kind.
150 * The filter will select declarations of the specified kind,
151 * and also any subtypes of that kind; for example, a field filter
154 * @param kind the kind of declarations to select
155 * @return a filter that selects declarations of a particular kind
158 final Class<? extends Declaration> kind) {
161 return kind.isInstance(d);
255 * being restricted to declarations of a given kind.
157 getFilter( final Class<? extends Declaration> kind) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DUtil.java157 final Diagnostic.Kind kind, final String code, final Object... args) {
169 return kind;
156 createDiagnostic( final Diagnostic.Kind kind, final String code, final Object... args) argument
/openjdk7/langtools/test/tools/javac/diags/
H A DFileManager.java126 public boolean isNameCompatible(String simpleName, Kind kind) { argument
127 return delegate.isNameCompatible(simpleName, kind);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DBCELFactory.java138 String kind = (opcode < Constants.ISTORE)? "Load" : "Store";
139 _out.println("il.append(_factory.create" + kind + "(" +
148 String kind = (opcode < Constants.IASTORE)? "Load" : "Store";
150 _out.println("il.append(_factory.createArray" + kind + "(" +
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DNamingUtils.java118 directoryStructuredName.append( name[i].id + "." + name[i].kind );
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_implementation/parallelScavenge/
H A DParallelScavengeHeap.java97 public CollectedHeapName kind() { method in class:ParallelScavengeHeap
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DDefNewGeneration.java62 public Generation.Name kind() { method in class:DefNewGeneration
/openjdk7/hotspot/src/share/vm/memory/
H A DbarrierSet.hpp59 BarrierSet::Name kind() { return _kind; } function in class:BarrierSet
62 // These operations indicate what kind of barriers the BarrierSet has.
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DParseException.java158 if (tok.kind == 0) {
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.hpp66 ValueStack(ValueStack* copy_from, Kind kind, int bci);
77 assert(kind() == EmptyExceptionState ||
78 (Compilation::current()->env()->jvmti_can_access_local_variables() && kind() == ExceptionState),
89 Kind kind() const { return _kind; } function in class:ValueStack
/openjdk7/jdk/make/tools/GenerateCharacter/
H A DCharacterDataLatin1.java.template166 int kind = val & $$maskType;
167 if (kind == Character.DECIMAL_DIGIT_NUMBER) {

Completed in 637 milliseconds

1234567891011>>