/third_party/node/deps/v8/src/parsing/ |
H A D | rewriter.cc | 18 class Processor final : public AstVisitor<Processor> { 20 Processor(uintptr_t stack_limit, DeclarationScope* closure_scope, in Processor() function in v8::internal::final 34 Processor(Parser* parser, DeclarationScope* closure_scope, Variable* result, in Processor() function in v8::internal::final 75 explicit BreakableScope(Processor* processor, bool breakable = true) in BreakableScope() 83 Processor* processor_; 116 Statement* Processor::AssignUndefinedBefore(Statement* s) { in AssignUndefinedBefore() 126 void Processor::Process(ZonePtrList<Statement>* statements) { in Process() 140 void Processor::VisitBlock(Block* node) { in VisitBlock() 157 void Processor [all...] |
/third_party/node/deps/v8/src/bigint/ |
H A D | bigint-internal.cc | 29 Processor* Processor::New(Platform* platform) { in New() 31 return static_cast<Processor*>(impl); in New() 34 void Processor::Destroy() { delete static_cast<ProcessorImpl*>(this); } in Destroy() 116 Status Processor::Multiply(RWDigits Z, Digits X, Digits Y) { in Multiply() 122 Status Processor::Divide(RWDigits Q, Digits A, Digits B) { in Divide() 128 Status Processor::Modulo(RWDigits R, Digits A, Digits B) { in Modulo()
|
H A D | bigint.h | 207 // operations are methods on a {Processor} object, which provides 277 class Processor { class 280 static Processor* New(Platform* platform); 282 // Use this for any std::unique_ptr holding an instance of {Processor}. 285 void operator()(Processor* proc) { proc->Destroy(); } in operator ()() 307 ~Processor() = default;
|
H A D | bigint-internal.h | 27 class ProcessorImpl : public Processor {
|
H A D | fromstring.cc | 324 Status Processor::FromString(RWDigits Z, FromStringAccumulator* accumulator) { in FromString()
|
/third_party/node/deps/v8/src/execution/arm/ |
H A D | simulator-arm.h | 540 class Processor { class in v8::internal::Simulator::GlobalMonitor 542 Processor(); 555 Processor* next_; 556 Processor* prev_; 568 void NotifyLoadExcl_Locked(int32_t addr, Processor* processor); 569 void NotifyStore_Locked(int32_t addr, Processor* processor); 570 bool NotifyStoreExcl_Locked(int32_t addr, Processor* processor); 573 void RemoveProcessor(Processor* processor); 582 bool IsProcessorInLinkedList_Locked(Processor* processor) const; 583 void PrependProcessor_Locked(Processor* processo [all...] |
H A D | simulator-arm.cc | 6392 Simulator::GlobalMonitor::Processor::Processor() in Processor() function in v8::internal::Simulator::GlobalMonitor::Processor 6399 void Simulator::GlobalMonitor::Processor::Clear_Locked() { in Clear_Locked() 6404 void Simulator::GlobalMonitor::Processor::NotifyLoadExcl_Locked(int32_t addr) { in NotifyLoadExcl_Locked() 6409 void Simulator::GlobalMonitor::Processor::NotifyStore_Locked( in NotifyStore_Locked() 6428 bool Simulator::GlobalMonitor::Processor::NotifyStoreExcl_Locked( in NotifyStoreExcl_Locked() 6463 Processor* processor) { in NotifyLoadExcl_Locked() 6469 Processor* processor) { in NotifyStore_Locked() 6471 for (Processor* iter = head_; iter; iter = iter->next_) { in NotifyStore_Locked() 6478 Processor* processo in NotifyStoreExcl_Locked() [all...] |
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
H A D | processor.js | 7 var Processor = /*#__PURE__*/function () { function 8 function Processor(func, options) { 13 var _proto = Processor.prototype; 167 return Processor; 169 exports["default"] = Processor;
|
/third_party/node/deps/v8/src/execution/ |
H A D | local-isolate.h | 21 class Processor; 118 bigint::Processor* bigint_processor() { in bigint_processor() 162 bigint::Processor* bigint_processor_{nullptr};
|
H A D | local-isolate.cc | 68 bigint_processor_ = bigint::Processor::New(new bigint::Platform()); in InitializeBigIntProcessor()
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | Utf8Test.java | 43 private static final Utf8.Processor safeProcessor = new Utf8.SafeProcessor(); 44 private static final Utf8.Processor unsafeProcessor = new Utf8.UnsafeProcessor(); 202 private static byte[] encodeToByteArray(String message, int length, Utf8.Processor processor) { in encodeToByteArray() 209 String message, int length, boolean direct, Utf8.Processor processor) { in encodeToByteBuffer()
|
H A D | DecodeUtf8Test.java | 3 import com.google.protobuf.Utf8.Processor; 15 private static final Processor SAFE_PROCESSOR = new SafeProcessor(); 16 private static final Processor UNSAFE_PROCESSOR = new UnsafeProcessor();
|
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-graph-processor.h | 158 template <typename Processor, typename... Processors> 159 class NodeMultiProcessor<Processor, Processors...> 184 Processor processor_;
|
/third_party/skia/src/gpu/ops/ |
H A D | FillRRectOp.cpp | 89 class Processor; 334 class FillRRectOpImpl::Processor final : public GrGeometryProcessor { 338 return new (ptr) Processor(aaType, flags); in Make() 342 const char* name() const override { return "FillRRectOp::Processor"; } 359 Processor(GrAAType aaType, ProcessorFlags flags) in Processor() function 569 class FillRRectOpImpl::Processor::Impl : public ProgramImpl { 580 const auto& proc = args.fGeomProc.cast<Processor>(); 763 std::unique_ptr<GrGeometryProcessor::ProgramImpl> FillRRectOpImpl::Processor::makeProgramImpl( in makeProgramImpl() 779 GrGeometryProcessor* gp = Processor::Make(arena, fHelper.aaType(), fProcessorFlags); in onCreateProgramInfo()
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_sanity.c | 413 uint processor = ctx->iter.processor.Processor; in iter_declaration() 489 if (iter->processor.Processor == PIPE_SHADER_GEOMETRY && in iter_property() 493 if (iter->processor.Processor == PIPE_SHADER_TESS_CTRL && in iter_property() 503 if (iter->processor.Processor == PIPE_SHADER_TESS_CTRL || in prolog() 504 iter->processor.Processor == PIPE_SHADER_TESS_EVAL) in prolog()
|
H A D | tgsi_parse.c | 40 ctx->FullHeader.Processor = *(struct tgsi_processor *) &tokens[1]; in tgsi_parse_init() 335 return parse.FullHeader.Processor.Processor; in tgsi_get_processor_type()
|
H A D | tgsi_dump.c | 316 (iter->processor.Processor == PIPE_SHADER_GEOMETRY || in iter_declaration() 318 (iter->processor.Processor == PIPE_SHADER_TESS_CTRL || in iter_declaration() 319 iter->processor.Processor == PIPE_SHADER_TESS_EVAL)))) { in iter_declaration() 326 iter->processor.Processor == PIPE_SHADER_TESS_CTRL) { in iter_declaration() 428 if (iter->processor.Processor == PIPE_SHADER_FRAGMENT && in iter_declaration() 707 ENM( iter->processor.Processor, tgsi_processor_type_names ); in prolog()
|
H A D | tgsi_transform.c | 192 ctx->processor = parse.FullHeader.Processor.Processor; in tgsi_transform_shader()
|
H A D | tgsi_iterate.c | 41 ctx->processor = parse.FullHeader.Processor; in tgsi_iterate_shader()
|
H A D | tgsi_parse.h | 41 struct tgsi_processor Processor; member
|
/third_party/node/deps/v8/src/execution/arm64/ |
H A D | simulator-arm64.h | 2273 // Processor state --------------------------------------- 2286 // Processor state 2396 class Processor { class in v8::internal::Simulator::GlobalMonitor 2398 Processor(); 2411 Processor* next_; 2412 Processor* prev_; 2424 void NotifyLoadExcl_Locked(uintptr_t addr, Processor* processor); 2425 void NotifyStore_Locked(Processor* processor); 2426 bool NotifyStoreExcl_Locked(uintptr_t addr, Processor* processor); 2429 void RemoveProcessor(Processor* processo [all...] |
/third_party/skia/third_party/externals/expat/expat/lib/ |
H A D | xmlparse.c | 436 typedef enum XML_Error PTRCALL Processor(XML_Parser parser, const char *start, typedef 439 static Processor prologProcessor; 440 static Processor prologInitProcessor; 441 static Processor contentProcessor; 442 static Processor cdataSectionProcessor; 444 static Processor ignoreSectionProcessor; 445 static Processor externalParEntProcessor; 446 static Processor externalParEntInitProcessor; 447 static Processor entityValueProcessor; 448 static Processor entityValueInitProcesso [all...] |
/third_party/python/Modules/expat/ |
H A D | xmlparse.c | 429 typedef enum XML_Error PTRCALL Processor(XML_Parser parser, const char *start, typedef 432 static Processor prologProcessor; 433 static Processor prologInitProcessor; 434 static Processor contentProcessor; 435 static Processor cdataSectionProcessor; 437 static Processor ignoreSectionProcessor; 438 static Processor externalParEntProcessor; 439 static Processor externalParEntInitProcessor; 440 static Processor entityValueProcessor; 441 static Processor entityValueInitProcesso [all...] |
/third_party/mesa3d/src/gallium/include/pipe/ |
H A D | p_shader_tokens.h | 45 unsigned Processor : 4; /* PIPE_SHADER_ */ member
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | Utf8.java | 83 private static final Processor processor = 380 abstract static class Processor { class in Utf8 859 /** {@link Processor} implementation that does not use any {@code sun.misc.Unsafe} methods. */ 860 static final class SafeProcessor extends Processor { 1168 /** {@link Processor} that uses {@code sun.misc.Unsafe} where possible to improve performance. */ 1169 static final class UnsafeProcessor extends Processor {
|