Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for parseTypes (0.16 sec)

  1. src/debug/dwarf/typeunit.go

    	unit
    	toff  Offset // Offset to signature type within data.
    	name  string // Name of .debug_type section.
    	cache Type   // Cache the type, nil to start.
    }
    
    // Parse a .debug_types section.
    func (d *Data) parseTypes(name string, types []byte) error {
    	b := makeBuf(d, unknownFormat{}, name, 0, types)
    	for len(b.data) > 0 {
    		base := b.off
    		n, dwarf64 := b.unitLength()
    		if n != Offset(uint32(n)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/debug/dwarf/open.go

    // .debug_types sections. The name is used for error reporting only,
    // and serves to distinguish one .debug_types section from another.
    func (d *Data) AddTypes(name string, types []byte) error {
    	return d.parseTypes(name, types)
    }
    
    // AddSection adds another DWARF section by name. The name should be a
    // DWARF section name such as ".debug_addr", ".debug_str_offsets", and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/parser.go

    		p.getPkg(pkgpath, pkgname)
    		p.expectEOL()
    
    	case "types":
    		p.next()
    		p.parseTypes(p.pkg)
    		p.expectEOL()
    
    	case "func":
    		p.next()
    		fun := p.parseFunc(p.pkg)
    		if fun != nil {
    			p.pkg.Scope().Insert(fun)
    		}
    		p.expectEOL()
    
    	case "type":
    		p.next()
    		p.parseType(p.pkg)
    		p.expectEOL()
    
    	case "var":
    		p.next()
    		v := p.parseVar(p.pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/PublishArtifactNotationParserFactory.java

            private DecoratingConverter() {
                super(PublishArtifact.class);
            }
    
            @Override
            protected ConfigurablePublishArtifact parseType(PublishArtifact notation) {
                return instantiator.newInstance(DecoratingPublishArtifact.class, taskDependencyFactory, notation);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsers.java

                visitor.candidate("Version catalog type-safe accessors.");
            }
    
            @Override
            protected ModuleVersionSelector parseType(ProviderConvertible<?> notation) {
                return providerConverter.parseType(notation.asProvider());
            }
    
        }
    
        static class ProviderConverter extends TypedNotationConverter<Provider<?>, ModuleVersionSelector> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/typeconversion/TypedNotationConverter.java

            if (typeToken.isInstance(notation)) {
                result.converted(parseType(typeToken.cast(notation)));
            }
        }
    
        abstract protected T parseType(N notation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/TypedNotationConverterTest.groovy

        }
    
        class DummyConverter extends TypedNotationConverter<String, Integer> {
    
            DummyConverter() {
                super(String.class)
            }
    
            Integer parseType(String notation) {
                return Integer.parseInt(notation);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 16 07:34:13 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeDependencyNotationParser.java

            private LibraryConverter() {
                super(NativeLibrarySpec.class);
            }
    
            @Override
            protected NativeLibraryRequirement parseType(NativeLibrarySpec notation) {
                return notation.getShared();
            }
        }
    
        private static class NativeLibraryRequirementMapNotationConverter extends MapNotationConverter<NativeLibraryRequirement> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.h

    namespace compiler {
    
    class MlrtDialect : public mlir::Dialect {
     public:
      explicit MlrtDialect(mlir::MLIRContext *context);
      static llvm::StringRef getDialectNamespace() { return "mlrt"; }
    
      mlir::Type parseType(mlir::DialectAsmParser &parser) const override;
      void printType(mlir::Type type, mlir::DialectAsmPrinter &os) const override;
    };
    
    // The MLIR type represents a C++ mlrt::Future.
    class FutureType
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactory.java

            private ArchiveTaskNotationConverter() {
                super(AbstractArchiveTask.class);
            }
    
            @Override
            protected IvyArtifact parseType(AbstractArchiveTask archiveTask) {
                return instantiator.newInstance(ArchiveTaskBasedIvyArtifact.class, archiveTask, publicationCoordinates, taskDependencyFactory);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top