Home
last modified time | relevance | path

Searched refs:GetClassName (Results 1 – 25 of 3135) sorted by relevance

12345678910>>...126

/dports/math/vtk9/VTK-9.1.0/Common/Core/Testing/Cxx/
H A DTestNumberOfGenerationsFromBase.cxx24 if (floatArray->GetNumberOfGenerationsFromBase(vtkNew<vtkObject>()->GetClassName()) != 5) in TestNumberOfGenerationsFromBase()
28 << floatArray->GetClassName() << " and " << vtkNew<vtkObject>()->GetClassName() in TestNumberOfGenerationsFromBase()
30 << floatArray->GetNumberOfGenerationsFromBase(vtkNew<vtkObject>()->GetClassName()) in TestNumberOfGenerationsFromBase()
39 << floatArray->GetClassName() << " and " in TestNumberOfGenerationsFromBase()
46 if (floatArray->GetNumberOfGenerationsFromBase(floatArray->GetClassName()) != 0) in TestNumberOfGenerationsFromBase()
50 << floatArray->GetClassName() << " and " << floatArray->GetClassName() << " (received " in TestNumberOfGenerationsFromBase()
51 << floatArray->GetNumberOfGenerationsFromBase(vtkNew<vtkObject>()->GetClassName()) in TestNumberOfGenerationsFromBase()
57 if (floatArray->GetNumberOfGenerationsFromBase(intArray->GetClassName()) >= 0) in TestNumberOfGenerationsFromBase()
61 << floatArray->GetClassName() << " and " << intArray->GetClassName() << " (received " in TestNumberOfGenerationsFromBase()
62 << floatArray->GetNumberOfGenerationsFromBase(intArray->GetClassName()) in TestNumberOfGenerationsFromBase()
/dports/math/vtk9/VTK-9.1.0/Rendering/SceneGraph/Testing/Cxx/
H A DUnitTests.cxx51 resultS += this->GetClassName(); in Render()
71 resultS += this->GetClassName(); in Render()
91 resultS += this->GetClassName(); in Render()
111 resultS += this->GetClassName(); in Render()
133 resultS += this->GetClassName(); in Render()
153 resultS += this->GetClassName(); in Render()
232 vnf->RegisterOverride(rwin->GetClassName(), win_maker); in UnitTests()
244 vnf->RegisterOverride(ren->GetClassName(), ren_maker); in UnitTests()
248 vnf->RegisterOverride(light->GetClassName(), light_maker); in UnitTests()
255 vnf->RegisterOverride(cam->GetClassName(), cam_maker); in UnitTests()
[all …]
/dports/math/vtk8/VTK-8.2.0/Rendering/SceneGraph/Testing/Cxx/
H A DUnitTests.cxx47 cerr << "Render " << this << " " << this->GetClassName() << endl; in Render()
49 resultS += this->GetClassName(); in Render()
68 resultS += this->GetClassName(); in Render()
87 resultS += this->GetClassName(); in Render()
106 resultS += this->GetClassName(); in Render()
125 resultS += this->GetClassName(); in Render()
203 vnf->RegisterOverride(rwin->GetClassName(), win_maker); in UnitTests()
215 vnf->RegisterOverride(ren->GetClassName(), ren_maker); in UnitTests()
219 vnf->RegisterOverride(light->GetClassName(), light_maker); in UnitTests()
224 vnf->RegisterOverride(cam->GetClassName(), cam_maker); in UnitTests()
[all …]
/dports/graphics/iccxml/IccXML-0.9.8/IccLibXML/
H A DIccTagXml.h92 virtual const char *GetClassName() const { return "CIccTagXmlUnknown"; } in GetClassName() function
109 virtual const char *GetClassName() const { return "CIccTagXmlText"; } in GetClassName() function
139 virtual const char *GetClassName() const { return "CIccTagXmlSignature"; } in GetClassName() function
165 virtual const char *GetClassName() const { return "CIccTagXmlXYZ"; } in GetClassName() function
192 virtual const char *GetClassName() const;
210 virtual const char *GetClassName() const;
254 virtual const char *GetClassName() const { return "CIccTagXmlData"; } in GetClassName() function
356 virtual const char *GetClassName() const { return "CIccTagXmlCurve"; } in GetClassName() function
412 virtual const char *GetClassName() const { return "CIccTagXmlLut8"; } in GetClassName() function
425 virtual const char *GetClassName() const { return "CIccTagXmlLut16"; } in GetClassName() function
[all …]
/dports/devel/protobuf/protobuf-3.17.3/src/google/protobuf/compiler/java/
H A Djava_name_resolver.h84 std::string GetClassName(const Descriptor* descriptor, bool immutable);
85 std::string GetClassName(const Descriptor* descriptor, bool immutable,
87 std::string GetClassName(const EnumDescriptor* descriptor, bool immutable);
88 std::string GetClassName(const EnumDescriptor* descriptor, bool immutable,
90 std::string GetClassName(const ServiceDescriptor* descriptor, bool immutable);
91 std::string GetClassName(const ServiceDescriptor* descriptor, bool immutable,
93 std::string GetClassName(const FileDescriptor* descriptor, bool immutable);
94 std::string GetClassName(const FileDescriptor* descriptor, bool immutable,
99 return GetClassName(descriptor, true); in GetImmutableClassName()
103 return GetClassName(descriptor, false); in GetMutableClassName()
H A Djava_name_resolver.cc221 std::string ClassNameResolver::GetClassName(const FileDescriptor* descriptor, in GetClassName() function in google::protobuf::compiler::java::ClassNameResolver
223 return GetClassName(descriptor, immutable, false); in GetClassName()
226 std::string ClassNameResolver::GetClassName(const FileDescriptor* descriptor, in GetClassName() function in google::protobuf::compiler::java::ClassNameResolver
250 result = GetClassName(file, immutable, kotlin); in GetClassFullName()
260 std::string ClassNameResolver::GetClassName(const Descriptor* descriptor, in GetClassName() function in google::protobuf::compiler::java::ClassNameResolver
262 return GetClassName(descriptor, immutable, false); in GetClassName()
265 std::string ClassNameResolver::GetClassName(const Descriptor* descriptor, in GetClassName() function in google::protobuf::compiler::java::ClassNameResolver
272 std::string ClassNameResolver::GetClassName(const EnumDescriptor* descriptor, in GetClassName() function in google::protobuf::compiler::java::ClassNameResolver
274 return GetClassName(descriptor, immutable, false); in GetClassName()
286 return GetClassName(descriptor, immutable, false); in GetClassName()
[all …]
/dports/devel/py-grpcio-tools/grpcio-tools-1.43.0/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_name_resolver.h84 std::string GetClassName(const Descriptor* descriptor, bool immutable);
85 std::string GetClassName(const Descriptor* descriptor, bool immutable,
87 std::string GetClassName(const EnumDescriptor* descriptor, bool immutable);
88 std::string GetClassName(const EnumDescriptor* descriptor, bool immutable,
90 std::string GetClassName(const ServiceDescriptor* descriptor, bool immutable);
91 std::string GetClassName(const ServiceDescriptor* descriptor, bool immutable,
93 std::string GetClassName(const FileDescriptor* descriptor, bool immutable);
94 std::string GetClassName(const FileDescriptor* descriptor, bool immutable,
99 return GetClassName(descriptor, true); in GetImmutableClassName()
103 return GetClassName(descriptor, false); in GetMutableClassName()
H A Djava_name_resolver.cc221 std::string ClassNameResolver::GetClassName(const FileDescriptor* descriptor, in GetClassName() function in google::protobuf::compiler::java::ClassNameResolver
223 return GetClassName(descriptor, immutable, false); in GetClassName()
226 std::string ClassNameResolver::GetClassName(const FileDescriptor* descriptor, in GetClassName() function in google::protobuf::compiler::java::ClassNameResolver
250 result = GetClassName(file, immutable, kotlin); in GetClassFullName()
260 std::string ClassNameResolver::GetClassName(const Descriptor* descriptor, in GetClassName() function in google::protobuf::compiler::java::ClassNameResolver
262 return GetClassName(descriptor, immutable, false); in GetClassName()
265 std::string ClassNameResolver::GetClassName(const Descriptor* descriptor, in GetClassName() function in google::protobuf::compiler::java::ClassNameResolver
272 std::string ClassNameResolver::GetClassName(const EnumDescriptor* descriptor, in GetClassName() function in google::protobuf::compiler::java::ClassNameResolver
274 return GetClassName(descriptor, immutable, false); in GetClassName()
286 return GetClassName(descriptor, immutable, false); in GetClassName()
[all …]
/dports/math/vtk9/VTK-9.1.0/Common/DataModel/Testing/Python/
H A DTestPartitionedData.py25 if opt and opt.IsA(inp.GetClassName()):
34 print("SimpleFilter iter %d: Input: %s"%(self.Counter, inp.GetClassName()))
40 a.GetInformation().Set(dm.vtkDataObject.DATA_TYPE_NAME(), inp.GetClassName());
62 if opt and opt.IsA(inp.GetClassName()):
77 a.GetInformation().Set(dm.vtkDataObject.DATA_TYPE_NAME(), inp.GetClassName());
99 if opt and opt.IsA(inp.GetClassName()):
136 if opt and opt.IsA(inp.GetClassName()):
194 self.assertEqual(pds.GetClassName(), "vtkPartitionedDataSet")
212 self.assertEqual(pds.GetClassName(), "vtkPartitionedDataSet")
225 self.assertEqual(pdsc.GetClassName(), "vtkPartitionedDataSetCollection")
[all …]
/dports/graphics/bonzomatic/Bonzomatic-2021-03-07/external/scintilla/test/unit/
H A DtestCharClassify.cxx41 static const char* GetClassName(CharClassify::cc charClass) { in GetClassName() function in CharClassifyTest
60 << " should be class " << GetClassName(charClass[i])
61 << ", but got " << GetClassName(pcc->GetClass(i)) << std::endl;
78 << " should be class " << GetClassName(charClass[i])
79 << ", but got " << GetClassName(pcc->GetClass(i)) << std::endl;
104 << " should be class " << GetClassName(thisClass)
107 << GetClassName(pcc->GetClass(i)) << std::endl;
113 << " should not be class " << GetClassName(thisClass)
116 << GetClassName(pcc->GetClass(i)) << std::endl;
/dports/x11-toolkits/scintilla/scintilla/test/unit/
H A DtestCharClassify.cxx45 static const char* GetClassName(CharClassify::cc charClass) { in GetClassName() function in CharClassifyTest
64 << " should be class " << GetClassName(charClass[i])
65 << ", but got " << GetClassName(pcc->GetClass(i)) << std::endl;
82 << " should be class " << GetClassName(charClass[i])
83 << ", but got " << GetClassName(pcc->GetClass(i)) << std::endl;
106 << " should be class " << GetClassName(thisClass)
109 << GetClassName(pcc->GetClass(i)) << std::endl;
115 << " should not be class " << GetClassName(thisClass)
118 << GetClassName(pcc->GetClass(i)) << std::endl;
/dports/editors/textadept/scintilla/test/unit/
H A DtestCharClassify.cxx45 static const char* GetClassName(CharClassify::cc charClass) { in GetClassName() function in CharClassifyTest
64 << " should be class " << GetClassName(charClass[i])
65 << ", but got " << GetClassName(pcc->GetClass(i)) << std::endl;
82 << " should be class " << GetClassName(charClass[i])
83 << ", but got " << GetClassName(pcc->GetClass(i)) << std::endl;
106 << " should be class " << GetClassName(thisClass)
109 << GetClassName(pcc->GetClass(i)) << std::endl;
115 << " should not be class " << GetClassName(thisClass)
118 << GetClassName(pcc->GetClass(i)) << std::endl;
/dports/editors/scite/scintilla/test/unit/
H A DtestCharClassify.cxx45 static const char* GetClassName(CharClassify::cc charClass) { in GetClassName() function in CharClassifyTest
64 << " should be class " << GetClassName(charClass[i])
65 << ", but got " << GetClassName(pcc->GetClass(i)) << std::endl;
82 << " should be class " << GetClassName(charClass[i])
83 << ", but got " << GetClassName(pcc->GetClass(i)) << std::endl;
106 << " should be class " << GetClassName(thisClass)
109 << GetClassName(pcc->GetClass(i)) << std::endl;
115 << " should not be class " << GetClassName(thisClass)
118 << GetClassName(pcc->GetClass(i)) << std::endl;
/dports/games/palomino/palomino/tests/lua/
H A Dtest_DerivedClass.lua20 function Object:GetClassName() function
38 function Dyna:GetClassName() function
44 print( "object:GetClassName() = '" .. object:GetClassName() .. "'" )
45 assert( object:GetClassName() == "Object" )
50 print( "dyna:GetClassName() = '" .. dyna:GetClassName() .. "'" )
51 assert( dyna:GetClassName() == "Dyna" )
/dports/multimedia/bcmatroska2/bcmatroska2-0.23/spectool/
H A Ddata2lib.c56 static const tchar_t *GetClassName(const SpecElement *elt) in GetClassName() function
185 TextPrintf(CFile, T("\nDEFINE_START_SEMANTIC(Kax%s)\n"), GetClassName(elt)); in OutputElementDefinition()
226 TextPrintf(CFile, T("DEFINE_END_SEMANTIC(Kax%s)\n\n"), GetClassName(elt)); in OutputElementDefinition()
240 …ax%s, \"%s\");\n"), GetClassName(elt), elt->Id, elt->Id<0x100 ? 1 : (elt->Id<0x10000 ? 2 : (elt->I… in OutputElementDefinition()
242 …, \"%s\", %d);\n"), GetClassName(elt), elt->Id, elt->Id<0x100 ? 1 : (elt->Id<0x10000 ? 2 : (elt->I… in OutputElementDefinition()
244 …ax%s, \"%s\");\n"), GetClassName(elt), elt->Id, elt->Id<0x100 ? 1 : (elt->Id<0x10000 ? 2 : (elt->I… in OutputElementDefinition()
249 …ax%s, \"%s\");\n"), GetClassName(elt), elt->Id, elt->Id<0x100 ? 1 : (elt->Id<0x10000 ? 2 : (elt->I… in OutputElementDefinition()
253 …ax%s, \"%s\");\n"), GetClassName(elt), elt->Id, elt->Id<0x100 ? 1 : (elt->Id<0x10000 ? 2 : (elt->I… in OutputElementDefinition()
258 …ax%s, \"%s\");\n"), GetClassName(elt), elt->Id, elt->Id<0x100 ? 1 : (elt->Id<0x10000 ? 2 : (elt->I… in OutputElementDefinition()
266 …ax%s, \"%s\");\n"), GetClassName(elt), elt->Id, elt->Id<0x100 ? 1 : (elt->Id<0x10000 ? 2 : (elt->I… in OutputElementDefinition()
[all …]
/dports/math/vtk9/VTK-9.1.0/IO/HDF/Testing/Cxx/
H A DTestHDFReader.cxx133 if (std::string(expectedArray->GetClassName()) != array->GetClassName() && in TestDataSet()
135 !(std::string(expectedArray->GetClassName()) == "vtkLongLongArray" && in TestDataSet()
136 std::string(array->GetClassName()) == "vtkLongArray" && in TestDataSet()
139 !(std::string(expectedArray->GetClassName()) == "vtkUnsignedLongLongArray" && in TestDataSet()
140 std::string(array->GetClassName()) == "vtkUnsignedLongArray" && in TestDataSet()
143 !(std::string(expectedArray->GetClassName()) == "vtkIdTypeArray" && in TestDataSet()
144 std::string(array->GetClassName()) == "vtkLongArray" && in TestDataSet()
147 !(std::string(expectedArray->GetClassName()) == "vtkIdTypeArray" && in TestDataSet()
148 std::string(array->GetClassName()) == "vtkLongLongArray" && in TestDataSet()
151 std::cerr << "Different array type: " << array->GetClassName() << " from expected " in TestDataSet()
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/extra/protobuf/protobuf-2.6.1/src/google/protobuf/compiler/java/
H A Djava_name_resolver.h78 string GetClassName(const Descriptor* descriptor, bool immutable);
79 string GetClassName(const EnumDescriptor* descriptor, bool immutable);
80 string GetClassName(const ServiceDescriptor* descriptor, bool immutable);
81 string GetClassName(const FileDescriptor* descriptor, bool immutable);
85 return GetClassName(descriptor, true); in GetImmutableClassName()
89 return GetClassName(descriptor, false); in GetMutableClassName()
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/extra/protobuf/protobuf-2.6.1/src/google/protobuf/compiler/java/
H A Djava_name_resolver.h78 string GetClassName(const Descriptor* descriptor, bool immutable);
79 string GetClassName(const EnumDescriptor* descriptor, bool immutable);
80 string GetClassName(const ServiceDescriptor* descriptor, bool immutable);
81 string GetClassName(const FileDescriptor* descriptor, bool immutable);
85 return GetClassName(descriptor, true); in GetImmutableClassName()
89 return GetClassName(descriptor, false); in GetMutableClassName()
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/extra/protobuf/protobuf-2.6.1/src/google/protobuf/compiler/java/
H A Djava_name_resolver.h78 string GetClassName(const Descriptor* descriptor, bool immutable);
79 string GetClassName(const EnumDescriptor* descriptor, bool immutable);
80 string GetClassName(const ServiceDescriptor* descriptor, bool immutable);
81 string GetClassName(const FileDescriptor* descriptor, bool immutable);
85 return GetClassName(descriptor, true); in GetImmutableClassName()
89 return GetClassName(descriptor, false); in GetMutableClassName()
/dports/databases/percona57-server/percona-server-5.7.36-39/extra/protobuf/protobuf-2.6.1/src/google/protobuf/compiler/java/
H A Djava_name_resolver.h78 string GetClassName(const Descriptor* descriptor, bool immutable);
79 string GetClassName(const EnumDescriptor* descriptor, bool immutable);
80 string GetClassName(const ServiceDescriptor* descriptor, bool immutable);
81 string GetClassName(const FileDescriptor* descriptor, bool immutable);
85 return GetClassName(descriptor, true); in GetImmutableClassName()
89 return GetClassName(descriptor, false); in GetMutableClassName()
/dports/databases/percona57-client/percona-server-5.7.36-39/extra/protobuf/protobuf-2.6.1/src/google/protobuf/compiler/java/
H A Djava_name_resolver.h78 string GetClassName(const Descriptor* descriptor, bool immutable);
79 string GetClassName(const EnumDescriptor* descriptor, bool immutable);
80 string GetClassName(const ServiceDescriptor* descriptor, bool immutable);
81 string GetClassName(const FileDescriptor* descriptor, bool immutable);
85 return GetClassName(descriptor, true); in GetImmutableClassName()
89 return GetClassName(descriptor, false); in GetMutableClassName()
/dports/databases/mysql57-client/mysql-5.7.36/extra/protobuf/protobuf-2.6.1/src/google/protobuf/compiler/java/
H A Djava_name_resolver.h78 string GetClassName(const Descriptor* descriptor, bool immutable);
79 string GetClassName(const EnumDescriptor* descriptor, bool immutable);
80 string GetClassName(const ServiceDescriptor* descriptor, bool immutable);
81 string GetClassName(const FileDescriptor* descriptor, bool immutable);
85 return GetClassName(descriptor, true); in GetImmutableClassName()
89 return GetClassName(descriptor, false); in GetMutableClassName()
/dports/devel/grpc130/grpc-1.30.2/src/compiler/
H A Dcsharp_generator.cc28 using google::protobuf::compiler::csharp::GetClassName;
250 GetClassName(method->input_type()) + ", " + in GetMethodReturnTypeClient()
251 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeClient()
254 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeClient()
258 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeClient()
283 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeServer()
336 GetClassName(message)); in GenerateMarshallerFields()
346 GetClassName(method->input_type()), "response", in GenerateStaticMethodField()
347 GetClassName(method->output_type())); in GenerateStaticMethodField()
480 GetClassName(method->output_type())); in GenerateClientStub()
[all …]
/dports/devel/grpc134/grpc-1.34.1/src/compiler/
H A Dcsharp_generator.cc28 using google::protobuf::compiler::csharp::GetClassName;
250 GetClassName(method->input_type()) + ", " + in GetMethodReturnTypeClient()
251 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeClient()
254 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeClient()
258 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeClient()
283 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeServer()
399 GetClassName(message)); in GenerateMarshallerFields()
409 GetClassName(method->input_type()), "response", in GenerateStaticMethodField()
410 GetClassName(method->output_type())); in GenerateStaticMethodField()
543 GetClassName(method->output_type())); in GenerateClientStub()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/src/compiler/
H A Dcsharp_generator.cc28 using google::protobuf::compiler::csharp::GetClassName;
250 GetClassName(method->input_type()) + ", " + in GetMethodReturnTypeClient()
251 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeClient()
254 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeClient()
258 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeClient()
283 GetClassName(method->output_type()) + ">"; in GetMethodReturnTypeServer()
336 GetClassName(message)); in GenerateMarshallerFields()
346 GetClassName(method->input_type()), "response", in GenerateStaticMethodField()
347 GetClassName(method->output_type())); in GenerateStaticMethodField()
494 GetClassName(method->output_type())); in GenerateClientStub()
[all …]

12345678910>>...126