HomeSort by: relevance | last modified time | path
    Searched refs:TypeStr (Results 1 - 18 of 18) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
MemProfiler.cpp 534 const std::string TypeStr = AccessIsWrite ? "store" : "load";
539 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + TypeStr + "N",
543 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + TypeStr,
HWAddressSanitizer.cpp 563 const std::string TypeStr = AccessIsWrite ? "store" : "load";
567 ClMemoryAccessCallbackPrefix + TypeStr + "N" + EndingStr,
574 ClMemoryAccessCallbackPrefix + TypeStr +
AddressSanitizer.cpp 2637 const std::string TypeStr = AccessIsWrite ? "store" : "load";
2649 kAsanReportErrorTemplate + ExpStr + TypeStr + "_n" + EndingStr,
2653 ClMemoryAccessCallbackPrefix + ExpStr + TypeStr + "N" + EndingStr,
2658 const std::string Suffix = TypeStr + itostr(1ULL << AccessSizeIndex);
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFYAML.cpp 37 constexpr StringRef SectionHeaderTable::TypeStr;
1445 StringRef TypeStr;
1450 TypeStr = SHT->TypeStr;
1454 TypeStr = getStringValue(IO, "Type");
1455 if (TypeStr.startswith("SHT_") || isInteger(TypeStr))
1459 if (TypeStr == "Fill") {
1466 if (TypeStr == ELFYAML::SectionHeaderTable::TypeStr) {
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
RISCVVEmitter.cpp 471 auto getTypeString = [&](StringRef TypeStr) {
473 return Twine(TypeStr + Twine(ElementBitwidth) + "_t").str();
474 return Twine("v" + TypeStr + Twine(ElementBitwidth) + LMUL.str() + "_t")
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp 230 std::string TypeStr =
233 NameAndAttributes += TypeStr.length() + 3;
234 NameAndAttributes += TypeStr;
299 std::string TypeStr = Context.getObjCEncodingForMethodDecl(accessor);
300 llvm::Constant *TypeEncoding = MakeConstantString(TypeStr);
1134 std::string TypeStr =
1136 Fields.add(MakeConstantString(TypeStr));
1137 std::string typeStr;
1138 Context.getObjCEncodingForType(property->getType(), typeStr);
1139 Fields.add(MakeConstantString(typeStr));
    [all...]
CGObjCMac.cpp 5697 std::string TypeStr;
5698 CGM.getContext().getObjCEncodingForType(Field->getType(), TypeStr, Field);
5700 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
5702 Entry = CreateCStringLiteral(TypeStr, ObjCLabelType::MethodVarType);
5708 std::string TypeStr =
5711 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
5713 Entry = CreateCStringLiteral(TypeStr, ObjCLabelType::MethodVarType);
5730 std::string TypeStr =
5732 return GetPropertyName(&CGM.getContext().Idents.get(TypeStr));
CodeGenModule.cpp 2611 std::string TypeStr = Ty.getAsString(getContext().getPrintingPolicy());
2612 if (NoSanitizeL.containsType(EnabledAsanMask, TypeStr, Category))
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclPrinter.cpp 1572 std::string TypeStr = PDecl->getASTContext().getUnqualifiedObjCPointerType(T).
1574 Out << ' ' << TypeStr;
1575 if (!StringRef(TypeStr).endswith("*"))
ASTContext.cpp 10598 const char *TypeStr = BuiltinInfo.getTypeString(Id);
10599 if (TypeStr[0] == '\0') {
10608 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error,
10615 while (TypeStr[0] && TypeStr[0] != '.') {
10616 QualType Ty = DecodeTypeFromStr(TypeStr, *this, Error, RequiresICE, true);
10635 assert((TypeStr[0] != '.' || TypeStr[1] == 0) &&
10638 bool Variadic = (TypeStr[0] == '.');
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
ELFYAML.h 310 static constexpr StringRef TypeStr = "SectionHeaderTable";
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MIParser.cpp 1737 StringRef TypeStr = Token.range();
1738 if (TypeStr.front() != 'i' && TypeStr.front() != 's' &&
1739 TypeStr.front() != 'p')
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ELFDumper.cpp 6200 std::string TypeStr;
6202 TypeStr = Ent->Name.str();
6205 TypeStr = "Processor Specific";
6207 TypeStr = "OS Specific";
6209 TypeStr = "Unknown";
6211 W.printString("Type", TypeStr + " (0x" + to_hexString(E.e_type) + ")");
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOverload.cpp 5920 std::string TypeStr;
5921 ConvTy.getAsStringInternal(TypeStr, SemaRef.getPrintingPolicy());
5925 "static_cast<" + TypeStr + ">(")
11262 std::string TypeStr("operator");
11263 TypeStr += Opc;
11264 TypeStr += "(";
11265 TypeStr += Cand->BuiltinParamTypes[0].getAsString();
11267 TypeStr += ")";
11268 S.Diag(OpLoc, diag::note_ovl_builtin_candidate) << TypeStr;
11270 TypeStr += ", "
    [all...]
SemaChecking.cpp 7015 /// TypeStr is a string containing the type descriptor of the value returned by
7017 bool Sema::SemaBuiltinPPCMMACall(CallExpr *TheCall, const char *TypeStr) {
7019 assert((TypeStr[0] != '\0') &&
7025 // The first type in TypeStr is the type of the value returned by the
7027 QualType type = DecodePPCMMATypeFromStr(Context, TypeStr, Mask);
7030 while (*TypeStr != '\0') {
7032 QualType ExpectedType = DecodePPCMMATypeFromStr(Context, TypeStr, Mask);
7058 // read from TypeStr. So we need to read them all to ensure we have the right
7061 while (*TypeStr != '\0') {
7062 (void) DecodePPCMMATypeFromStr(Context, TypeStr, Mask)
    [all...]
SemaExprCXX.cpp 3837 std::string TypeStr;
3838 ClassType.getAsStringInternal(TypeStr, getPrintingPolicy());
3840 << FixItHint::CreateInsertion(DtorLoc, TypeStr + "::");
SemaDeclAttr.cpp 2618 StringRef TypeStr;
2620 if (!S.checkStringLiteralArgumentAttr(AL, 0, TypeStr, &LiteralLoc))
2624 if (!VisibilityAttr::ConvertStrToVisibilityType(TypeStr, type)) {
2626 << TypeStr;
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 405 value TypeStr = caml_copy_string(TypeCStr);
408 return TypeStr;

Completed in 137 milliseconds