Home
last modified time | relevance | path

Searched refs:typeName (Results 1 – 15 of 15) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/utils/ABITest/
H A DABITestGen.py175 typeName = self.getTypeName(type)
176 info = self.testReturnValues.get(typeName)
178 name = '%s_retval'%(typeName.replace(' ','_').replace('*','star'),)
179 print('%s %s;'%(typeName,name), file=self.output)
181 print('extern %s %s;'%(typeName,name), file=self.outputHeader)
183 print('extern %s %s;'%(typeName,name), file=self.outputTests)
184 info = self.testReturnValues[typeName] = name
188 typeName = self.getTypeName(type)
189 info = self.testValues.get(typeName)
192 print('static %s %s[] = {'%(typeName,name), file=self.outputTests)
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddtoh.d1852 string typeName;
1855 case AST.Tvoid: typeName = "void"; break;
1856 case AST.Tbool: typeName = "bool"; break;
1857 case AST.Tchar: typeName = "char"; break;
1858 case AST.Twchar: typeName = "char16_t"; break;
1859 case AST.Tdchar: typeName = "char32_t"; break;
1860 case AST.Tint8: typeName = "int8_t"; break;
1871 typeName = "_d_real";
1877 typeName = "_Complex _d_real";
1885 typeName = "_d_real";
[all …]
/netbsd/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp680 auto declareSpecialization = [&](const Twine &typeName, in emitPackUnpackOptionalTemplate()
683 "struct " << classPrefix << "OptionalValue<" << typeName << "> {\n" in emitPackUnpackOptionalTemplate()
684 " static " << (info.IsReader ? "Optional<" : "") << typeName in emitPackUnpackOptionalTemplate()
686 << (info.IsReader ? "" : "Optional<") << typeName in emitPackUnpackOptionalTemplate()
698 StringRef typeName = type.getCXXTypeName(); in emitPackUnpackOptionalTemplate() local
699 declareSpecialization(typeName, code); in emitPackUnpackOptionalTemplate()
701 declareSpecialization("const " + typeName, code); in emitPackUnpackOptionalTemplate()
H A DMveEmitter.cpp486 virtual std::string typeName() const { return "Value *"; } in typeName() function in __anon3040f0e80111::Result
576 std::string typeName() const override { in typeName() function in __anon3040f0e80111::BuiltinArgResult
577 return AddressType ? "Address" : Result::typeName(); in typeName()
717 std::string typeName() const override { in typeName() function in __anon3040f0e80111::AddressResult
772 std::string typeName() const override { in typeName() function in __anon3040f0e80111::TypeResult
885 std::string Type = V->typeName(); in genCode()
886 OS << V->typeName(); in genCode()
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DPropertiesBase.td12 class PropertyType<string typeName = ""> {
14 string CXXName = !if(!ne(typeName, ""), typeName, NAME);
36 class EnumPropertyType<string typeName = ""> : PropertyType<typeName> {}
57 class DefaultValuePropertyType<string typeName = ""> : PropertyType<typeName> {
66 class CountPropertyType<string typeName = ""> : PropertyType<typeName> {
/netbsd/external/bsd/ipf/dist/perl/
H A Dplog978 my $typeName = $info->{name};
989 return "$typeName$codeName";
/netbsd/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp387 StringRef typeName = (*Operands)[operandIndex].Rec->getName(); in handleOperand() local
389 OperandEncoding encoding = encodingFromString(std::string(typeName), OpSize); in handleOperand()
394 typeFromString(std::string(typeName), HasREX_WPrefix, OpSize); in handleOperand()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DMachO.h174 StringRef typeName() const;
220 StringRef typeName() const;
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenModule.cpp1590 auto typeName = Ty.getUnqualifiedType().getAsString(Policy); in GenOpenCLArgMetadata() local
1593 StringRef typeNameRef = typeName; in GenOpenCLArgMetadata()
1601 return typeName; in GenOpenCLArgMetadata()
1613 std::string typeName = getTypeSpelling(pointeeTy) + "*"; in GenOpenCLArgMetadata() local
1616 argTypeNames.push_back(llvm::MDString::get(VMContext, typeName)); in GenOpenCLArgMetadata()
1639 std::string typeName = getTypeSpelling(ty); in GenOpenCLArgMetadata() local
1647 removeImageAccessQualifier(typeName); in GenOpenCLArgMetadata()
1651 argTypeNames.push_back(llvm::MDString::get(VMContext, typeName)); in GenOpenCLArgMetadata()
H A DCGDebugInfo.cpp4695 SmallString<36> typeName; in EmitDeclareOfBlockLiteralArgVariable() local
4696 llvm::raw_svector_ostream(typeName) in EmitDeclareOfBlockLiteralArgVariable()
4702 DBuilder.createStructType(tunit, typeName.str(), tunit, line, in EmitDeclareOfBlockLiteralArgVariable()
H A DCGObjCGNU.cpp2452 llvm::Constant *typeName = in GetEHType() local
2458 fields.add(typeName); in GetEHType()
/netbsd/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOObjectFile.cpp3417 StringRef MachORebaseEntry::typeName() const { in typeName() function in MachORebaseEntry
3961 StringRef MachOBindEntry::typeName() const { in typeName() function in MachOBindEntry
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DMachODump.cpp10330 Address, Entry.typeName().str().c_str()); in printMachORebaseTable()
10379 << left_justify(Entry.typeName(), 8) << " " in printMachOBindTable()
10437 << left_justify(Entry.typeName(), 8) << " " in printMachOWeakBindTable()
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dconv.d4329 private void testEmplaceChunk(void[] chunk, size_t typeSize, size_t typeAlignment, string typeName)…
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp3231 #define PPC_VECTOR_TYPE(typeName, Id, size) \ in DecodePPCMMATypeFromStr() argument