Home
last modified time | relevance | path

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

/third_party/flutter/engine/flutter/fml/
Dmapping.h29 virtual const uint8_t* GetMapping() const = 0;
66 const uint8_t* GetMapping() const override;
95 const uint8_t* GetMapping() const override;
116 const uint8_t* GetMapping() const override;
137 const uint8_t* GetMapping() const override;
Dicu_util.cc76 udata_setCommonData(GetMapping(), &err_code); in SetupICU()
80 const uint8_t* GetMapping() const { in GetMapping() function in fml::icu::ICUContext
81 return mapping_ ? mapping_->GetMapping() : nullptr; in GetMapping()
Dmapping.cc76 const uint8_t* DataMapping::GetMapping() const { in GetMapping() function in fml::DataMapping
97 const uint8_t* NonOwnedMapping::GetMapping() const { in GetMapping() function in fml::NonOwnedMapping
130 const uint8_t* SymbolMapping::GetMapping() const { in GetMapping() function in fml::SymbolMapping
Dfile_unittest.cc36 if (mapping.GetMapping() == nullptr) { in ReadStringFromFile()
40 return {reinterpret_cast<const char*>(mapping.GetMapping()), in ReadStringFromFile()
99 ::memcmp(mapping.GetMapping(), contents.data(), contents.size())); in TEST()
168 ASSERT_EQ(mapping.GetMapping(), nullptr); in TEST()
/third_party/flutter/engine/flutter/runtime/
Ddart_snapshot.cc76 if (symbol_mapping->GetMapping() != nullptr) { in SearchMapping()
86 if (symbol_mapping->GetMapping() != nullptr) { in SearchMapping()
202 return data_ ? data_->GetMapping() : nullptr; in GetDataMapping()
206 return instructions_ ? instructions_->GetMapping() : nullptr; in GetInstructionsMapping()
Ddart_vm.cc150 if (mapping.GetSize() == 0 || mapping.GetMapping() == nullptr) { in GetVMServiceAssetsArchiveCallback()
154 return tonic::DartConverter<tonic::Uint8List>::ToDart(mapping.GetMapping(), in GetVMServiceAssetsArchiveCallback()
433 Dart_SetDartLibrarySourcesKernel(dart_library_sources->GetMapping(),
Ddart_isolate.cc299 if (!Dart_IsKernel(mapping->GetMapping(), mapping->GetSize())) { in LoadKernel()
307 Dart_LoadLibraryFromKernel(mapping->GetMapping(), mapping->GetSize()); in LoadKernel()
Ddart_isolate_unittests.cc224 if (kernel_mapping->GetMapping() == nullptr) { in RunDartCodeInIsolate()
/third_party/flutter/engine/flutter/shell/platform/embedder/tests/
Dembedder_config_builder.cc85 project_args_.vm_snapshot_data = mapping->GetMapping(); in SetSnapshots()
90 project_args_.vm_snapshot_instructions = mapping->GetMapping(); in SetSnapshots()
95 project_args_.isolate_snapshot_data = mapping->GetMapping(); in SetSnapshots()
100 project_args_.isolate_snapshot_instructions = mapping->GetMapping(); in SetSnapshots()
Dembedder_unittests.cc1050 fixture_image_mapping.GetMapping(), fixture_image_mapping.GetSize()); in TEST_F()
/third_party/flutter/engine/flutter/fml/platform/posix/
Dfile_posix.cc180 if (file_name == nullptr || data.GetMapping() == nullptr) { in WriteAtomically()
204 ::memcpy(mapping.GetMutableMapping(), data.GetMapping(), data.GetSize()); in WriteAtomically()
Dmapping_posix.cc99 const uint8_t* FileMapping::GetMapping() const { in GetMapping() function in fml::FileMapping
/third_party/flutter/engine/flutter/shell/platform/embedder/
Dembedder_platform_message_response.cc28 callback(data->GetMapping(), data->GetSize()); in Complete()
/third_party/flutter/engine/flutter/shell/platform/android/
Dapk_asset_provider.cc32 const uint8_t* GetMapping() const override { in GetMapping() function in flutter::APKAssetMapping
Dplatform_message_response_android.cc46 reinterpret_cast<const jbyte*>(data->GetMapping())); in Complete()
/third_party/flutter/engine/flutter/shell/platform/darwin/common/
Dbuffer_conversions.mm23 return [NSData dataWithBytes:mapping->GetMapping() length:mapping->GetSize()];
/third_party/flutter/engine/flutter/fml/platform/win/
Dmapping_win.cc114 const uint8_t* FileMapping::GetMapping() const { in GetMapping() function in fml::FileMapping
Dfile_win.cc371 ::memcpy(temp_file_mapping.GetMutableMapping(), mapping.GetMapping(), in WriteAtomically()
/third_party/flutter/engine/flutter/lib/ui/window/
Dplatform_message_response_dart.cc40 memcpy(data.data(), mapping->GetMapping(), mapping->GetSize()); in WrapByteData()
/third_party/flutter/engine/flutter/lib/ui/text/
Dasset_manager_font_provider.cc101 asset_mapping_ptr->GetMapping(), asset_mapping_ptr->GetSize(), in createTypeface()
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
Dcomponent.cc408 const uint8_t* GetMapping() const override { in GetMapping() function in flutter_runner::FileInNamespaceBuffer
428 return source->GetMapping() == nullptr ? nullptr : std::move(source); in CreateWithContentsOfFile()
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetISCII.java951 targetUniChar = GetMapping(sourceChar, targetUniChar, data); in decodeLoop()
962 targetUniChar = GetMapping(sourceChar, targetUniChar, data); in decodeLoop()
970 targetUniChar = GetMapping(sourceChar, targetUniChar, data); in decodeLoop()
992 targetUniChar = GetMapping(sourceChar, targetUniChar, data); in decodeLoop()
1059 targetUniChar = GetMapping(sourceChar, targetUniChar, data); in decodeLoop()
1174 private int GetMapping(short sourceChar, int targetUniChar, UConverterDataISCII data) { in GetMapping() method in CharsetISCII.CharsetDecoderISCII
/third_party/flutter/engine/flutter/shell/common/
Dpersistent_cache.cc114 return SkData::MakeWithCopy(mapping->GetMapping(), mapping->GetSize()); in load()
Disolate_configuration.cc96 reinterpret_cast<const char*>(kernel_list->GetMapping()); in ParseKernelListPaths()
/third_party/flutter/engine/flutter/lib/ui/painting/
Dimage_decoder_unittests.cc94 auto data = SkData::MakeWithProc(fixture_mapping->GetMapping(), in OpenFixtureAsSkData()