Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for isExternal (0.41 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtClassLikeSymbol.kt

        public abstract val isInner: Boolean
        public abstract val isData: Boolean
        public abstract val isInline: Boolean
        public abstract val isFun: Boolean
    
        public abstract val isExternal: Boolean
    
        public abstract val companionObject: KaNamedClassOrObjectSymbol?
    
        abstract override fun createPointer(): KaSymbolPointer<KaNamedClassOrObjectSymbol>
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiNamedClassOrObjectSymbol.kt

        override val isFun: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.FUN_KEYWORD) }
    
        override val isExternal: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.EXTERNAL_KEYWORD) }
    
        override val isActual: Boolean
            get() = withValidityAssertion { descriptor?.isActual ?: psi.hasActualModifier() }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiFunctionSymbol.kt

            get() = withValidityAssertion { psi.hasModifier(KtTokens.SUSPEND_KEYWORD) }
    
        override val isOperator: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.OPERATOR_KEYWORD) }
    
        override val isExternal: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.EXTERNAL_KEYWORD) }
    
        override val isInline: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.INLINE_KEYWORD) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/arm/asm.go

    		return true
    	}
    
    	// Reread the reloc to incorporate any changes in type above.
    	relocs := ldr.Relocs(s)
    	r = relocs.At(rIdx)
    
    	switch r.Type() {
    	case objabi.R_CALLARM:
    		if target.IsExternal() {
    			// External linker will do this relocation.
    			return true
    		}
    		addpltsym(target, ldr, syms, targ)
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocSym(rIdx, syms.PLT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    			if ctxt.IsExternal() && strings.HasPrefix(ldr.SymSect(x).Name, ".data.rel.ro") {
    				// During external linking, read-only datas with relocation
    				// must be in .data.
    				a4.Xsmclas = XMC_RW
    			} else {
    				// Read only data
    				a4.Xsmclas = XMC_RO
    			}
    		} else if /*ty == sym.SDATA &&*/ strings.HasPrefix(ldr.SymName(x), "TOC.") && ctxt.IsExternal() {
    			a4.Xsmclas = XMC_TC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    			}
    			if target.Is386() && target.IsExternal() && target.IsELF {
    				nExtReloc++ // need two ELF relocations on 386, see ../x86/asm.go:elfreloc1
    			}
    			fallthrough
    		case objabi.R_CALL, objabi.R_PCREL:
    			if target.IsExternal() && rs != 0 && rst == sym.SUNDEFEXT {
    				// pass through to the external linker.
    				nExtReloc++
    				o = 0
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        // Find out the compose function
        auto compose_func_name = GetComposeFuncName(op->getName().getStringRef());
        auto compose_func = table.lookup<TFRFuncOp>(compose_func_name);
        if (!compose_func || compose_func.isExternal()) {
          // There are no decomposition methods defined for this op, skip.
          return WalkResult::advance();
        }
    
        // Make sure all the attributes are valid. An attribute is valid when it is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/symtab.go

    	// mark all Go symbols local (not global) in the final executable.
    	// But when we're dynamically linking, we need all those global symbols.
    	if !ctxt.DynlinkingGo() && ctxt.IsExternal() && !ldr.AttrCgoExportStatic(x) && elfshnum != elf.SHN_UNDEF {
    		bind = elf.STB_LOCAL
    	}
    
    	if ctxt.LinkMode == LinkExternal && elfshnum != elf.SHN_UNDEF {
    		addr -= int64(xosect.Vaddr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

        override val isInline: Boolean get() = withValidityAssertion { false }
        override val isFun: Boolean get() = withValidityAssertion { false }
        override val isExternal: Boolean get() = withValidityAssertion { false }
        override val isActual: Boolean get() = withValidityAssertion { false }
        override val isExpect: Boolean get() = withValidityAssertion { false }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

        return;
      }
      TF::SideEffectAnalysis side_effect_analysis(module_op,
                                                  op_to_parallel_ids_map);
      for (auto func : module_op.getOps<func::FuncOp>()) {
        if (func.isExternal()) continue;
        const auto& analysis_for_func =
            side_effect_analysis.GetAnalysisForFunc(func);
        if (failed(UpdateAllControlDependencies(func, analysis_for_func))) {
          signalPassFailure();
          return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top