Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 372 for isopen (1.45 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/multipleFiles.ir.txt

            overridden:
              public open fun equals (other: kotlin.Any?): kotlin.Boolean [operator] declared in kotlin.Any
            $this: VALUE_PARAMETER name:<this> type:kotlin.Any
            VALUE_PARAMETER name:other index:0 type:kotlin.Any?
          FUN FAKE_OVERRIDE name:hashCode visibility:public modality:OPEN <> ($this:kotlin.Any) returnType:kotlin.Int [fake_override]
            overridden:
              public open fun hashCode (): kotlin.Int declared in kotlin.Any
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/swig/testdata/stdio/main.swig

    %typemap(gotype) const char * "string"
    %typemap(in) const char * %{
    	$1 = malloc($input.n + 1);
    	memcpy($1, $input.p, $input.n);
    	$1[$input.n] = '\0';
    %}
    %typemap(freearg) const char * %{
    	free($1);
    %}
    
    FILE *fopen(const char *name, const char *mode);
    int fclose(FILE *);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 563 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/superExpressionArg.kt

    open class A {
        open fun test(x: Int): String {
            return "OK"
        }
    }
    
    class B : A() {
        override fun test(x: Int): String {
            return super.test(<expr>x * 2</expr>)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 189 bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/testData/sessionBuilder/resolveAgainstCommonKLibFromOtherModule/klibSrc/Person.kt

    package some.example
    
    open class Person(
        val name: String
    ) {
        open fun greet() = "Hello"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 07 12:14:19 UTC 2024
    - 98 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/smartCastExtensionReceiver.ir.txt

                  $this: CALL 'public open fun <get-length> (): kotlin.Int declared in kotlin.String' type=kotlin.Int origin=GET_PROPERTY
                    $this: TYPE_OP type=kotlin.String origin=IMPLICIT_CAST typeOperand=kotlin.String
                      GET_VAR 'p0: kotlin.Any? declared in <root>.CodeFragment.run' type=kotlin.Any? origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Sep 04 15:47:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionContainingClassClosure.ir.txt

            overridden:
              public open fun equals (other: kotlin.Any?): kotlin.Boolean [operator] declared in kotlin.Any
            $this: VALUE_PARAMETER name:<this> type:kotlin.Any
            VALUE_PARAMETER name:other index:0 type:kotlin.Any?
          FUN FAKE_OVERRIDE name:hashCode visibility:public modality:OPEN <> ($this:kotlin.Any) returnType:kotlin.Int [fake_override]
            overridden:
              public open fun hashCode (): kotlin.Int declared in kotlin.Any
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.ir.txt

            overridden:
              public open fun equals (other: kotlin.Any?): kotlin.Boolean [operator] declared in kotlin.Any
            $this: VALUE_PARAMETER name:<this> type:kotlin.Any
            VALUE_PARAMETER name:other index:0 type:kotlin.Any?
          FUN FAKE_OVERRIDE name:hashCode visibility:public modality:OPEN <> ($this:kotlin.Any) returnType:kotlin.Int [fake_override]
            overridden:
              public open fun hashCode (): kotlin.Int declared in kotlin.Any
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Range.java

     * endpoint) or <i>closed</i> (includes the endpoint) on that side. With three possibilities on each
     * side, this yields nine basic types of ranges, enumerated below. (Notation: a square bracket
     * ({@code [ ]}) indicates that the range is closed on that side; a parenthesis ({@code ( )}) means
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/40_contributor_documentation.yml

            If you found a clear typo, please open a PR with a fix instead of opening an issue.
    
      - type: dropdown
        id: issue-type
        attributes:
          label: Issue type
          options:
            - Wrong or misleading information
            - Missing information
            - Styling or Accessibility
            - Typo (please open a PR instead)
        validations:
          required: true
      - type: textarea
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 10:01:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedReferenceInsideSuperConstructorCallWithPrimaryConstructor.kt

    open class IJProject(val init: () -> Unit = {})
    
    class KotlinIDE() : IJProject(init = {
        anySymbols
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 105 bytes
    - Viewed (0)
Back to top