Home
last modified time | relevance | path

Searched refs:pathData (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/modules/particles/src/
DSkParticleBinding.cpp107 if (auto pathData = resourceProvider->load(fPathPath.c_str(), fPathName.c_str())) { in prepare() local
109 if (0 != path.readFromMemory(pathData->data(), pathData->size())) { in prepare()
/third_party/quickjs/
Ddebugger.c219 JSValue pathData = JS_GetPropertyStr(debuggerInfo->cx, debuggerInfo->breakpoints, path); in DBG_SetBreakpoints() local
220 if (!JS_IsUndefined(pathData)) { in DBG_SetBreakpoints()
222 JS_FreeValue(debuggerInfo->cx, pathData); in DBG_SetBreakpoints()
225 pathData = JS_NewObject(debuggerInfo->cx); in DBG_SetBreakpoints()
226 JS_SetPropertyStr(debuggerInfo->cx, debuggerInfo->breakpoints, path, pathData); in DBG_SetBreakpoints()
231 JS_SetPropertyStr(debuggerInfo->cx, pathData, "breakpoints", jsBreakpoints); in DBG_SetBreakpoints()
/third_party/flutter/engine/flutter/shell/platform/darwin/ios/framework/Source/
DFlutterObservatoryPublisher.mm112 NSData* pathData = [[[NSData alloc] initWithBytes:path.c_str() length:path.length()] autorelease];
114 @"authCode" : pathData,
/third_party/flutter/skia/src/core/
DSkRemoteGlyphCache.cpp857 auto* pathData = deserializer.read(pathSize, kPathAlignment); in readStrikeData() local
858 if (!pathData) READ_FAILURE in readStrikeData()
859 if (!path.readFromMemory(const_cast<const void*>(pathData), pathSize)) READ_FAILURE in readStrikeData()
/third_party/flutter/skia/src/svg/
DSkSVGDevice.cpp617 SkString pathData; in addPathAttributes() local
618 SkParsePath::ToSVGString(path, &pathData); in addPathAttributes()
619 this->addAttribute("d", pathData); in addPathAttributes()
/third_party/skia/src/core/
DSkRemoteGlyphCache.cpp1042 auto* pathData = deserializer.read(pathSize, kPathAlignment); in readStrikeData() local
1043 if (!pathData) READ_FAILURE in readStrikeData()
1044 if (!path.readFromMemory(const_cast<const void*>(pathData), pathSize)) READ_FAILURE in readStrikeData()
/third_party/skia/src/svg/
DSkSVGDevice.cpp633 SkString pathData; in addPathAttributes() local
634 SkParsePath::ToSVGString(path, &pathData, encoding); in addPathAttributes()
635 this->addAttribute("d", pathData); in addPathAttributes()
/third_party/skia/src/gpu/text/
DGrTextBlob.cpp176 std::unique_ptr<PathGlyph[], GrSubRunAllocator::ArrayDestroyer> pathData);
211 std::unique_ptr<PathGlyph[], GrSubRunAllocator::ArrayDestroyer> pathData) in PathSubRun() argument
215 , fPathData{std::move(pathData)} { }
280 auto pathData = alloc->makeUniqueArray<PathGlyph>( in Make() local
286 SkSpan<PathGlyph> paths{pathData.get(), drawables.size()}; in Make()
289 isAntiAliased, strikeToSourceScale, blob, paths, std::move(pathData)); in Make()