Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 134 for postbox (0.18 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/KtTypeParametersRenderer.kt

                    .filter { declarationRenderer.typeParametersFilter.filter(analysisSession, it, symbol) }
                    .ifEmpty { return }
                printer.printCollection(typeParameters, prefix = "<", postfix = ">") { typeParameter ->
                    declarationRenderer.codeStyle.getSeparatorBetweenAnnotationAndOwner(analysisSession, typeParameter).separated(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/ReproducibleDirectoryWalker.java

        }
    
        @Override
        public void walkDir(Path rootDir, RelativePath rootPath, FileVisitor visitor, Spec<? super FileTreeElement> spec, AtomicBoolean stopFlag, boolean postfix) {
            try {
                PathVisitor pathVisitor = new PathVisitor(spec, postfix, visitor, stopFlag, rootPath, fileSystem);
                visit(rootDir, pathVisitor);
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/compoundAssignmentException.kt

    fun test(): Boolean {
        var n = 456
        <expr>n %= 45</expr>
        return n < 45
    }
    
    // IGNORE_FE10
    // FE1.0 `isUsedAsExpression` considers built-in postfix inc/dec and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 208 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/branchelim.go

    		e := dom.Succs[i]
    		e.b.Preds[e.i].b = dom
    	}
    
    	// Try really hard to preserve statement marks attached to blocks.
    	simplePos := simple.Pos
    	postPos := post.Pos
    	simpleStmt := simplePos.IsStmt() == src.PosIsStmt
    	postStmt := postPos.IsStmt() == src.PosIsStmt
    
    	for _, v := range simple.Values {
    		v.Block = dom
    	}
    	for _, v := range post.Values {
    		v.Block = dom
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/compoundAssignmentToProperty.kt

                field += 45
            }
    
    }
    
    fun main() {
        val c = C()
        <expr>c.property -= 20</expr>
        println(C().property)
    }
    
    // IGNORE_FE10
    // FE1.0 `isUsedAsExpression` considers built-in postfix inc/dec and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 368 bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/KtCallableParameterRenderer.kt

                val valueParameters = when (symbol) {
                    is KaFunctionLikeSymbol -> symbol.valueParameters
                    else -> return
                }
                printer.printCollection(valueParameters, prefix = "(", postfix = ")") {
                    declarationRenderer.renderDeclaration(analysisSession, it, printer)
                }
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

                separator = ",\n  ",
                prefix = "{\n  ",
                postfix = "\n}"
            ) { (k, v) -> "${k?.let { stringRepresentation(it).indented() }} -> (${v?.let { stringRepresentation(it).indented() }})" }
            is Collection<*> -> if (isEmpty()) "[]" else joinToString(
                separator = ",\n  ",
                prefix = "[\n  ",
                postfix = "\n]"
            ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationArgumentsRenderer.kt

                annotationRenderer: KaAnnotationRenderer,
                printer: PrettyPrinter,
            ) {
                if (annotation.arguments.isEmpty()) return
                printer.printCollection(annotation.arguments, prefix = "(", postfix = ")") { argument ->
                    append(argument.name.render())
                    append(" = ")
                    append(KaAnnotationValueRenderer.render(argument.expression))
                }
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/generatorUtils.kt

            } else {
                type.simpleName
            }
            return if (type.arguments.isEmpty()) simpleName + nullableSuffix
            else simpleName + type.arguments.joinToString(separator = ", ", prefix = "<", postfix = ">") {
                when (val typeArgument = it.type) {
                    null -> "*"
                    else -> typeConversion(typeArgument)
                } + nullableSuffix
            }
        }
        print(typeConversion(type))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jul 18 11:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtConstructorSymbolRenderer.kt

                            {
                                (symbol.getContainingSymbol() as? KaNamedSymbol)?.name?.let { printer.append(it.render()) }
                                printer.printCollection(symbol.valueParameters, prefix = "(", postfix = ")") {
                                    declarationRenderer.typeRenderer.renderType(analysisSession, it.returnType, printer)
                                }
                            }
                        )
                    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top