Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _ACONST_NULL (0.16 sec)

  1. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

        }
    
        public void _ICONST_0() {
            super.visitInsn(ICONST_0);
        }
    
        public void _ICONST_1() {
            super.visitInsn(ICONST_1);
        }
    
        public void _ACONST_NULL() {
            super.visitInsn(ACONST_NULL);
        }
    
        public void _LDC(Object value) {
            super.visitLdcInsn(value);
        }
    
        public void _NEW(Type type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

                    _ALOAD(0);
                    _INVOKESTATIC(className, RENAMED_DESERIALIZE_LAMBDA, RETURN_OBJECT_FROM_SERIALIZED_LAMBDA, isInterface);
                } else {
                    _ACONST_NULL();
                }
                _ARETURN();
                // Epilogue takes 5 bytes if we need to call the other method (next split or original), or 2 bytes to just return null.
                visitMaxs(0, 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                            _INVOKESPECIAL(getType(type), "getAsDynamicObject", RETURN_DYNAMIC_OBJECT);
                        } else {
                            // GENERATE null
                            _ACONST_NULL();
                        }
    
                        // GENERATE this.services()
                        putServiceRegistryOnStack();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top