Home
last modified time | relevance | path

Searched refs:GetNullValue (Results 1 – 25 of 656) sorted by relevance

12345678910>>...27

/dports/math/vtk8/VTK-8.2.0/IO/Core/Testing/Cxx/
H A DTestArraySerialization.cxx71 test_expression(vtkSparseArray<double>::SafeDownCast(a2)->GetNullValue() == 0.5); in TestArraySerialization()
110 … test_expression(vtkSparseArray<vtkStdString>::SafeDownCast(f1)->GetNullValue() == "empty value"); in TestArraySerialization()
150 …test_expression(vtkSparseArray<vtkUnicodeString>::SafeDownCast(h2)->GetNullValue() == vtkUnicodeSt… in TestArraySerialization()
192 …test_expression(vtkSparseArray<vtkUnicodeString>::SafeDownCast(j2)->GetNullValue() == vtkUnicodeSt… in TestArraySerialization()
216 test_expression(vtkSparseArray<double>::SafeDownCast(ba2)->GetNullValue() == 0.5); in TestArraySerialization()
258 … test_expression(vtkSparseArray<vtkStdString>::SafeDownCast(bc2)->GetNullValue() == "empty space"); in TestArraySerialization()
298 …test_expression(vtkSparseArray<vtkUnicodeString>::SafeDownCast(be2)->GetNullValue() == vtkUnicodeS… in TestArraySerialization()
/dports/math/vtk9/VTK-9.1.0/IO/Core/Testing/Cxx/
H A DTestArraySerialization.cxx76 test_expression(vtkSparseArray<double>::SafeDownCast(a2)->GetNullValue() == 0.5); in TestArraySerialization()
120 vtkSparseArray<vtkStdString>::SafeDownCast(f1)->GetNullValue() == "empty value"); in TestArraySerialization()
163 test_expression(vtkSparseArray<vtkUnicodeString>::SafeDownCast(h2)->GetNullValue() == in TestArraySerialization()
208 test_expression(vtkSparseArray<vtkUnicodeString>::SafeDownCast(j2)->GetNullValue() == in TestArraySerialization()
234 test_expression(vtkSparseArray<double>::SafeDownCast(ba2)->GetNullValue() == 0.5); in TestArraySerialization()
279 vtkSparseArray<vtkStdString>::SafeDownCast(bc2)->GetNullValue() == "empty space"); in TestArraySerialization()
324 test_expression(vtkSparseArray<vtkUnicodeString>::SafeDownCast(be2)->GetNullValue() == in TestArraySerialization()
/dports/math/vtk6/VTK-6.2.0/IO/Core/Testing/Cxx/
H A DTestArraySerialization.cxx71 test_expression(vtkSparseArray<double>::SafeDownCast(a2)->GetNullValue() == 0.5); in TestArraySerialization()
110 … test_expression(vtkSparseArray<vtkStdString>::SafeDownCast(f1)->GetNullValue() == "empty value"); in TestArraySerialization()
150 …test_expression(vtkSparseArray<vtkUnicodeString>::SafeDownCast(h2)->GetNullValue() == vtkUnicodeSt… in TestArraySerialization()
192 …test_expression(vtkSparseArray<vtkUnicodeString>::SafeDownCast(j2)->GetNullValue() == vtkUnicodeSt… in TestArraySerialization()
216 test_expression(vtkSparseArray<double>::SafeDownCast(ba2)->GetNullValue() == 0.5); in TestArraySerialization()
258 … test_expression(vtkSparseArray<vtkStdString>::SafeDownCast(bc2)->GetNullValue() == "empty space"); in TestArraySerialization()
298 …test_expression(vtkSparseArray<vtkUnicodeString>::SafeDownCast(be2)->GetNullValue() == vtkUnicodeS… in TestArraySerialization()
/dports/math/vtk9/VTK-9.1.0/IO/Core/
H A DvtkArrayWriter.cxx110 stream.write(reinterpret_cast<const char*>(&concrete_array->GetNullValue()), sizeof(ValueT)); in WriteSparseArrayBinary()
140 stream.write(concrete_array->GetNullValue().c_str(), concrete_array->GetNullValue().size() + 1); in WriteSparseArrayBinary()
175 stream.write(concrete_array->GetNullValue().utf8_str(), in WriteSparseArrayBinary()
176 strlen(concrete_array->GetNullValue().utf8_str()) + 1); in WriteSparseArrayBinary()
280 WriteValue(stream, concrete_array->GetNullValue()); in WriteSparseArrayAscii()
/dports/math/vtk8/VTK-8.2.0/IO/Core/
H A DvtkArrayWriter.cxx108 reinterpret_cast<const char*>(&concrete_array->GetNullValue()), in WriteSparseArrayBinary()
140 concrete_array->GetNullValue().c_str(), in WriteSparseArrayBinary()
141 concrete_array->GetNullValue().size() + 1); in WriteSparseArrayBinary()
178 concrete_array->GetNullValue().utf8_str(), in WriteSparseArrayBinary()
179 strlen(concrete_array->GetNullValue().utf8_str()) + 1); in WriteSparseArrayBinary()
287 WriteValue(stream, concrete_array->GetNullValue()); in WriteSparseArrayAscii()
/dports/math/vtk6/VTK-6.2.0/IO/Core/
H A DvtkArrayWriter.cxx108 reinterpret_cast<const char*>(&concrete_array->GetNullValue()), in WriteSparseArrayBinary()
140 concrete_array->GetNullValue().c_str(), in WriteSparseArrayBinary()
141 concrete_array->GetNullValue().size() + 1); in WriteSparseArrayBinary()
178 concrete_array->GetNullValue().utf8_str(), in WriteSparseArrayBinary()
179 strlen(concrete_array->GetNullValue().utf8_str()) + 1); in WriteSparseArrayBinary()
287 WriteValue(stream, concrete_array->GetNullValue()); in WriteSparseArrayAscii()
/dports/math/vtk8/VTK-8.2.0/Common/Core/Testing/Cxx/
H A DTestArrayNullValues.cxx36 if(array->GetNullValue() != DefaultNull) in VerifyType()
49 if(array->GetNullValue() != AlternateNull) in VerifyType()
H A DTestArrayUserTypes.cxx97 test_expression(sparse->GetNullValue() == UserType("blue")); in TestArrayUserTypes()
H A DTestArrayAPISparse.cxx140 test_expression(deep_copy->GetNullValue() == array->GetNullValue()); in TestArrayAPISparse()
/dports/math/vtk9/VTK-9.1.0/Common/Core/Testing/Cxx/
H A DTestArrayNullValues.cxx36 if (array->GetNullValue() != DefaultNull) in VerifyType()
51 if (array->GetNullValue() != AlternateNull) in VerifyType()
H A DTestArrayUserTypes.cxx96 test_expression(sparse->GetNullValue() == UserType("blue")); in TestArrayUserTypes()
H A DTestArrayAPISparse.cxx140 test_expression(deep_copy->GetNullValue() == array->GetNullValue()); in TestArrayAPISparse()
/dports/math/vtk6/VTK-6.2.0/Common/Core/Testing/Cxx/
H A DTestArrayNullValues.cxx36 if(array->GetNullValue() != DefaultNull) in VerifyType()
49 if(array->GetNullValue() != AlternateNull) in VerifyType()
H A DTestArrayUserTypes.cxx97 test_expression(sparse->GetNullValue() == UserType("blue")); in TestArrayUserTypes()
H A DTestArrayAPISparse.cxx140 test_expression(deep_copy->GetNullValue() == array->GetNullValue()); in TestArrayAPISparse()
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/cdm/
H A Djson_web_key.cc76 static std::unique_ptr<base::Value> GetNullValue() { in GetNullValue() function
422 dictionary->Set(kPersistentUsageRecordFirstTime, GetNullValue()); in CreateLicenseReleaseMessage()
429 dictionary->Set(kPersistentUsageRecordLatestTime, GetNullValue()); in CreateLicenseReleaseMessage()
/dports/math/vtk6/VTK-6.2.0/Common/Core/
H A DvtkSparseArray.h111 const T& GetNullValue();
/dports/math/vtk8/VTK-8.2.0/Common/Core/
H A DvtkSparseArray.h115 const T& GetNullValue();
/dports/math/vtk9/VTK-9.1.0/Common/Core/
H A DvtkSparseArray.h115 const T& GetNullValue();
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels/
H A DSoapMessageFormatter.cs243 args [n] = GetNullValue (paramType); in BuildMethodCallFromSoapMessage()
404 object GetNullValue (Type paramType) in GetNullValue() method in System.Runtime.Remoting.Channels.SoapMessageFormatter
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-timestream-query/include/aws/timestream-query/model/
H A DDatum.h211 inline bool GetNullValue() const{ return m_nullValue; } in GetNullValue() function
/dports/www/itop/web/core/
H A Dbulkchange.class.inc.php370 $oTargetObj->Set($sAttCode, $oExtKey->GetNullValue());
371 $aResults[$sAttCode]= new CellStatus_Void($oExtKey->GetNullValue());
944 $valuecondition = $oExtKey->GetNullValue();
945 $aResult[$iRow][$sAttCode] = new CellStatus_Void($oExtKey->GetNullValue());
/dports/math/vtk8/VTK-8.2.0/Infovis/Core/
H A DvtkArrayToTable.cxx106 column->SetValue(i, sparse_array->GetNullValue()); in ConvertMatrix()
/dports/math/vtk9/VTK-9.1.0/Infovis/Core/
H A DvtkArrayToTable.cxx109 column->SetValue(i, sparse_array->GetNullValue()); in ConvertMatrix()
/dports/math/vtk6/VTK-6.2.0/Infovis/Core/
H A DvtkArrayToTable.cxx106 column->SetValue(i, sparse_array->GetNullValue()); in ConvertMatrix()

12345678910>>...27