Searched refs:call (Results 1 - 25 of 914) sorted by relevance

1234567891011>>

/openjdk10/langtools/test/tools/javac/lambda/
H A DTargetType26.java14 <Z> void call(Z z) { } method in class:TargetType26
16 { call(() -> { }); }
H A DMethodReference50.java19 void call(SAM1 s) {} method in class:MethodReference50
20 void call(SAM2 s) {} method in class:MethodReference50
23 call(NonExistentType::m);
H A DMethodReference26.java38 static void call(int i, SAM s) { } method in class:MethodReference26
39 static void call(Integer i, SAM s) { } method in class:MethodReference26
42 call(1, MethodReference26::m); //ok
H A DTargetType08.java39 public static void call(SAM1 s) { } method in class:TargetType07
40 public static void call(SAM2 s) { } method in class:TargetType07
43 call((SAM1)()-> "Hello!" );
H A DMethodReference21.java16 void call(SAM s) {} method in class:MethodReference21
21 call(NonExistentType::m);
H A DBadStatementInLambda02.java16 { call(()-> { System.out.println(new NonExistentClass() + ""); }); }
18 void call(SAM s) { } method in class:BadStatementInLambda02
H A DLambdaScope02.java49 void call(); method in interface:LambdaScope02.Callable
52 static void call(Callable c) { c.call(); } method in class:LambdaScope02
55 call(()-> { assertTrue(LambdaScope02.this.toString().equals("Callable1")); });
56 call(()-> { assertTrue(toString().equals("Callable1")); });
/openjdk10/nashorn/test/script/basic/
H A DJDK-8066220.js34 f.call(1);
38 eval('"use strict"; function e() { print(typeof this); } e.call(1); new e();');
H A DJDK-8026125.js25 * JDK-8026125: Array.prototype.slice.call(Java.type("java.util.HashMap")) throws ClassCastException: jdk.dynalink.beans.StaticClass cannot be cast to jdk.nashorn.internal.runtime.ScriptObject
31 Array.prototype.splice.call(Java.type("java.util.HashMap"))
32 Array.prototype.slice.call(Java.type("java.util.HashMap"))
H A DJDK-8006570.js48 nonstrict.call(null);
49 nonstrict.call("foo");
50 nonstrict.call(1);
51 nonstrict.call(true);
57 strict.call(null);
58 strict.call("foo");
59 strict.call(1);
60 strict.call(true);
H A DJDK-8046905.js32 var call = Function.prototype.call;
36 // Running three times so that we test an already linked call site too:
78 print("Many levels of call!")
80 print(call.call(call,call,call,call,cal
[all...]
H A DJDK-8023784.js33 print(Object.prototype.toString.call(new ArrayBuffer(1)));
34 print(Object.prototype.toString.call(new Int8Array(1)));
35 print(Object.prototype.toString.call(new Int16Array(1)));
36 print(Object.prototype.toString.call(new Int32Array(1)));
37 print(Object.prototype.toString.call(new Uint8Array(1)));
38 print(Object.prototype.toString.call(new Uint8ClampedArray(1)));
39 print(Object.prototype.toString.call(new Uint16Array(1)));
40 print(Object.prototype.toString.call(new Uint32Array(1)));
41 print(Object.prototype.toString.call(new Float32Array(1)));
42 print(Object.prototype.toString.call(ne
[all...]
H A DNASHORN-99.js36 func.call();
38 fail("func.call() failed", e);
43 if (typeof obj.call !== "function") {
44 fail('#1: call method not found!');
48 obj.call();
H A DJDK-8019478.js25 * JDK-8019478: Object.prototype.toString.call(/a/.exec("a")) === "[object Array]" should be true
31 if (Object.prototype.toString.call(/a/.exec("a")) !== "[object Array]") {
32 fail("Object.prototype.toString.call(/a/.exec('a')) !== '[object Array]'");
H A DJDK-8027024.js32 String.prototype.charAt.call(
46 String.prototype.charCodeAt.call(
H A DJDK-8066214.js32 print(func.call(0));
33 print(func.call("abc"));
34 print(func.call(true));
36 print(func.call(undefined));
41 print(func.call(null));
/openjdk10/nashorn/test/src/
H A DUnnamedPackageTestCallback.java35 String call(String s); method in interface:UnnamedPackageTestCallback
/openjdk10/langtools/test/tools/javac/accessVirtualInner/b/
H A DB.java31 void call(); method in interface:B.Caller
38 public void call() {
42 caller.call();
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DCallInfo.java35 static boolean isStaticCall(Call call) { argument
36 if (isJavaCall(call)) {
37 return ((getByteCode(call) & 0xFF) == Bytecodes.INVOKESTATIC);
42 static boolean isSpecialCall(Call call) { argument
43 if (isJavaCall(call)) {
44 return ((getByteCode(call) & 0xFF) == Bytecodes.INVOKESPECIAL);
49 private static boolean isInvokeVirtual(Call call) { argument
50 if (isJavaCall(call)) {
51 return ((getByteCode(call) & 0xFF) == Bytecodes.INVOKEVIRTUAL) || ((getByteCode(call)
56 isVirtualCall(CompiledMethodInfo methodInfo, Call call) argument
60 isOptVirtualCall(CompiledMethodInfo methodInfo, Call call) argument
64 isJavaCall(Call call) argument
84 getByteCode(Call call) argument
[all...]
/openjdk10/hotspot/src/os_cpu/bsd_x86/vm/
H A Dassembler_bsd_x86.cpp31 call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
/openjdk10/hotspot/src/os_cpu/linux_x86/vm/
H A Dassembler_linux_x86.cpp31 call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
/openjdk10/hotspot/src/share/vm/utilities/
H A DerrorReporter.cpp30 void ErrorReporter::call(FILE* fd, char* buffer, int length) { function in class:ErrorReporter
/openjdk10/langtools/test/jdk/javadoc/doclet/testLambdaFeature/pkg1/
H A DNotAFuncInf.java28 V call() throws Exception; method in interface:NotAFuncInf
H A DFuncInf.java29 V call() throws Exception; method in interface:FuncInf
/openjdk10/langtools/test/tools/javac/missingSuperRecovery/
H A DMissingInterfaceTest.java12 s.call();

Completed in 268 milliseconds

1234567891011>>