Home
last modified time | relevance | path

Searched refs:GetName (Results 1 - 25 of 304) sorted by relevance

12345678910>>...13

/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/sem/
H A Dsem.go213 fmt.Fprint(w, f.Target.GetName())
249 GetName() string
261 // GetName returns the name of the Enum
262 func (e *Enum) GetName() string { return e.Name }
264 // GetName returns the name of the EnumEntry
265 func (e *EnumEntry) GetName() string { return e.Name }
267 // GetName returns the name of the Type
268 func (t *Type) GetName() string { return t.Name }
270 // GetName returns the name of the TypeMatcher
271 func (t *TypeMatcher) GetName() strin
[all...]
/third_party/node/deps/v8/src/profiler/
H A Dprofiler-listener.h77 const char* GetName(Name name) { in GetName() function in v8::internal::ProfilerListener
78 return code_entries_.strings().GetName(name); in GetName()
80 const char* GetName(int args_count) { in GetName() function in v8::internal::ProfilerListener
81 return code_entries_.strings().GetName(args_count); in GetName()
83 const char* GetName(const char* name) { in GetName() function in v8::internal::ProfilerListener
86 const char* GetName(base::Vector<const char> name);
H A Dprofiler-listener.cc50 code_entries_.Create(tag, GetName(name), CodeEntry::kEmptyResourceName, in CodeCreateEvent()
65 code_entries_.Create(tag, GetName(*name), CodeEntry::kEmptyResourceName, in CodeCreateEvent()
81 code_entries_.Create(tag, GetName(shared->DebugNameCStr().get()), in CodeCreateEvent()
82 GetName(InferScriptName(*script_name, *shared)), in CodeCreateEvent()
186 ? GetName(Name::cast(pos_info.script->name())) in CodeCreateEvent()
219 GetName(InferScriptName(*script_name, *shared)), line, column, in CodeCreateEvent()
241 rec->entry = code_entries_.Create(tag, GetName(name), GetName(source_url), 1, in CodeCreateEvent()
256 code_entries_.Create(CodeEventListener::CALLBACK_TAG, GetName(*name)); in CallbackEvent()
350 const char* ProfilerListener::GetName(bas function in v8::internal::ProfilerListener
[all...]
H A Dstrings-storage.h36 const char* GetName(Name name);
38 const char* GetName(int index);
/third_party/vk-gl-cts/external/amber/src/src/
H A Dscript.h73 if (name_to_pipeline_.count(pipeline->GetName()) > 0) in AddPipeline()
77 name_to_pipeline_[pipelines_.back()->GetName()] = pipelines_.back().get(); in AddPipeline()
95 if (name_to_shader_.count(shader->GetName()) > 0) in AddShader()
99 name_to_shader_[shaders_.back()->GetName()] = shaders_.back().get(); in AddShader()
117 if (name_to_buffer_.count(buffer->GetName()) > 0) in AddBuffer()
121 name_to_buffer_[buffers_.back()->GetName()] = buffers_.back().get(); in AddBuffer()
139 if (name_to_sampler_.count(sampler->GetName()) > 0) in AddSampler()
143 name_to_sampler_[samplers_.back()->GetName()] = samplers_.back().get(); in AddSampler()
H A Dscript.cc37 pipeline->GetName() + "-" + shader->GetName(), in GetShaderInfo()
48 shader->GetName(), in GetShaderInfo()
H A Dpipeline.cc138 shader->GetName()); in SetShaderOptimizations()
155 shader->GetName()); in SetShaderCompileOptions()
174 shader->GetName()); in SetShaderRequiredSubgroupSize()
184 shader->GetName()); in SetShaderRequiredSubgroupSize()
217 shader->GetName()); in SetShaderVaryingSubgroupSize()
234 shader->GetName()); in SetShaderRequireFullSubgroups()
255 shader->GetName()); in SetShaderEntryPoint()
270 shader->GetName()); in SetShaderType()
732 return Result("Buffer " + info.buffer->GetName() + in UpdateOpenCLBufferBindings()
740 return Result("Buffer " + info.buffer->GetName() in UpdateOpenCLBufferBindings()
[all...]
/third_party/vixl/src/aarch32/
H A Dinstructions-aarch32.cc208 const char* SpecialRegister::GetName() const { in GetName() function in vixl::aarch32::SpecialRegister
220 const char* MaskedSpecialRegister::GetName() const { in GetName() function in vixl::aarch32::MaskedSpecialRegister
288 const char* BankedRegister::GetName() const { in GetName() function in vixl::aarch32::BankedRegister
361 const char* SpecialFPRegister::GetName() const { in GetName() function in vixl::aarch32::SpecialFPRegister
381 const char* Condition::GetName() const { in GetName() function in vixl::aarch32::Condition
420 const char* Shift::GetName() const { in GetName() function in vixl::aarch32::Shift
438 const char* EncodingSize::GetName() const { in GetName() function in vixl::aarch32::EncodingSize
451 const char* DataType::GetName() const { in GetName() function in vixl::aarch32::DataType
505 const char* MemoryBarrier::GetName() const { in GetName() function in vixl::aarch32::MemoryBarrier
547 const char* InterruptFlags::GetName() cons function in vixl::aarch32::InterruptFlags
569 const char* Endianness::GetName() const { GetName() function in vixl::aarch32::Endianness
[all...]
H A Dinstructions-aarch32.h306 const char* GetName() const;
322 return os << dt.GetName();
783 const char* GetName() const;
790 return os << reg.GetName();
837 const char* GetName() const;
841 return os << reg.GetName();
891 const char* GetName() const;
898 return os << reg.GetName();
932 const char* GetName() const;
939 return os << reg.GetName();
[all...]
/third_party/node/deps/v8/src/runtime/
H A Druntime-forin.cc82 return it.GetName(); in HasEnumerableProperty()
88 if (result.FromJust() != ABSENT) return it.GetName(); in HasEnumerableProperty()
95 if (result.FromJust() != ABSENT) return it.GetName(); in HasEnumerableProperty()
107 return it.GetName(); in HasEnumerableProperty()
110 return it.GetName(); in HasEnumerableProperty()
/third_party/vk-gl-cts/external/amber/src/src/amberscript/
H A Dparser_pipeline_test.cc47 EXPECT_EQ("my_pipeline", pipeline->GetName()); in TEST_F()
54 EXPECT_EQ("my_shader", shaders[0].GetShader()->GetName()); in TEST_F()
60 EXPECT_EQ("my_fragment", shaders[1].GetShader()->GetName()); in TEST_F()
371 EXPECT_EQ("buf1", buffers1[0].buffer->GetName()); in TEST_F()
377 EXPECT_EQ("my_shader", shaders1[0].GetShader()->GetName()); in TEST_F()
378 EXPECT_EQ("my_fragment", shaders1[1].GetShader()->GetName()); in TEST_F()
381 EXPECT_EQ("child_pipeline", pipeline2->GetName()); in TEST_F()
385 EXPECT_EQ("buf2", buffers2[0].buffer->GetName()); in TEST_F()
391 EXPECT_EQ("my_shader", shaders2[0].GetShader()->GetName()); in TEST_F()
392 EXPECT_EQ("other_fragment", shaders2[1].GetShader()->GetName()); in TEST_F()
[all...]
H A Dparser_buffer_test.cc67 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
100 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
133 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
166 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
198 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
231 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
264 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
293 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
322 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F()
353 EXPECT_EQ("my_buffer", buffer->GetName()); in TEST_F()
[all...]
/third_party/node/deps/v8/tools/debug_helper/
H A Ddebug-helper-internal.cc53 const char* TqObject::GetName() const { return "v8::internal::Object"; } in GetName() function in v8::internal::debug_helper_internal::TqObject
60 return GetName() != other->GetName(); in IsSuperclassOf()
/third_party/node/deps/v8/include/v8-include/cppgc/internal/
H A Dgc-info.h74 NameTrait<T>::GetName)) //
82 NameTrait<T>::GetName)) //
90 NameTrait<T>::GetName)) //
98 NameTrait<T>::GetName)) //
/third_party/node/deps/v8/include/cppgc/internal/
H A Dgc-info.h80 NameTrait<T>::GetName)) //
88 NameTrait<T>::GetName)) //
96 NameTrait<T>::GetName)) //
104 NameTrait<T>::GetName)) //
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H A Dnamer_test.cc186 EXPECT_EQ(namer.GetName(id), "abbey road"); in TEST_F()
200 EXPECT_EQ(namer.GetName(9), "rubber soul"); in TEST_F()
201 EXPECT_EQ(namer.GetName(8), "abbey road"); in TEST_F()
213 EXPECT_EQ(namer.GetName(id), "abbey road"); in TEST_F()
222 EXPECT_THAT(namer.GetName(1), Eq("father")); in TEST_F()
231 EXPECT_THAT(namer.GetName(1), Eq("lennon")); in TEST_F()
238 EXPECT_THAT(namer.GetName(9), Eq("m_kenzie")); in TEST_F()
247 EXPECT_THAT(namer.GetName(9), Eq("rice_1")); in TEST_F()
H A Dparser_impl_user_name_test.cc34 EXPECT_THAT(p->namer().GetName(1), Eq("the_void_type")); in TEST_F()
58 EXPECT_THAT(p->namer().GetName(1), Eq("vanilla")); in TEST_F()
59 EXPECT_THAT(p->namer().GetName(2), Eq("vanilla_1")); in TEST_F()
H A Dnamer.h68 const std::string& GetName(uint32_t id) const { in GetName() function in tint::reader::spirv::Namer
80 return GetName(id); in Name()
/third_party/node/src/
H A Dblob_serializer_deserializer-inl.h68 std::string BlobSerializerDeserializer::GetName() const { in GetName() function in node::BlobSerializerDeserializer
107 std::string name = GetName<T>(); in ReadVector()
125 std::string name = GetName<T>(); in ReadVector()
159 std::string name = GetName<T>(); in ReadArithmetic()
234 std::string name = GetName<T>(); in WriteVector()
254 std::string name = GetName<T>(); in WriteVector()
294 std::string name = GetName<T>(); in WriteArithmetic()
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/gen/
H A Dpermutate.go218 fmt.Fprintf(sb, " %v: %v\n", ct.GetName(), ty)
222 fmt.Fprintf(sb, " %v: %v\n", cn.GetName(), v)
249 return nil, fmt.Errorf("'%v' was not found in closedTypes", target.GetName())
292 return nil, fmt.Errorf("'%v' was not found in closedTypes or closedNumbers", target.GetName())
318 return nil, fmt.Errorf("while processing fully qualified name '%v': %w", in.Target.GetName(), err)
325 switch fqn.Target.GetName() {
328 elTyName := elTy.Target.GetName()
/third_party/node/deps/v8/src/objects/
H A Djs-function.h44 static MaybeHandle<String> GetName(Isolate* isolate,
65 static MaybeHandle<String> GetName(Isolate* isolate,
108 static Handle<String> GetName(Isolate* isolate, Handle<JSFunction> function);
321 static Handle<String> GetName(Handle<JSFunction> function);
/third_party/skia/third_party/externals/spirv-tools/source/reduce/
H A Dreduction_pass.cpp77 std::string ReductionPass::GetName() const { return finder_->GetName(); } in GetName() function in spvtools::reduce::ReductionPass
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/
H A Dreduction_pass.cpp77 std::string ReductionPass::GetName() const { return finder_->GetName(); } in GetName() function in spvtools::reduce::ReductionPass
/third_party/spirv-tools/source/reduce/
H A Dreduction_pass.cpp77 std::string ReductionPass::GetName() const { return finder_->GetName(); } in GetName() function in spvtools::reduce::ReductionPass
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DName.cpp16 static ImmutableString GetName(T const &object) in GetName() function
25 Name::Name(const TField &field) : Name(GetName(field), field.symbolType()) {} in Name()
27 Name::Name(const TSymbol &symbol) : Name(GetName(symbol), symbol.symbolType()) {} in Name()

Completed in 17 milliseconds

12345678910>>...13