Searched refs:pathData (Results 1 – 8 of 8) sorted by relevance
/third_party/skia/modules/particles/src/ |
D | SkParticleBinding.cpp | 107 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/ |
D | debugger.c | 219 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/ |
D | FlutterObservatoryPublisher.mm | 112 NSData* pathData = [[[NSData alloc] initWithBytes:path.c_str() length:path.length()] autorelease]; 114 @"authCode" : pathData,
|
/third_party/flutter/skia/src/core/ |
D | SkRemoteGlyphCache.cpp | 857 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/ |
D | SkSVGDevice.cpp | 617 SkString pathData; in addPathAttributes() local 618 SkParsePath::ToSVGString(path, &pathData); in addPathAttributes() 619 this->addAttribute("d", pathData); in addPathAttributes()
|
/third_party/skia/src/core/ |
D | SkRemoteGlyphCache.cpp | 1042 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/ |
D | SkSVGDevice.cpp | 633 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/ |
D | GrTextBlob.cpp | 176 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()
|