/third_party/node/deps/v8/src/parsing/ |
H A D | rewriter.cc | 75 explicit BreakableScope(Processor* processor, bool breakable = true) in BreakableScope() argument 76 : processor_(processor), previous_(processor->breakable_) { in BreakableScope() 77 processor->breakable_ = processor->breakable_ || breakable; in BreakableScope() 416 Processor processor(info->stack_limit(), scope->AsDeclarationScope(), in RewriteBody() 418 processor.Process(body); in RewriteBody() 420 DCHECK_IMPLIES(scope->is_module_scope(), processor.result_assigned()); in RewriteBody() 421 if (processor.result_assigned()) { in RewriteBody() 424 processor in RewriteBody() [all...] |
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_sanity.c | 413 uint processor = ctx->iter.processor.Processor; in iter_declaration() local 418 processor == PIPE_SHADER_GEOMETRY || in iter_declaration() 419 processor == PIPE_SHADER_TESS_CTRL || in iter_declaration() 420 processor == PIPE_SHADER_TESS_EVAL)) { in iter_declaration() 428 processor == PIPE_SHADER_TESS_CTRL) { 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 in prolog() [all...] |
H A D | tgsi_transform.c | 164 struct tgsi_processor *processor; in tgsi_transform_shader() local 192 ctx->processor = parse.FullHeader.Processor.Processor; in tgsi_transform_shader() 200 processor = (struct tgsi_processor *) (ctx->tokens_out + 1); in tgsi_transform_shader() 201 *processor = tgsi_build_processor( ctx->processor, ctx->header ); in tgsi_transform_shader()
|
H A D | tgsi_from_mesa.h | 84 tgsi_processor_to_shader_stage(unsigned processor) in tgsi_processor_to_shader_stage() argument 86 switch (processor) { in tgsi_processor_to_shader_stage() 94 unreachable("invalid TGSI processor"); in tgsi_processor_to_shader_stage()
|
H A D | tgsi_text.c | 345 unsigned processor : 4; member 376 uint processor; in parse_header() local 379 processor = PIPE_SHADER_FRAGMENT; in parse_header() 381 processor = PIPE_SHADER_VERTEX; in parse_header() 383 processor = PIPE_SHADER_GEOMETRY; in parse_header() 385 processor = PIPE_SHADER_TESS_CTRL; in parse_header() 387 processor = PIPE_SHADER_TESS_EVAL; in parse_header() 389 processor = PIPE_SHADER_COMPUTE; in parse_header() 402 *(struct tgsi_processor *) ctx->tokens_cur++ = tgsi_build_processor( processor, ctx->header ); in parse_header() 403 ctx->processor in parse_header() [all...] |
/third_party/skia/third_party/externals/expat/expat/xmlwf/ |
H A D | unixfilemap.c | 61 void (*processor)(const void *, size_t, const tchar *, void *arg), in filemap() 92 processor(&c, 0, name, arg); in filemap() 103 processor(p, nbytes, name, arg); in filemap()
|
H A D | readfilemap.c | 86 void (*processor)(const void *, size_t, const tchar *, void *arg), in filemap() 118 processor(&c, 0, name, arg); in filemap() 141 processor(p, nbytes, name, arg); in filemap()
|
H A D | win32filemap.c | 57 void (*processor)(const void *, size_t, const TCHAR *, void *arg), in filemap() 84 processor(&c, 0, name, arg); in filemap() 101 processor(p, size, name, arg); in filemap()
|
H A D | filemap.h | 49 void (*processor)(const void *, size_t, const wchar_t *, void *arg), 53 void (*processor)(const void *, size_t, const char *, void *arg),
|
/third_party/node/deps/v8/src/bigint/ |
H A D | tostring.cc | 122 int chars_available, ProcessorImpl* processor) in ToStringFormatter() 129 processor_(processor) { in ToStringFormatter() 324 ProcessorImpl* processor); 362 ProcessorImpl* processor) { 377 processor->Multiply(level->divisor_, prev->divisor_, prev->divisor_); 378 if (processor->should_terminate()) { 386 prev->ComputeInverse(processor); 396 void RecursionLevel::ComputeInverse(ProcessorImpl* processor, 409 processor->Invert(inverse_initializer, input, scratch); 121 ToStringFormatter(Digits X, int radix, bool sign, char* out, int chars_available, ProcessorImpl* processor) ToStringFormatter() argument
|
/third_party/python/Lib/test/ |
H A D | test_platform.py | 109 res = platform.processor() 228 self.assertEqual(res[5], res.processor) 229 self.assertEqual(res[-1], res.processor) 236 res.processor, 250 # processor cannot be replaced 251 self.assertEqual(new.processor, res.processor) 273 self.assertIn('processor', platform.uname()._fields) 278 self.assertIn('processor', res) 284 On some systems, the processor mus [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
H A D | CldrDataProcessor.java | 27 * An immutable processor which can be configured to process CLDR data according to a series of 30 * <p>In typical use a processor would be statically created to bind paths and handler functions 34 * <p>A processor is built by adding a mixture of "actions" to a builder. An action either defines 36 * to start a new sub-processor at a specific point in the data hierarchy (see {@link 39 * @param <T> the main "state" type used by the processor for the top-level processing. 42 /** Returns a processor builder which operates on a "state" of type {@code <T>}. */ 50 * @param <T> the "state" type used by the processor. 68 * processor 90 * processor 113 * processor 431 CldrDataProcessor<T> processor; global() field in CldrDataProcessor.DispatchingVisitor 435 DispatchingVisitor(CldrDataProcessor<T> processor, T state, Consumer<T> doneFn) DispatchingVisitor() argument [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
H A D | CollationMapper.java | 37 CldrDataProcessor.Builder<CollationMapper> processor = CldrDataProcessor.builder(); 38 SubProcessor<CollationMapper> collations = processor.addSubprocessor("//ldml/collations"); 41 // This could be a separate processor, since the specials data only contains these paths, 43 processor.addValueAction("//ldml/special/*", CollationMapper::maybeAddSpecial); 44 CLDR_PROCESSOR = processor.build();
|
H A D | BreakIteratorMapper.java | 34 CldrDataProcessor.Builder<BreakIteratorMapper> processor = CldrDataProcessor.builder(); 38 processor.addValueAction( 42 processor.addSubprocessor("//ldml/special/icu:breakIteratorData"); 50 CLDR_PROCESSOR = processor.build();
|
H A D | RbnfMapper.java | 40 CldrDataProcessor.Builder<RbnfMapper> processor = CldrDataProcessor.builder(); 41 processor 45 RBNF_PROCESSOR = processor.build();
|
H A D | PluralRangesMapper.java | 33 CldrDataProcessor.Builder<PluralRangesMapper> processor = CldrDataProcessor.builder(); 34 processor 38 CLDR_PROCESSOR = processor.build();
|
H A D | DayPeriodsMapper.java | 32 CldrDataProcessor.Builder<DayPeriodsMapper> processor = CldrDataProcessor.builder(); 33 processor.addAction("//supplementalData/dayPeriodRuleSet", (m, p) -> m.new Ruleset(p)) 36 CLDR_PROCESSOR = processor.build();
|
H A D | PluralsMapper.java | 44 CldrDataProcessor.Builder<PluralsMapper> processor = CldrDataProcessor.builder(); 45 processor 49 CLDR_PROCESSOR = processor.build();
|
/third_party/python/Lib/ |
H A D | platform.py | 71 # instead; extended the win32_ver() to also return processor 785 simple namedtuple except that 'processor' is 790 _fields = ('system', 'node', 'release', 'version', 'machine', 'processor') 793 def processor(self): member in uname_result 799 (self.processor,) 828 of strings (system, node, release, version, machine, processor) 832 possible processor information as an additional tuple entry. 960 def processor(): function 962 """ Returns the (true) processor name, e.g. 'amdk6' 970 return uname().processor [all...] |
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | Utf8Test.java | 202 private static byte[] encodeToByteArray(String message, int length, Utf8.Processor processor) { in encodeToByteArray() argument 204 processor.encodeUtf8(message, output, 0, output.length); in encodeToByteArray() 209 String message, int length, boolean direct, Utf8.Processor processor) { in encodeToByteBuffer() 212 processor.encodeUtf8(message, buffer); in encodeToByteBuffer() 208 encodeToByteBuffer( String message, int length, boolean direct, Utf8.Processor processor) encodeToByteBuffer() argument
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
H A D | index.js | 5 var _processor = _interopRequireDefault(require("./processor")); 10 var parser = function parser(processor) { 11 return new _processor["default"](processor);
|
/third_party/skia/src/sksl/dsl/priv/ |
H A D | DSLFPs.cpp | 20 void StartFragmentProcessor(GrFragmentProcessor::ProgramImpl* processor, in StartFragmentProcessor() argument 22 ThreadContext::StartFragmentProcessor(processor, emitArgs); in StartFragmentProcessor()
|
/third_party/node/deps/v8/src/base/ |
H A D | cpu.cc | 649 char* processor = cpu_info.ExtractField("Processor"); in CPU() local 650 if (HasListItem(processor, "(v6l)")) { in CPU() 653 delete[] processor; in CPU() 658 char* processor = cpu_info.ExtractField("model name"); in CPU() local 659 if (HasListItem(processor, "(v6l)")) { in CPU() 662 delete[] processor; in CPU() 797 // Read processor info from /proc/self/auxv. in CPU()
|
/third_party/node/deps/v8/src/execution/arm/ |
H A D | simulator-arm.h | 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* processor);
|
/third_party/node/deps/v8/src/profiler/ |
H A D | cpu-profiler.h | 163 // This class implements both the profile events processor thread and 261 // Redirects events to the profiler events processor when present. CodeEntry 283 ProfilerEventsProcessor* processor() { return processor_; } in processor() function in v8::internal::ProfilerCodeObserver 285 // Redirects code events to be enqueued on the given events processor. 286 void set_processor(ProfilerEventsProcessor* processor) { in set_processor() argument 287 processor_ = processor; in set_processor() 290 // Stops redirection of code events onto an events processor. 371 ProfilerEventsProcessor* processor() const { return processor_.get(); } in processor() function in v8::internal::CpuProfiler
|