Home
last modified time | relevance | path

Searched refs:Command (Results 1 – 25 of 1900) sorted by relevance

12345678910>>...76

/third_party/skia/third_party/externals/dawn/src/dawn_native/
DCommands.cpp31 Command type; in FreeCommands()
34 case Command::BeginComputePass: { in FreeCommands()
39 case Command::BeginOcclusionQuery: { in FreeCommands()
44 case Command::BeginRenderPass: { in FreeCommands()
49 case Command::CopyBufferToBuffer: { in FreeCommands()
54 case Command::CopyBufferToTexture: { in FreeCommands()
59 case Command::CopyTextureToBuffer: { in FreeCommands()
64 case Command::CopyTextureToTexture: { in FreeCommands()
70 case Command::Dispatch: { in FreeCommands()
75 case Command::DispatchIndirect: { in FreeCommands()
[all …]
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DCommands.cpp29 Command type; in FreeCommands()
32 case Command::BeginComputePass: { in FreeCommands()
36 case Command::BeginRenderPass: { in FreeCommands()
40 case Command::CopyBufferToBuffer: { in FreeCommands()
44 case Command::CopyBufferToTexture: { in FreeCommands()
48 case Command::CopyTextureToBuffer: { in FreeCommands()
52 case Command::CopyTextureToTexture: { in FreeCommands()
57 case Command::Dispatch: { in FreeCommands()
61 case Command::DispatchIndirect: { in FreeCommands()
65 case Command::Draw: { in FreeCommands()
[all …]
DRenderPassEncoder.cpp54 DrawCmd* draw = mAllocator->Allocate<DrawCmd>(Command::Draw); in Draw()
70 DrawIndexedCmd* draw = mAllocator->Allocate<DrawIndexedCmd>(Command::DrawIndexed); in DrawIndexed()
90 DrawIndirectCmd* cmd = mAllocator->Allocate<DrawIndirectCmd>(Command::DrawIndirect); in DrawIndirect()
109 mAllocator->Allocate<DrawIndexedIndirectCmd>(Command::DrawIndexedIndirect); in DrawIndexedIndirect()
121 mAllocator->Allocate<SetRenderPipelineCmd>(Command::SetRenderPipeline); in SetPipeline()
131 mAllocator->Allocate<SetStencilReferenceCmd>(Command::SetStencilReference); in SetStencilReference()
140 SetBlendColorCmd* cmd = mAllocator->Allocate<SetBlendColorCmd>(Command::SetBlendColor); in SetBlendColor()
173 SetViewportCmd* cmd = mAllocator->Allocate<SetViewportCmd>(Command::SetViewport); in SetViewport()
194 SetScissorRectCmd* cmd = mAllocator->Allocate<SetScissorRectCmd>(Command::SetScissorRect); in SetScissorRect()
207 SetIndexBufferCmd* cmd = mAllocator->Allocate<SetIndexBufferCmd>(Command::SetIndexBuffer); in SetIndexBuffer()
[all …]
DCommandEncoder.cpp674 mAllocator.Allocate<BeginComputePassCmd>(Command::BeginComputePass); in BeginComputePass()
700 BeginRenderPassCmd* cmd = mAllocator.Allocate<BeginRenderPassCmd>(Command::BeginRenderPass); in BeginRenderPass()
756 mAllocator.Allocate<CopyBufferToBufferCmd>(Command::CopyBufferToBuffer); in CopyBufferToBuffer()
780 mAllocator.Allocate<CopyBufferToTextureCmd>(Command::CopyBufferToTexture); in CopyBufferToTexture()
817 mAllocator.Allocate<CopyTextureToBufferCmd>(Command::CopyTextureToBuffer); in CopyTextureToBuffer()
854 mAllocator.Allocate<CopyTextureToTextureCmd>(Command::CopyTextureToTexture); in CopyTextureToTexture()
906 mAllocator.Allocate<EndComputePassCmd>(Command::EndComputePass); in PassEnded()
909 mAllocator.Allocate<EndRenderPassCmd>(Command::EndRenderPass); in PassEnded()
930 Command type; in ValidateFinish()
933 case Command::BeginComputePass: { in ValidateFinish()
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/
DCommandBufferEncodingTests.cpp25 std::vector<std::pair<dawn_native::Command, in ExpectCommands() argument
28 dawn_native::Command commandId; in ExpectCommands()
217 {Command::BeginComputePass, in TEST_F()
218 [&](CommandIterator* commands) { SkipCommand(commands, Command::BeginComputePass); }}, in TEST_F()
220 {Command::SetComputePipeline, ExpectSetPipeline(pipeline0)}, in TEST_F()
221 {Command::SetBindGroup, ExpectSetBindGroup(0, staticBG)}, in TEST_F()
222 {Command::SetBindGroup, ExpectSetBindGroup(1, dynamicBG, {dynamicOffset})}, in TEST_F()
225 {Command::SetComputePipeline, ExpectSetValidationPipeline}, in TEST_F()
226 {Command::SetBindGroup, ExpectSetValidationBindGroup}, in TEST_F()
227 {Command::Dispatch, ExpectSetValidationDispatch}, in TEST_F()
[all …]
/third_party/skia/third_party/externals/tint/src/utils/io/
Dcommand_other.cc20 Command::Command(const std::string&) {} in Command() function in tint::utils::Command
22 Command Command::LookPath(const std::string&) { in LookPath()
23 return Command(""); in LookPath()
26 bool Command::Found() const { in Found()
30 Command::Output Command::Exec(std::initializer_list<std::string>) const { in Exec()
Dcommand_test.cc26 auto cmd = Command::LookPath("cmd"); in TEST()
40 auto cmd = Command::LookPath("echo");
52 auto cmd = Command::LookPath("cat");
65 auto cmd = Command::LookPath("true");
77 auto cmd = Command::LookPath("false");
Dcommand_posix.cc131 Command::Command(const std::string& path) : path_(path) {} in Command() function in tint::utils::Command
133 Command Command::LookPath(const std::string& executable) { in LookPath()
134 return Command(FindExecutable(executable)); in LookPath()
137 bool Command::Found() const { in Found()
141 Command::Output Command::Exec( in Exec()
Dcommand_windows.cc139 Command::Command(const std::string& path) : path_(path) {} in Command() function in tint::utils::Command
141 Command Command::LookPath(const std::string& executable) { in LookPath()
142 return Command(FindExecutable(executable)); in LookPath()
145 bool Command::Found() const { in Found()
149 Command::Output Command::Exec( in Exec()
/third_party/skia/tools/sk_app/
DCommandSet.cpp39 for (Command& cmd : fCommands) { in onKey()
40 if (Command::kKey_CommandType == cmd.fType && key == cmd.fKey) { in onKey()
51 for (Command& cmd : fCommands) { in onChar()
52 if (Command::kChar_CommandType == cmd.fType && c == cmd.fChar) { in onChar()
62 for (const Command& cmd : fCommands) { in onSoftkey()
73 fCommands.push_back(Command(c, group, description, function)); in addCommand()
78 fCommands.push_back(Command(k, keyName, group, description, function)); in addCommand()
87 bool CommandSet::compareCommandKey(const Command& first, const Command& second) { in compareCommandKey()
91 bool CommandSet::compareCommandGroup(const Command& first, const Command& second) { in compareCommandGroup()
127 for (Command& cmd : fCommands) { in drawHelp()
[all …]
DCommandSet.h58 struct Command { struct
64 Command(SkUnichar c, const char* group, const char* description, in Command() function
73 Command(skui::Key k, const char* keyName, const char* group, const char* description, in Command() argument
101 static bool compareCommandKey(const Command& first, const Command& second); argument
102 static bool compareCommandGroup(const Command& first, const Command& second);
111 SkTArray<Command> fCommands;
/third_party/flutter/skia/tools/sk_app/
DCommandSet.cpp40 for (Command& cmd : fCommands) { in onKey()
41 if (Command::kKey_CommandType == cmd.fType && key == cmd.fKey) { in onKey()
52 for (Command& cmd : fCommands) { in onChar()
53 if (Command::kChar_CommandType == cmd.fType && c == cmd.fChar) { in onChar()
63 for (const Command& cmd : fCommands) { in onSoftkey()
74 fCommands.push_back(Command(c, group, description, function)); in addCommand()
79 fCommands.push_back(Command(k, keyName, group, description, function)); in addCommand()
88 bool CommandSet::compareCommandKey(const Command& first, const Command& second) { in compareCommandKey()
92 bool CommandSet::compareCommandGroup(const Command& first, const Command& second) { in compareCommandGroup()
128 for (Command& cmd : fCommands) { in drawHelp()
[all …]
DCommandSet.h58 struct Command { struct
64 Command(SkUnichar c, const char* group, const char* description, in Command() argument
73 Command(Window::Key k, const char* keyName, const char* group, const char* description, in Command() argument
101 static bool compareCommandKey(const Command& first, const Command& second); argument
102 static bool compareCommandGroup(const Command& first, const Command& second);
111 SkTArray<Command> fCommands;
/third_party/python/Lib/idlelib/
Dconfig-keys.def191 copy=<Command-Key-c>
192 cut=<Command-Key-x>
193 paste=<Command-Key-v>
196 close-all-windows=<Command-Key-q>
197 close-window=<Command-Key-w>
207 open-class-browser=<Command-Key-b>
208 open-module=<Command-Key-m>
209 open-new-window=<Command-Key-n>
210 open-window-from-file=<Command-Key-o>
212 print-window=<Command-Key-p>
[all …]
/third_party/icu/icu4c/source/test/perf/utrie2perf/
Dutrie2perf.cpp97 class Command : public UPerfFunction { class
99 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {} in Command() function in Command
102 virtual ~Command() {} in ~Command()
117 class CheckFCD : public Command {
119 CheckFCD(const UTrie2PerfTest &testcase) : Command(testcase) {} in CheckFCD()
137 class CheckFCDAlwaysGet : public Command {
139 CheckFCDAlwaysGet(const UTrie2PerfTest &testcase) : Command(testcase) {}
158 class CheckFCDUTF8 : public Command {
160 CheckFCDUTF8(const UTrie2PerfTest &testcase) : Command(testcase) {}
175 class ToNFC : public Command {
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DCommandBufferVk.cpp520 Command type; in RecordCommands()
523 case Command::CopyBufferToBuffer: { in RecordCommands()
551 case Command::CopyBufferToTexture: { in RecordCommands()
594 case Command::CopyTextureToBuffer: { in RecordCommands()
630 case Command::CopyTextureToTexture: { in RecordCommands()
711 case Command::ClearBuffer: { in RecordCommands()
732 case Command::BeginRenderPass: { in RecordCommands()
746 case Command::BeginComputePass: { in RecordCommands()
757 case Command::ResolveQuerySet: { in RecordCommands()
790 case Command::WriteTimestamp: { in RecordCommands()
[all …]
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DCommandBufferVk.cpp362 Command type; in RecordCommands()
365 case Command::CopyBufferToBuffer: { in RecordCommands()
383 case Command::CopyBufferToTexture: { in RecordCommands()
416 case Command::CopyTextureToBuffer: { in RecordCommands()
441 case Command::CopyTextureToTexture: { in RecordCommands()
478 case Command::BeginRenderPass: { in RecordCommands()
487 case Command::BeginComputePass: { in RecordCommands()
506 Command type; in RecordComputePass()
509 case Command::EndComputePass: { in RecordComputePass()
514 case Command::Dispatch: { in RecordComputePass()
[all …]
/third_party/node/deps/brotli/c/enc/
Dcommand.h107 typedef struct Command { struct
117 } Command; argument
120 static BROTLI_INLINE void InitCommand(Command* self, in InitCommand()
138 static BROTLI_INLINE void InitInsertCommand(Command* self, size_t insertlen) { in InitInsertCommand()
147 const Command* self, const BrotliDistanceParams* dist) { in CommandRestoreDistanceCode()
167 static BROTLI_INLINE uint32_t CommandDistanceContext(const Command* self) { in CommandDistanceContext()
176 static BROTLI_INLINE uint32_t CommandCopyLen(const Command* self) { in CommandCopyLen()
180 static BROTLI_INLINE uint32_t CommandCopyLenCode(const Command* self) { in CommandCopyLenCode()
/third_party/skia/third_party/externals/brotli/c/enc/
Dcommand.h107 typedef struct Command { struct
117 } Command; argument
120 static BROTLI_INLINE void InitCommand(Command* self, in InitCommand()
138 static BROTLI_INLINE void InitInsertCommand(Command* self, size_t insertlen) { in InitInsertCommand()
147 const Command* self, const BrotliDistanceParams* dist) { in CommandRestoreDistanceCode()
167 static BROTLI_INLINE uint32_t CommandDistanceContext(const Command* self) { in CommandDistanceContext()
176 static BROTLI_INLINE uint32_t CommandCopyLen(const Command* self) { in CommandCopyLen()
180 static BROTLI_INLINE uint32_t CommandCopyLenCode(const Command* self) { in CommandCopyLenCode()
/third_party/libphonenumber/tools/java/common/src/com/google/i18n/phonenumbers/
DCommandDispatcher.java34 private final Command[] commands;
36 public CommandDispatcher(String[] args, Command[] commands) { in CommandDispatcher()
51 for (Command command : commands) { in start()
69 for (Command command : commands) { in displayUsage()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DCommandBufferD3D12.cpp329 Command type; in AllocateAndSetDescriptorHeaps()
334 case Command::SetComputePipeline: { in AllocateAndSetDescriptorHeaps()
342 case Command::SetRenderPipeline: { in AllocateAndSetDescriptorHeaps()
350 case Command::SetBindGroup: { in AllocateAndSetDescriptorHeaps()
355 case Command::BeginRenderPass: { in AllocateAndSetDescriptorHeaps()
467 Command type; in RecordCommands()
470 case Command::BeginComputePass: { in RecordCommands()
480 case Command::BeginRenderPass: { in RecordCommands()
492 case Command::CopyBufferToBuffer: { in RecordCommands()
505 case Command::CopyBufferToTexture: { in RecordCommands()
[all …]
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/opengl/
DCommandBufferGL.cpp357 Command type; in Execute()
360 case Command::BeginComputePass: { in Execute()
368 case Command::BeginRenderPass: { in Execute()
376 case Command::CopyBufferToBuffer: { in Execute()
389 case Command::CopyBufferToTexture: { in Execute()
438 case Command::CopyTextureToBuffer: { in Execute()
489 case Command::CopyTextureToTexture: { in Execute()
522 Command type; in ExecuteComputePass()
525 case Command::EndComputePass: { in ExecuteComputePass()
530 case Command::Dispatch: { in ExecuteComputePass()
[all …]
/third_party/icu/icu4c/source/test/perf/unisetperf/
Dunisetperf.cpp136 class Command : public UPerfFunction { class
138 Command(const UnicodeSetPerformanceTest &testcase) : testcase(testcase) {} in Command() function in Command
141 virtual ~Command() {} in ~Command()
158 class Contains : public Command {
160 Contains(const UnicodeSetPerformanceTest &testcase) : Command(testcase) { in Contains()
208 class SpanUTF16 : public Command {
210 SpanUTF16(const UnicodeSetPerformanceTest &testcase) : Command(testcase) { in SpanUTF16()
259 class SpanBackUTF16 : public Command {
261 SpanBackUTF16(const UnicodeSetPerformanceTest &testcase) : Command(testcase) { in SpanBackUTF16()
314 class SpanUTF8 : public Command {
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DCommandBufferD3D12.cpp677 Command type; in RecordCommands()
680 case Command::BeginComputePass: { in RecordCommands()
692 case Command::BeginRenderPass: { in RecordCommands()
708 case Command::CopyBufferToBuffer: { in RecordCommands()
735 case Command::CopyBufferToTexture: { in RecordCommands()
770 case Command::CopyTextureToBuffer: { in RecordCommands()
798 case Command::CopyTextureToTexture: { in RecordCommands()
923 case Command::ClearBuffer: { in RecordCommands()
943 case Command::ResolveQuerySet: { in RecordCommands()
979 case Command::WriteTimestamp: { in RecordCommands()
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DCommandBufferGL.cpp590 Command type; in Execute()
593 case Command::BeginComputePass: { in Execute()
605 case Command::BeginRenderPass: { in Execute()
615 case Command::CopyBufferToBuffer: { in Execute()
637 case Command::CopyBufferToTexture: { in Execute()
676 case Command::CopyTextureToBuffer: { in Execute()
787 case Command::CopyTextureToTexture: { in Execute()
828 case Command::ClearBuffer: { in Execute()
849 case Command::ResolveQuerySet: { in Execute()
855 case Command::WriteTimestamp: { in Execute()
[all …]

12345678910>>...76