/external/angle/src/compiler/translator/TranslatorMetalDirect/ |
D | AstHelpers.cpp | 423 TIntermTyped &sh::CoerceSimple(TBasicType toType, TIntermTyped &fromNode) in CoerceSimple() argument 427 ASSERT(HasScalarBasicType(toType)); in CoerceSimple() 431 if (toType != fromType.getBasicType()) in CoerceSimple() 434 *new TType(toType, fromType.getNominalSize(), fromType.getSecondarySize()), in CoerceSimple() 440 TIntermTyped &sh::CoerceSimple(const TType &toType, TIntermTyped &fromNode) in CoerceSimple() argument 444 ASSERT(HasScalarBasicType(toType)); in CoerceSimple() 446 ASSERT(toType.getNominalSize() == fromType.getNominalSize()); in CoerceSimple() 447 ASSERT(toType.getSecondarySize() == fromType.getSecondarySize()); in CoerceSimple() 448 ASSERT(!toType.isArray()); in CoerceSimple() 451 if (toType.getBasicType() != fromType.getBasicType()) in CoerceSimple() [all …]
|
D | AstHelpers.h | 146 TIntermTyped &CoerceSimple(TBasicType toType, TIntermTyped &fromNode); 151 TIntermTyped &CoerceSimple(const TType &toType, TIntermTyped &fromNode); 153 TIntermTyped &AsType(SymbolEnv &symbolEnv, const TType &toType, TIntermTyped &fromNode);
|
/external/dokka/core/src/main/kotlin/Formats/ |
D | AnalysisComponents.kt | 11 import org.jetbrains.dokka.Utilities.toType 24 bind<ElementSignatureProvider>() toType elementSignatureProvider in <lambda>() 25 bind<PackageDocumentationBuilder>() toType packageDocumentationBuilderClass in <lambda>() 26 bind<JavaDocumentationBuilder>() toType javaDocumentationBuilderClass in <lambda>() 27 bind<SampleProcessingService>() toType sampleProcessingService in <lambda>()
|
D | FormatDescriptor.kt | 8 import org.jetbrains.dokka.Utilities.toType 26 bind<Generator>() toType NodeLocationAwareGenerator::class in <lambda>() 27 bind<NodeLocationAwareGenerator>() toType generatorServiceClass in <lambda>() 29 bind<LanguageService>() toType languageServiceClass in <lambda>()
|
/external/dokka/core/src/main/kotlin/Formats/JavaLayoutHtml/ |
D | JavaLayoutHtmlFormat.kt | 9 import org.jetbrains.dokka.Utilities.toType 17 bind<Generator>() toType generatorServiceClass in <lambda>() 18 bind<LanguageService>() toType languageServiceClass in <lambda>() 19 bind<JavaLayoutHtmlTemplateService>() toType templateServiceClass in <lambda>() 20 bind<JavaLayoutHtmlUriProvider>() toType generatorServiceClass in <lambda>() 22 bind<PackageListService>() toType packageListServiceClass in <lambda>() 23 bind<JavaLayoutHtmlFormatOutputBuilderFactory>() toType outputBuilderFactoryClass in <lambda>()
|
/external/guice/core/src/com/google/inject/internal/ |
D | TypeConverterBindingProcessor.java | 58 public Object convert(String value, TypeLiteral<?> toType) { in prepareBuiltInConverters() 78 public Object convert(String value, TypeLiteral<?> toType) { in prepareBuiltInConverters() 79 return Enum.valueOf((Class) toType.getRawType(), value); in prepareBuiltInConverters() 104 public Object convert(String value, TypeLiteral<?> toType) { in prepareBuiltInConverters() 129 public Object convert(String value, TypeLiteral<?> toType) { in convertToPrimitiveType()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | Iso639Data.java | 40 static Map<String, Type> toType; field in Iso639Data 252 Type result = toType.get(languageSubtag); in getType() 297 toType = new HashMap<>(); in getData() 349 toType.put(languageSubtag, type); in getData() 442 toType.put(languageSubtag, Type.Special); in getData() 465 toType.put(languageSubtag, Type.Special); in getData() 590 toType = Collections.unmodifiableMap(toType); in getData()
|
/external/dokka/core/src/main/kotlin/javadoc/ |
D | dokka-adapters.kt | 9 import org.jetbrains.dokka.Utilities.toType 37 bind<Generator>() toType JavadocGenerator::class in <lambda>()
|
/external/llvm-project/mlir/lib/Dialect/GPU/Transforms/ |
D | MemoryPromotion.cpp | 136 auto toType = to.getType().cast<MemRefType>(); in insertCopies() local 138 (void)toType; in insertCopies() 139 assert(fromType.getShape() == toType.getShape()); in insertCopies()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/ |
D | com_github_javaparser_symbolsolver_declarations_common_MethodDeclarationCommonLogic.txt | 27 …eParameters().stream().filter(tp -> tp.getName().equals(name)).map(tp -> toType(tp)).findFirst() =… 28 …eParameters().stream().filter(tp -> tp.getName().equals(name)).map(tp -> toType(tp)) ==> java.util… 34 …Line 88) toType(tp) ==> com.github.javaparser.symbolsolver.declarations.common.MethodDeclarationCo…
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/declarations/common/ |
D | MethodDeclarationCommonLogic.java | 88 …ypeParameters().stream().filter(tp -> tp.getName().equals(name)).map(tp -> toType(tp)).findFirst(); in typeParamByName() 91 protected ResolvedType toType(ResolvedTypeParameterDeclaration typeParameterDeclaration) { in toType() method in MethodDeclarationCommonLogic
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/declarations/common/ |
D | MethodDeclarationCommonLogic.java | 88 …ypeParameters().stream().filter(tp -> tp.getName().equals(name)).map(tp -> toType(tp)).findFirst(); in typeParamByName() 91 protected Type toType(TypeParameterDeclaration typeParameterDeclaration) { in toType() method in MethodDeclarationCommonLogic
|
/external/guice/core/src/com/google/inject/spi/ |
D | TypeConverter.java | 30 Object convert(String value, TypeLiteral<?> toType); in convert() argument
|
/external/dokka/core/src/main/kotlin/Utilities/ |
D | DokkaModules.kt | 79 kClass?.let { value toType it } in toOptional() 81 inline infix fun <reified T: Any, TKClass: KClass<out T>> AnnotatedBindingBuilder<T>.toType(kClass:… method
|
/external/guice/core/test/com/google/inject/ |
D | TypeConversionTest.java | 422 public Object convert(String value, TypeLiteral<?> toType) { in testStringIsConvertedOnlyOnce() 508 public Object convert(String value, TypeLiteral<?> toType) { in mockTypeConverter() 522 public Object convert(String value, TypeLiteral<?> toType) {
|
D | ParentInjectorTest.java | 333 public Object convert(String value, TypeLiteral<?> toType) {
|
/external/python/cpython2/Mac/Modules/ae/ |
D | _AEmodule.c | 93 DescType toType; in AEDesc_AECoerceDesc() local 99 PyMac_GetOSType, &toType)) in AEDesc_AECoerceDesc() 102 toType, in AEDesc_AECoerceDesc() 940 DescType toType; in AE_AECoercePtr() local 948 PyMac_GetOSType, &toType)) in AE_AECoercePtr() 953 toType, in AE_AECoercePtr()
|
/external/angle/src/compiler/translator/tree_ops/ |
D | RewriteRowMajorMatrices.cpp | 1415 const TType &toType = to->getType(); in addFieldCopy() local 1422 getCopyStructFieldFunction(&fromType, &toType, isCopyToOriginal); in addFieldCopy() 1442 TType *toType = new TType(to, true); in declareStructCopy() local 1448 new TVariable(mSymbolTable, ImmutableString("to"), toType, SymbolType::AngleInternal); in declareStructCopy() 1505 SymbolType::AngleInternal, toType, true); in declareStructCopy()
|
/external/llvm-project/flang/lib/Lower/ |
D | IO.cpp | 434 mlir::Location loc, mlir::Type toType) { in getDefaultFilename() argument 437 return builder.createConvert(loc, toType, null); in getDefaultFilename() 441 mlir::Location loc, mlir::Type toType) { in getDefaultLineNo() argument 443 builder.getIntegerAttr(toType, 0)); in getDefaultLineNo() 447 mlir::Location loc, mlir::Type toType) { in getDefaultScratch() argument 450 return builder.createConvert(loc, toType, null); in getDefaultScratch() 454 mlir::Location loc, mlir::Type toType) { in getDefaultScratchLen() argument 456 builder.getIntegerAttr(toType, 0)); in getDefaultScratchLen() 990 mlir::Type toType) { in getDescriptor() argument
|
/external/llvm-project/clang/lib/Tooling/ |
D | InterpolatingCompilationDatabase.cpp | 199 Type = toType(LangStandard::getLangStandardForKind(Std).getLanguage()); in TransferableCommand() 256 static types::ID toType(Language Lang) { in toType() function
|
/external/angle/src/libANGLE/renderer/d3d/d3d9/ |
D | formatutils9.cpp | 467 template <GLenum fromType, bool normalized, unsigned int toType> 468 struct ConversionRule : Cast<typename GLToCType<fromType>::type, typename D3DToCType<toType>::type>
|
/external/llvm-project/mlir/lib/Conversion/SPIRVToLLVM/ |
D | ConvertSPIRVToLLVM.cpp | 777 Type toType = operation.getType(); in matchAndRewrite() local 779 auto dstType = this->typeConverter.convertType(toType); in matchAndRewrite() 783 if (getBitWidth(fromType) < getBitWidth(toType)) { in matchAndRewrite() 788 if (getBitWidth(fromType) > getBitWidth(toType)) { in matchAndRewrite()
|
/external/llvm-project/llvm/lib/Target/NVPTX/ |
D | NVPTXISelDAGToDAG.cpp | 1757 unsigned int toType; in tryStore() local 1760 toType = ScalarVT.SimpleTy == MVT::f16 ? NVPTX::PTXLdStInstCode::Untyped in tryStore() 1763 toType = NVPTX::PTXLdStInstCode::Unsigned; in tryStore() 1786 getI32Imm(toType, dl), in tryStore() 1804 getI32Imm(toType, dl), in tryStore() 1830 getI32Imm(toType, dl), in tryStore() 1854 getI32Imm(toType, dl), in tryStore()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXISelDAGToDAG.cpp | 1758 unsigned int toType; in tryStore() local 1761 toType = ScalarVT.SimpleTy == MVT::f16 ? NVPTX::PTXLdStInstCode::Untyped in tryStore() 1764 toType = NVPTX::PTXLdStInstCode::Unsigned; in tryStore() 1787 getI32Imm(toType, dl), in tryStore() 1805 getI32Imm(toType, dl), in tryStore() 1831 getI32Imm(toType, dl), in tryStore() 1855 getI32Imm(toType, dl), in tryStore()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXISelDAGToDAG.cpp | 2160 unsigned int toType; in tryStore() local 2162 toType = NVPTX::PTXLdStInstCode::Float; in tryStore() 2164 toType = NVPTX::PTXLdStInstCode::Unsigned; in tryStore() 2200 getI32Imm(toType, dl), getI32Imm(toTypeWidth, dl), Addr, in tryStore() 2229 getI32Imm(toType, dl), getI32Imm(toTypeWidth, dl), Base, in tryStore() 2283 getI32Imm(toType, dl), getI32Imm(toTypeWidth, dl), Base, in tryStore() 2336 getI32Imm(toType, dl), getI32Imm(toTypeWidth, dl), N2, in tryStore()
|