Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 202 for Symbol (0.16 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KtFirInvokeFunctionReference.kt

    import org.jetbrains.kotlin.analysis.api.calls.KtSimpleFunctionCall
    import org.jetbrains.kotlin.analysis.api.calls.calls
    import org.jetbrains.kotlin.analysis.api.calls.symbol
    import org.jetbrains.kotlin.analysis.api.symbols.KtFunctionSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KtSymbol
    import org.jetbrains.kotlin.psi.KtCallExpression
    import org.jetbrains.kotlin.psi.KtExpression
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Jun 21 20:40:22 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeCreator.kt

                    getSymbolDescriptor(builder.symbol) as? ClassDescriptor
                }
            }
    
            if (descriptor == null) {
                val name = when (builder) {
                    is KtClassTypeBuilder.ByClassId -> builder.classId.asString()
                    is KtClassTypeBuilder.BySymbol ->
                        builder.symbol.classIdIfNonLocal?.asString()
                            ?: builder.symbol.name?.asString()
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Jan 10 12:54:17 GMT 2023
    - 4.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     *
     * However, since symbol names providers may not be able to compute name sets per their contract, we may have to fall back to the
     * [declaration provider][org.jetbrains.kotlin.analysis.providers.KotlinDeclarationProvider].
     *
     * Since this fallback is not suitable for symbols from binary libraries in Standalone mode, the symbol names provider absolutely needs to
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 23 10:55:55 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirArgumentsConverter.kt

    import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol
    import org.jetbrains.kotlin.fir.symbols.impl.FirBackingFieldSymbol
    import org.jetbrains.kotlin.fir.symbols.impl.FirCallableSymbol
    import org.jetbrains.kotlin.fir.symbols.impl.FirClassLikeSymbol
    import org.jetbrains.kotlin.fir.symbols.impl.FirClassSymbol
    import org.jetbrains.kotlin.fir.symbols.impl.FirEnumEntrySymbol
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Jan 05 13:43:17 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/NumberConversionUtil.java

        }
    
        private static DecimalFormatSymbols getDecimalFormatSymbols(final Locale locale) {
            DecimalFormatSymbols symbol;
            if (locale != null) {
                symbol = DecimalFormatSymbolsUtil.getDecimalFormatSymbols(locale);
            } else {
                symbol = DecimalFormatSymbolsUtil.getDecimalFormatSymbols();
            }
            return symbol;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10FunctionLikeSignature.kt

            KtFe10FunctionLikeSignature(
                symbol,
                substitutor.substitute(returnType),
                receiverType?.let { substitutor.substitute(it) },
                valueParameters.map { valueParameter ->
                    KtFe10VariableLikeSignature<KtValueParameterSymbol>(
                        valueParameter.symbol,
                        substitutor.substitute(valueParameter.returnType),
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 3K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/common/help.jsp

    		If you want to exclude the upper and lower bounds, use "{}".
    	</dd>
    	<dt>Boost</dt>
    	<dd>
    		To boost a term use the "^" symbol with a boost factor (a number) at
    		the end of the term you are searching.
    		<pre>Fess^100</pre>
    	</dd>
    	<dt>Fuzzy</dt>
    	<dd>
    		To do a fuzzy search use the "~" symbol at the end of a single word
    		term. For example to search for a term similar in spelling to "Fess"
    		use the fuzzy search:
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/asm/doc.go

    The same assembler is used for all target operating systems and architectures.
    The GOOS and GOARCH environment variables set the desired target.
    
    Flags:
    
    	-D name[=value]
    		Predefine symbol name with an optional simple value.
    		Can be repeated to define multiple symbols.
    	-I dir1 -I dir2
    		Search for #include files in dir1, dir2, etc,
    		after consulting $GOROOT/pkg/$GOOS_$GOARCH.
    	-S
    		Print assembly and machine code.
    	-V
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 22 20:46:45 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10VariableLikeSignature.kt

        private val backingReturnType: KtType,
        private val backingReceiverType: KtType?,
    ) : KtVariableLikeSignature<S>() {
        override val token: KtLifetimeToken get() = backingSymbol.token
        override val symbol: S get() = withValidityAssertion { backingSymbol }
        override val returnType: KtType get() = withValidityAssertion { backingReturnType }
        override val receiverType: KtType? get() = withValidityAssertion { backingReceiverType }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/duperror.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    TEXT foo(SB), 0, $0
    	RET
    TEXT foo(SB), 0, $0 // ERROR "symbol foo redeclared"
    	RET
    
    GLOBL bar(SB), 0, $8
    GLOBL bar(SB), 0, $8 // ERROR "symbol bar redeclared"
    
    DATA bar+0(SB)/8, $0
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Dec 05 23:21:07 GMT 2022
    - 404 bytes
    - Viewed (0)
Back to top