Searched refs:Result (Results 251 - 275 of 928) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h531 bool Result; local
532 return !is_local(Path, Result) && Result;
538 bool Result; local
539 return !is_local(FD, Result) && Result;
568 bool Result; local
569 return !is_directory(Path, Result) && Result;
590 bool Result; local
614 bool Result; local
696 file_size(const Twine &Path, uint64_t &Result) argument
[all...]
H A DConvertUTF.h203 bool ConvertUTF8toWide(llvm::StringRef Source, std::wstring &Result);
209 bool ConvertUTF8toWide(const char *Source, std::wstring &Result);
215 bool convertWideToUTF8(const std::wstring &Source, std::string &Result);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc296 bool &Result) {
323 Result = true;
329 Result = false;
394 std::error_code is_local(int FD, bool &Result) {
401 return is_local_internal(FinalPath, Result);
677 static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
688 Result = file_status(file_type::type_unknown);
694 Result = file_status(file_type::character_file);
697 Result = file_status(file_type::fifo_file);
705 Result
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DAttributes.cpp450 std::string Result; local
451 Result += "byval";
453 raw_string_ostream OS(Result);
454 Result += '(';
457 Result += ')';
459 return Result;
463 std::string Result; local
464 Result += "preallocated";
465 raw_string_ostream OS(Result);
466 Result
479 std::string Result; local
514 std::string Result = "allocsize("; local
530 std::string Result; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp475 MemoizedMatchResult Result; local
476 Result.Nodes = *Builder;
477 Result.ResultOfMatch = matchesRecursively(Node, Matcher, &Result.Nodes,
481 CachedResult = std::move(Result);
727 MemoizedMatchResult Result; local
728 Result.Nodes = *Builder;
729 Result.ResultOfMatch = matchesAncestorOfRecursively(
730 Node, Ctx, Matcher, &Result.Nodes, MatchMode);
733 CachedResult = std::move(Result);
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnalyzer.cpp66 tooling::Replacements Result; local
107 auto Err = Result.add(R);
116 return {Result, Penalty};
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseBitVector.h686 // Result of RHS1 & ~RHS2 is stored into this bitmap.
773 SparseBitVector<ElementSize> Result(*this);
774 Result &= RHS;
775 return (Result == RHS);
851 SparseBitVector<ElementSize> Result(LHS);
852 Result |= RHS;
853 return Result;
860 SparseBitVector<ElementSize> Result(LHS);
861 Result &= RHS;
862 return Result;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DStackSafetyAnalysis.h88 using Result = StackSafetyInfo;
125 using Result = StackSafetyGlobalInfo;
126 Result run(Module &M, ModuleAnalysisManager &AM);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp874 void Preprocessor::HandleSkippedDirectiveWhileUsingPCH(Token &Result, argument
876 if (const IdentifierInfo *II = Result.getIdentifierInfo()) {
878 return HandleDefineDirective(Result,
883 return HandleIncludeDirective(HashLoc, Result);
886 Lex(Result);
887 auto *II = Result.getIdentifierInfo();
889 return HandlePragmaHdrstop(Result);
899 void Preprocessor::HandleDirective(Token &Result) { argument
920 Token SavedHash = Result;
924 LexUnexpandedToken(Result);
2010 Token &Result = IncludeTok; local
2920 HandleIfdefDirective(Token &Result, const Token &HashToken, bool isIfndef, bool ReadAnyTokensBeforeDirective) argument
3070 HandleElseDirective(Token &Result, const Token &HashToken) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DComparisonCategories.h186 const ComparisonCategoryInfo *Result = lookupInfo(Kind); local
187 assert(Result != nullptr &&
189 return *Result;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplateDeduction.h96 TemplateArgumentList *Result = Deduced; local
98 return Result;
243 unsigned Result : 8; member in struct:clang::DeductionFailureInfo
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp188 auto Result = getDirectoryRef(DirName, CacheFailure); local
189 if (Result)
190 return &Result->getDirEntry();
191 return llvm::errorToErrorCode(Result.takeError());
196 auto Result = getFileRef(Filename, openFile, CacheFailure); local
197 if (Result)
198 return &Result->getFileEntry();
199 return llvm::errorToErrorCode(Result.takeError());
472 auto Result = Entry->File->getBuffer(Filename, FileSize, local
475 return Result;
519 getNoncachedStatValue(StringRef Path, llvm::vfs::Status &Result) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DGlobalTypeTableBuilder.cpp128 auto Result = HashedRecords.try_emplace(Hash, Index.toArrayIndex());
129 if (!Result.second) {
130 Index = Result.first->second;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.cpp90 uint32_t Result = 0; local
92 Result += Builder.calculateSerializedLength();
94 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Linker/
H A DLinkModules.cpp69 Comdat::SelectionKind &Result,
153 Comdat::SelectionKind &Result,
165 Result = Comdat::SelectionKind::Largest;
167 Result = Comdat::SelectionKind::Any;
169 Result = Dst;
175 switch (Result) {
196 if (Result == Comdat::SelectionKind::ExactMatch) {
201 } else if (Result == Comdat::SelectionKind::Largest) {
203 } else if (Result == Comdat::SelectionKind::SameSize) {
219 Comdat::SelectionKind &Result,
150 computeResultingSelectionKind(StringRef ComdatName, Comdat::SelectionKind Src, Comdat::SelectionKind Dst, Comdat::SelectionKind &Result, bool &LinkFromSrc) argument
218 getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &Result, bool &LinkFromSrc) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DMinidump.cpp49 std::string Result; local
50 if (!convertUTF16ToUTF8String(WStr, Result))
53 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysis.cpp181 bool Result = relatedCheck(A, B, DL);
182 CachedResults[ValuePairTy(A, B)] = Result;
183 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DImportedFunctionsInliningStatistics.cpp73 double Result = 0; local
75 Result = 100 * static_cast<double>(Fraction) / All;
78 Str << std::setprecision(4) << Msg << ": " << Fraction << " [" << Result
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h67 sampleprof_error Result) {
71 Result != sampleprof_error::success)
72 Accumulator = Result;
327 sampleprof_error Result = addSamples(Other.getSamples(), Weight); local
329 MergeResult(Result, addCalledTarget(I.first(), I.second, Weight));
331 return Result;
516 sampleprof_error Result = sampleprof_error::success; local
518 MergeResult(Result, addTotalSamples(Other.getTotalSamples(), Weight));
519 MergeResult(Result, addHeadSamples(Other.getHeadSamples(), Weight));
523 MergeResult(Result, BodySample
66 MergeResult(sampleprof_error &Accumulator, sampleprof_error Result) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DJumpThreading.h129 Value *V, BasicBlock *BB, jumpthreading::PredValueInfo &Result,
134 jumpthreading::PredValueInfo &Result,
138 return ComputeValueKnownInPredecessorsImpl(V, BB, Result, Preference,
133 ComputeValueKnownInPredecessors(Value *V, BasicBlock *BB, jumpthreading::PredValueInfo &Result, jumpthreading::ConstantPreference Preference, Instruction *CxtI = nullptr) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUAliasAnalysis.cpp84 AliasResult Result = getAliasResult(asA, asB); local
85 if (Result == NoAlias)
86 return Result;
/freebsd-13-stable/contrib/llvm-project/lldb/tools/lldb-instr/
H A DInstrument.cpp70 static std::string GetRecordMethodMacro(StringRef Result, StringRef Class, argument
78 OS << "(" << Result << ", " << Class << ", " << Method;
103 static std::string GetRecordDummyMacro(StringRef Result, StringRef Class, argument
110 OS << "LLDB_RECORD_DUMMY(" << Result << ", " << Class << ", " << Method;
124 static std::string GetRegisterMethodMacro(StringRef Result, StringRef Class, argument
130 OS << "(" << Result << ", " << Class << ", " << Method << ", (" << Signature
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeIndex.h246 TypeIndex Result(A);
247 Result += N;
248 return Result;
253 TypeIndex Result(A);
254 Result -= N;
255 return Result;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h127 std::string &Result,
248 std::vector<uint32_t> &Result) const;
261 std::string &Result) const {
262 return Prologue.getFileNameByIndex(FileIndex, CompDir, Kind, Result);
265 /// Fills the Result argument with the file and line information
270 DILineInfo &Result) const;
300 std::vector<uint32_t> &Result) const;
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp137 Expr::EvalResult Result;
138 if (E->EvaluateAsInt(Result, Context))
139 return Result.Val.getInt() == 0;
193 Expr::EvalResult Result; local
194 if (denom->EvaluateAsInt(Result, Context)) {
195 denomVal = Result.Val.getInt();

Completed in 365 milliseconds

<<11121314151617181920>>