Home
last modified time | relevance | path

Searched refs:Consumer (Results 1 – 25 of 100) sorted by relevance

1234

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DMultiplexConsumer.cpp279 for (auto &Consumer : Consumers) { in MultiplexConsumer() local
280 if (auto *mutationListener = Consumer->GetASTMutationListener()) in MultiplexConsumer()
282 if (auto *serializationListener = Consumer->GetASTDeserializationListener()) in MultiplexConsumer()
299 for (auto &Consumer : Consumers) in Initialize() local
300 Consumer->Initialize(Context); in Initialize()
305 for (auto &Consumer : Consumers) in HandleTopLevelDecl() local
306 Continue = Continue && Consumer->HandleTopLevelDecl(D); in HandleTopLevelDecl()
311 for (auto &Consumer : Consumers) in HandleInlineFunctionDefinition() local
312 Consumer->HandleInlineFunctionDefinition(D); in HandleInlineFunctionDefinition()
316 for (auto &Consumer : Consumers) in HandleCXXStaticMemberVarInstantiation() local
[all …]
H A DCompilerInvocation.cpp306 static void denormalizeSimpleFlag(ArgumentConsumer Consumer, in denormalizeSimpleFlag() argument
309 Consumer(Spelling); in denormalizeSimpleFlag()
346 return [Value](ArgumentConsumer Consumer, const Twine &Spelling, in makeBooleanOptionDenormalizer()
349 Consumer(Spelling); in makeBooleanOptionDenormalizer()
353 static void denormalizeStringImpl(ArgumentConsumer Consumer, in denormalizeStringImpl() argument
361 Consumer(Spelling); in denormalizeStringImpl()
362 Consumer(Value); in denormalizeStringImpl()
366 Consumer(Spelling + Value); in denormalizeStringImpl()
375 static void denormalizeString(ArgumentConsumer Consumer, const Twine &Spelling, in denormalizeString() argument
378 denormalizeStringImpl(Consumer, Spelling, OptClass, TableIndex, Twine(Value)); in denormalizeString()
[all …]
/freebsd/lib/libdevdctl/
H A Dconsumer.cc71 const char Consumer::s_devdSockPath[] = "/var/run/devd.seqpacket.pipe";
74 Consumer::Consumer(Event::BuildMethod *defBuilder, in Consumer() function in DevdCtl::Consumer
84 Consumer::~Consumer() in ~Consumer()
90 Consumer::ConnectToDevd() in ConnectToDevd()
125 Consumer::DisconnectFromDevd() in DisconnectFromDevd()
135 Consumer::ReadEvent() in ReadEvent()
151 Consumer::ReplayUnconsumedEvents(bool discardUnconsumed) in ReplayUnconsumedEvents()
174 Consumer::SaveEvent(const Event &event) in SaveEvent()
183 Consumer::NextEvent() in NextEvent()
206 Consumer::ProcessEvents() in ProcessEvents()
[all …]
H A Dconsumer.h51 class Consumer
54 Consumer(Event::BuildMethod *defBuilder = NULL,
57 virtual ~Consumer();
153 Consumer::Connected() const in Connected()
160 Consumer::GetPollFd() in GetPollFd()
166 Consumer::GetFactory() in GetFactory()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DTransformer.h80 ChangeSetConsumer Consumer)
82 [Consumer = std::move(Consumer)](
85 Consumer(Result->Changes);
87 Consumer(Result.takeError());
100 Consumer);
142 std::function<void(llvm::Expected<TransformerResult<T>>)> Consumer;
147 std::function<void(llvm::Expected<TransformerResult<T>>)> Consumer)
148 : Rule(std::move(R)), Consumer(std::move(Consumer)) {
165 Consumer(Transformations.takeError());
175 Consumer(C.takeError());
[all …]
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DIncrementalParser.cpp36 std::unique_ptr<ASTConsumer> Consumer; member in clang::IncrementalASTConsumer
40 : Interp(InterpRef), Consumer(std::move(C)) {} in IncrementalASTConsumer()
45 if (!Consumer) in HandleTopLevelDecl()
53 return Consumer->HandleTopLevelDecl(DGR); in HandleTopLevelDecl()
56 Consumer->HandleTranslationUnit(Ctx); in HandleTranslationUnit()
59 Consumer->HandleInlineFunctionDefinition(D); in HandleInlineFunctionDefinition()
62 Consumer->HandleInterestingDecl(D); in HandleInterestingDecl()
65 Consumer->HandleTagDeclDefinition(D); in HandleTagDeclDefinition()
68 Consumer->HandleTagDeclRequiredDefinition(D); in HandleTagDeclRequiredDefinition()
71 Consumer->HandleCXXImplicitFunctionInstantiation(D); in HandleCXXImplicitFunctionInstantiation()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringActionRules.h54 void invoke(RefactoringResultConsumer &Consumer, in invoke() argument
58 Consumer.handleError(Changes.takeError()); in invoke()
60 Consumer.handle(std::move(*Changes)); in invoke()
76 void invoke(RefactoringResultConsumer &Consumer, in invoke() argument
80 Consumer.handleError(Occurrences.takeError()); in invoke()
82 Consumer.handle(std::move(*Occurrences)); in invoke()
H A DRefactoringActionRulesInternal.h48 RefactoringResultConsumer &Consumer, RefactoringRuleContext &Context, in invokeRuleAfterValidatingRequirements() argument
56 return Consumer.handleError(std::move(Err)); in invokeRuleAfterValidatingRequirements()
62 return Consumer.handleError(Rule.takeError()); in invokeRuleAfterValidatingRequirements()
63 Rule->invoke(Consumer, Context); in invokeRuleAfterValidatingRequirements()
130 void invoke(RefactoringResultConsumer &Consumer,
133 Consumer, Context, Requirements,
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseAST.cpp100 void clang::ParseAST(Preprocessor &PP, ASTConsumer *Consumer, in ParseAST() argument
107 new Sema(PP, Ctx, *Consumer, TUKind, CompletionConsumer)); in ParseAST()
130 ASTConsumer *Consumer = &S.getASTConsumer(); in ParseAST() local
147 External->StartTranslationUnit(Consumer); in ParseAST()
175 if (ADecl && !Consumer->HandleTopLevelDecl(ADecl.get())) in ParseAST()
182 Consumer->HandleTopLevelDecl(DeclGroupRef(D)); in ParseAST()
184 Consumer->HandleTranslationUnit(S.getASTContext()); in ParseAST()
200 Consumer->PrintStats(); in ParseAST()
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDiffLog.h22 class Consumer; variable
29 Consumer *consumer;
40 LogBuilder(Consumer &c, StringRef Format) : consumer(&c), Format(Format) {} in LogBuilder()
64 Consumer &consumer;
67 DiffLogBuilder(Consumer &c) : consumer(c) {} in DiffLogBuilder()
H A DDifferenceEngine.h60 DifferenceEngine(Consumer &consumer) in DifferenceEngine()
71 Consumer& getConsumer() const { return consumer; } in getConsumer()
85 Consumer &consumer;
H A DDiffConsumer.h30 class Consumer {
52 virtual ~Consumer() {} in ~Consumer()
55 class DiffConsumer : public Consumer {
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DAnalysisManager.cpp53 for (PathDiagnosticConsumer *Consumer : PathConsumers) { in ~AnalysisManager()
54 delete Consumer; in ~AnalysisManager()
60 for (PathDiagnosticConsumer *Consumer : PathConsumers) { in FlushDiagnostics()
61 Consumer->FlushDiagnostics(&filesMade); in FlushDiagnostics()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp4015 LookupVisibleHelper(VisibleDeclConsumer &Consumer, bool IncludeDependentBases, in LookupVisibleHelper() argument
4017 : Consumer(Consumer), IncludeDependentBases(IncludeDependentBases), in LookupVisibleHelper()
4037 Result.setAllowHidden(Consumer.includeHiddenDecls()); in lookupVisibleDecls()
4047 Result.setAllowHidden(Consumer.includeHiddenDecls()); in lookupVisibleDecls()
4066 Consumer.EnteredContext(Ctx); in lookupInDeclContext()
4091 Consumer.FoundDecl(ND, Visited.checkHidden(ND), Ctx, InBaseClass); in lookupInDeclContext()
4122 Consumer.FoundDecl(ND, Visited.checkHidden(ND), Ctx, InBaseClass); in lookupInDeclContext()
4267 Consumer.FoundDecl(ND, Visited.checkHidden(ND), nullptr, false); in lookupInScope()
4340 VisibleDeclConsumer &Consumer; member in __anon506a0daf1811::LookupVisibleHelper
4347 VisibleDeclConsumer &Consumer, in LookupVisibleDecls() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp285 StringRef WorkingDirectory, DependencyConsumer &Consumer, in DependencyScanningAction() argument
291 : WorkingDirectory(WorkingDirectory), Consumer(Consumer), in DependencyScanningAction()
397 std::move(Opts), WorkingDirectory, Consumer)); in runInvocation()
402 std::move(Opts), ScanInstance, Consumer, Controller, in runInvocation()
466 DependencyConsumer &Consumer; member in __anona07bc58e0111::DependencyScanningAction
509 DependencyConsumer &Consumer, DependencyActionController &Controller, in computeDependencies() argument
523 if (computeDependencies(WorkingDirectory, CommandLine, Consumer, Controller, in computeDependencies()
574 DiagnosticsEngine &Diags, DependencyConsumer &Consumer) { in createAndRunToolInvocation() argument
586 Consumer.handleBuildCommand({std::move(Executable), std::move(Args)}); in createAndRunToolInvocation()
592 DependencyConsumer &Consumer, DependencyActionController &Controller, in computeDependencies() argument
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestStateMachine.java58 printState(Consumer consumer) in printState()
66 beforeOpen(Consumer consumer) in beforeOpen()
174 beforeCompile(Consumer consumer) in beforeCompile()
203 beforeEnable(Consumer consumer) in beforeEnable()
221 beforeGo(Consumer consumer) in beforeGo()
270 afterGo(Consumer consumer, Program program) in afterGo()
367 afterStop(Consumer consumer, Program program) in afterStop()
411 afterClose(Consumer consumer, Program program) in afterClose()
585 final Consumer consumer = new LocalConsumer(); in main()
H A DTestMaxConsumers.java61 Consumer[] consumers = new Consumer[n]; in main()
80 Consumer consumer = new LocalConsumer(); in main()
H A DTestGetAggregate.java47 testIncluded(Consumer consumer, String ... aggregationNames) in testIncluded()
87 testCleared(Consumer consumer, String ... aggregationNames) in testCleared()
157 final Consumer consumer = new LocalConsumer(); in startIncludedTest()
191 final Consumer consumer = new LocalConsumer(); in startClearedTest()
H A DTestDrop.java62 sampleAggregate(Consumer consumer) throws DTraceException in sampleAggregate()
75 startAggregateThread(final Consumer consumer) in startAggregateThread()
125 final Consumer consumer = new LocalConsumer() { in main()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h423 SourceLocation (Parser::*Consumer)();
448 Consumer = &Parser::ConsumeBrace;
452 Consumer = &Parser::ConsumeParen;
457 Consumer = &Parser::ConsumeBracket;
471 LOpen = (P.*Consumer)(); in consumeOpen()
483 LClose = (P.*Consumer)(); in consumeClose()
489 LClose = (P.*Consumer)(); in consumeClose()
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp82 DiffConsumer Consumer; in main() local
83 DifferenceEngine Engine(Consumer); in main()
95 return Consumer.hadDifferences(); in main()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaConsumer.h41 static bool classof(const ASTConsumer *Consumer) { in classof() argument
42 return Consumer->SemaConsumer; in classof()
/freebsd/sys/contrib/device-tree/Bindings/cpufreq/
H A Dimx-cpufreq-dt.txt15 0: Consumer
16 1: Extended Consumer
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInvocation.h176 void generateCC1CommandLine(ArgumentConsumer Consumer) const;
187 ArgumentConsumer Consumer,
192 ArgumentConsumer Consumer, const llvm::Triple &T,
197 ArgumentConsumer Consumer,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.h162 void StartTranslationUnit(clang::ASTConsumer *Consumer) override;
245 void StartTranslationUnit(clang::ASTConsumer *Consumer) override { in StartTranslationUnit() argument
246 return m_original.StartTranslationUnit(Consumer); in StartTranslationUnit()

1234