Searched refs:Result (Results 276 - 300 of 858) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp557 bool Parser::ParseFirstTopLevelDecl(DeclGroupPtrTy &Result) { argument
564 bool NoTopLevelDecls = ParseTopLevelDecl(Result, true);
578 bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result, bool IsFirstDecl) { argument
586 Result = nullptr;
622 Result = ParseModuleDecl(IsFirstDecl);
629 Result = Actions.ConvertDeclToDeclGroup(ImportDecl);
686 Result = ParseExternalDeclaration(attrs);
806 ExprResult Result(ParseSimpleAsm(/*ForAsmLabel*/ false, &EndLoc));
811 if (!(getLangOpts().GNUAsm || Result.isInvalid())) {
812 const auto *SL = cast<StringLiteral>(Result
1817 bool Result = TryAnnotateTypeOrScopeToken(); local
2129 ParseMicrosoftIfExistsCondition(IfExistsCondition& Result) argument
2190 IfExistsCondition Result; local
2218 DeclGroupPtrTy Result = ParseExternalDeclaration(attrs); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DPassManager.cpp28 bool FunctionAnalysisManagerModuleProxy::Result::invalidate(
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DCloneDetection.h202 /// \param Result Output parameter to which all created clone groups are
207 void findClones(std::vector<CloneGroup> &Result, Ts... ConstraintList) { argument
217 Result.push_back(AllClones);
219 constrainClones(Result, ConstraintList...);
327 void constrain(std::vector<CloneDetector::CloneGroup> &Result);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h110 Error readULEB128(uint64_t &Result);
111 Error readIntMax(uint64_t &Result, uint64_t MaxPlus1);
112 Error readSize(uint64_t &Result);
113 Error readString(StringRef &Result);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRMCExpr.h52 bool evaluateAsConstant(int64_t &Result) const;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtCXX.cpp101 auto *Result = new (Mem) CoroutineBodyStmt(CtorArgs()); local
102 Result->NumParams = NumParams;
103 auto *ParamBegin = Result->getStoredStmts() + SubStmt::FirstParamMove;
106 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBasicAliasAnalysis.h228 using Result = BasicAAResult;
235 std::unique_ptr<BasicAAResult> Result; member in class:llvm::BasicAAWrapperPass
244 BasicAAResult &getResult() { return *Result; }
245 const BasicAAResult &getResult() const { return *Result; }
H A DAliasAnalysis.h888 AAResultT &Result; member in class:llvm::final
891 explicit Model(AAResultT &Result, AAResults &AAR) : Result(Result) { argument
892 Result.setAAResults(&AAR);
896 void setAAResults(AAResults *NewAAR) override { Result.setAAResults(NewAAR); }
900 return Result.alias(LocA, LocB, AAQI);
905 return Result.pointsToConstantMemory(Loc, AAQI, OrLocal);
909 return Result.getArgModRefInfo(Call, ArgIdx);
913 return Result
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.h69 SmallVectorImpl<uint8_t> &Result);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp168 DecodeStatus Result = DecodeStatus::Success; local
175 while (Result == Success && !Complete) {
179 Result = getSingleInstruction(*Inst, MI, Bytes, Address, cs, Complete);
184 if (Result == MCDisassembler::Fail)
185 return Result;
313 DecodeStatus Result = DecodeStatus::Fail; local
389 Result = decodeInstruction(DecodeLow, *MILow, Instruction & 0x1fff, Address,
392 if (Result != DecodeStatus::Success)
395 Result = decodeInstruction(
397 if (Result !
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DCommentLexer.h298 void formTokenWithChars(Token &Result, const char *TokEnd,
301 void formTextToken(Token &Result, const char *TokEnd) { argument
303 formTokenWithChars(Result, TokEnd, tok::text);
304 Result.setText(Text);
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/mac/
H A DDirectoryWatcher-mac.cpp188 FSEventStreamRef Result = FSEventStreamCreate( local
194 return Result;
219 std::unique_ptr<DirectoryWatcher> Result = local
246 return Result;
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp115 bool Result = InnerMatcher->dynMatches(DynNode, Finder, Builder); variable
116 if (Result) Builder->setBinding(ID, DynNode);
117 return Result;
274 auto Result = *this;
275 Result.Implementation =
276 new IdDynMatcher(ID, std::move(Result.Implementation));
277 return std::move(Result);
333 BoundNodesTreeBuilder Result; local
339 Result.addMatch(BuilderInner);
342 *Builder = std::move(Result);
351 BoundNodesTreeBuilder Result = *Builder; local
364 BoundNodesTreeBuilder Result; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DTokenLexer.cpp804 // Lex the resultant pasted token into Result.
805 Token Result; local
811 Result.startToken();
812 Result.setKind(tok::raw_identifier);
813 Result.setRawIdentifierData(ResultTokStrPtr);
814 Result.setLocation(ResultTokLoc);
815 Result.setLength(LHSLen+RHSLen);
840 bool isInvalid = !TL.LexFromRawLexer(Result);
844 isInvalid |= Result.is(tok::eof);
880 if (Result
1076 PropagateLineStartLeadingSpaceInfo(Token &Result) argument
[all...]
H A DPreprocessingRecord.cpp64 return llvm::make_range(iterator(this, CachedRangeQuery.Result.first),
65 iterator(this, CachedRangeQuery.Result.second));
71 CachedRangeQuery.Result = Res;
321 unsigned Result = LoadedPreprocessedEntities.size(); local
324 return Result;
328 unsigned Result = SkippedRanges.size(); local
331 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizer.cpp310 MFResult Result = legalizeMachineFunction(MF, LI, AuxObservers, *MIRBuilder); local
312 if (Result.FailedOn) {
314 "unable to legalize instruction", *Result.FailedOn);
327 return Result.Changed;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileCollector.h55 bool getRealPath(StringRef SrcPath, SmallVectorImpl<char> &Result);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachineC.cpp227 bool Result = LLVMTargetMachineEmit(T, M, dest, codegen, ErrorMessage); local
229 return Result;
237 bool Result = LLVMTargetMachineEmit(T, M, OStream, codegen, ErrorMessage); local
242 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp393 DeadArgumentEliminationPass::Liveness Result = MaybeLive; local
401 if (Result != Live)
402 Result = SubResult;
404 return Result;
418 Liveness Result = MaybeLive; local
420 Result = SurveyUse(&UU, MaybeLiveUses, RetValNum);
421 if (Result == Live)
424 return Result;
470 Liveness Result = MaybeLive; local
473 Result
630 Liveness Result; local
652 MarkValue(CreateArg(&F, i), Result, MaybeLiveArgUses); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h98 llvm::SmallVectorImpl<char> &Result);
101 llvm::SmallVectorImpl<char> &Result);
104 llvm::SmallVectorImpl<char> &Result);
107 llvm::SmallVectorImpl<char> &Result);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DMD5.cpp233 /// \param Result is assumed to be a minimum of 16-bytes in size.
234 void MD5::final(MD5Result &Result) { argument
258 support::endian::write32le(&Result[0], a);
259 support::endian::write32le(&Result[4], b);
260 support::endian::write32le(&Result[8], c);
261 support::endian::write32le(&Result[12], d);
272 void MD5::stringifyResult(MD5Result &Result, SmallString<32> &Str) { argument
273 Str = Result.digest();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc295 bool &Result) {
322 Result = true;
328 Result = false;
393 std::error_code is_local(int FD, bool &Result) {
400 return is_local_internal(FinalPath, Result);
657 static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
668 Result = file_status(file_type::type_unknown);
674 Result = file_status(file_type::character_file);
677 Result = file_status(file_type::fifo_file);
685 Result
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/Disassembler/
H A DARCDisassembler.cpp300 MCDisassembler::DecodeStatus Result;
320 Result =
322 if (Success == Result) {
324 return Result;
340 Result =
342 if (Success == Result) {
345 return Result;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp154 std::vector<std::string> Result(T.begin(), T.end());
155 return Result;
204 if (std::error_code Result = DatabaseBuffer.getError()) {
205 ErrorMessage = "Error while opening JSON database: " + Result.message();
248 std::vector<std::string> Result; local
250 Result.push_back(CommandRef.first().str());
251 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp108 ArrayRef<uint8_t> Result; local
109 if (auto EC = Buffer->readBytes(StreamBlockOffset, NumBytes, Result))
111 return Result;
246 MSFStreamLayout Result; local
248 Result.Blocks.assign(Blocks.begin(), Blocks.end());
249 Result.Length = getStreamByteSize(StreamIdx);
250 return Result;

Completed in 339 milliseconds

<<11121314151617181920>>