Searched refs:pathSize (Results 1 – 6 of 6) sorted by relevance
/external/skqp/src/core/ |
D | SkRemoteGlyphCache.cpp | 167 uint64_t pathSize = 0u; in read_path() local 168 if (!deserializer->read<uint64_t>(&pathSize)) return false; in read_path() 170 if (pathSize == 0u) return true; in read_path() 172 auto* path = deserializer->read(pathSize, kPathAlignment); in read_path() 175 return cache->initializePath(glyph, path, pathSize); in read_path() 561 size_t pathSize = path.writeToMemory(nullptr); in writeGlyphPath() local 562 serializer->write<uint64_t>(pathSize); in writeGlyphPath() 563 path.writeToMemory(serializer->allocate(pathSize, kPathAlignment)); in writeGlyphPath()
|
/external/skia/src/core/ |
D | SkRemoteGlyphCache.cpp | 164 uint64_t pathSize = 0u; in read_path() local 165 if (!deserializer->read<uint64_t>(&pathSize)) return false; in read_path() 167 if (pathSize == 0u) return true; in read_path() 169 auto* path = deserializer->read(pathSize, kPathAlignment); in read_path() 172 return cache->initializePath(glyph, path, pathSize); in read_path() 593 size_t pathSize = path.writeToMemory(nullptr); in writeGlyphPath() local 594 serializer->write<uint64_t>(pathSize); in writeGlyphPath() 595 path.writeToMemory(serializer->allocate(pathSize, kPathAlignment)); in writeGlyphPath()
|
/external/clang/include/clang/AST/ |
D | ExprCXX.h | 258 unsigned pathSize, TypeSourceInfo *writtenTy, in CXXStaticCastExpr() argument 261 : CXXNamedCastExpr(CXXStaticCastExprClass, ty, vk, kind, op, pathSize, in CXXStaticCastExpr() 294 Expr *op, unsigned pathSize, TypeSourceInfo *writtenTy, in CXXDynamicCastExpr() argument 297 : CXXNamedCastExpr(CXXDynamicCastExprClass, ty, VK, kind, op, pathSize, in CXXDynamicCastExpr() 300 explicit CXXDynamicCastExpr(EmptyShell Empty, unsigned pathSize) in CXXDynamicCastExpr() argument 301 : CXXNamedCastExpr(CXXDynamicCastExprClass, Empty, pathSize) { } in CXXDynamicCastExpr() 312 unsigned pathSize); 337 Expr *op, unsigned pathSize, in CXXReinterpretCastExpr() argument 342 pathSize, writtenTy, l, RParenLoc, AngleBrackets) {} in CXXReinterpretCastExpr() 344 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize) in CXXReinterpretCastExpr() argument [all …]
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | HttpUrlTest.java | 795 @Test public void pathSize() throws Exception { in pathSize() method in HttpUrlTest 796 assertEquals(1, HttpUrl.parse("http://host/").pathSize()); in pathSize() 797 assertEquals(3, HttpUrl.parse("http://host/a/b/c").pathSize()); in pathSize()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | HttpUrl.java | 431 public int pathSize() { in pathSize() method in HttpUrl
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
D | HttpUrl.java | 433 public int pathSize() { in pathSize() method in HttpUrl
|