/external/skia/include/core/ |
H A D | SkStrokeRec.h | 18 enum InitStyle { enum in class:SkStrokeRec 22 SkStrokeRec(InitStyle style);
|
H A D | SkMaskFilter.h | 234 SkStrokeRec::InitStyle) const;
|
/external/skia/src/gpu/ |
H A D | GrStyle.h | 78 explicit GrStyle(SkStrokeRec::InitStyle initStyle) : fStrokeRec(initStyle) {} 102 void resetToInitStyle(SkStrokeRec::InitStyle fillOrHairline) { 163 * returned SkStrokeRec::InitStyle value. Will fail if there is no path effect and the 168 bool SK_WARN_UNUSED_RESULT applyToPath(SkPath* dst, SkStrokeRec::InitStyle* fillOrHairline,
|
H A D | GrBlurUtils.cpp | 61 SkStrokeRec::InitStyle fillOrHairline) { 108 SkStrokeRec::InitStyle fillOrHairline, 158 SkStrokeRec::InitStyle fillOrHairline;
|
H A D | GrTestUtils.cpp | 241 SkStrokeRec::InitStyle style = 242 SkStrokeRec::InitStyle(random->nextULessThan(SkStrokeRec::kFill_InitStyle + 1)); 249 SkStrokeRec::InitStyle initStyle = 250 SkStrokeRec::InitStyle(random->nextULessThan(SkStrokeRec::kFill_InitStyle + 1));
|
H A D | GrStyle.cpp | 170 bool GrStyle::applyToPath(SkPath* dst, SkStrokeRec::InitStyle* style, const SkPath& src,
|
H A D | GrShape.cpp | 314 SkStrokeRec::InitStyle fillOrHairline; 338 SkStrokeRec::InitStyle fillOrHairline;
|
/external/skia/src/gpu/gl/ |
H A D | GrGLPathRange.cpp | 73 SkStrokeRec::InitStyle fill;
|
/external/skia/src/core/ |
H A D | SkDraw.h | 100 SkStrokeRec::InitStyle style);
|
H A D | SkStrokeRec.cpp | 14 SkStrokeRec::SkStrokeRec(InitStyle s) {
|
H A D | SkMaskFilter.cpp | 234 SkStrokeRec::InitStyle style) const {
|
H A D | SkDraw.cpp | 981 SkStrokeRec::InitStyle style = doFill ? SkStrokeRec::kFill_InitStyle 1696 SkStrokeRec::InitStyle style) { 1729 SkStrokeRec::InitStyle style) {
|
/external/clang/lib/Sema/ |
H A D | SemaLambda.cpp | 771 unsigned InitStyle, Expr *Init) { 783 NewVD->setInitStyle(static_cast<VarDecl::InitializationStyle>(InitStyle)); 987 unsigned InitStyle; local 992 InitStyle = VarDecl::CInit; 995 InitStyle = VarDecl::CallInit; 998 InitStyle = VarDecl::ListInit; 1002 C->Id, InitStyle, C->Init.get()); 768 createLambdaInitCaptureVarDecl(SourceLocation Loc, QualType InitCaptureType, IdentifierInfo *Id, unsigned InitStyle, Expr *Init) argument
|
H A D | SemaDecl.cpp | 4436 /*InitStyle=*/ICIS_NoInit); 4535 /*InitStyle=*/ICIS_NoInit); 13335 /*InitStyle=*/ICIS_NoInit, AS_public); 13344 InClassInitStyle InitStyle, 13422 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle, 13456 InClassInitStyle InitStyle, 13563 if (InitStyle != ICIS_NoInit) 13567 BitWidth, Mutable, InitStyle); 13341 HandleField(Scope *S, RecordDecl *Record, SourceLocation DeclStart, Declarator &D, Expr *BitWidth, InClassInitStyle InitStyle, AccessSpecifier AS) argument 13452 CheckFieldDecl(DeclarationName Name, QualType T, TypeSourceInfo *TInfo, RecordDecl *Record, SourceLocation Loc, bool Mutable, Expr *BitWidth, InClassInitStyle InitStyle, SourceLocation TSSL, AccessSpecifier AS, NamedDecl *PrevDecl, Declarator *D) argument
|
H A D | SemaDeclCXX.cpp | 2002 /// one has been parsed, and 'InitStyle' is set if an in-class initializer is 2008 InClassInitStyle InitStyle) { 2103 if (InitStyle == ICIS_NoInit) { 2188 BitWidth, InitStyle, AS, MSPropertyAttr); 2194 BitWidth, InitStyle, AS); 13952 InClassInitStyle InitStyle, 2005 ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D, MultiTemplateParamsArg TemplateParameterLists, Expr *BW, const VirtSpecifiers &VS, InClassInitStyle InitStyle) argument 13949 HandleMSProperty(Scope *S, RecordDecl *Record, SourceLocation DeclStart, Declarator &D, Expr *BitWidth, InClassInitStyle InitStyle, AccessSpecifier AS, AttributeList *MSPropertyAttr) argument
|
/external/clang/include/clang/AST/ |
H A D | Decl.h | 811 unsigned InitStyle : 2; 1185 VarDeclBits.InitStyle = Style; 1199 return static_cast<InitializationStyle>(VarDeclBits.InitStyle); 2337 InClassInitStyle InitStyle) 2340 InitStorage(BW, (InitStorageKind) InitStyle) { 2341 assert((!BW || InitStyle == ICIS_NoInit) && "got initializer for bitfield"); 2349 InClassInitStyle InitStyle);
|
/external/clang/lib/AST/ |
H A D | StmtPrinter.cpp | 2172 CXXNewExpr::InitializationStyle InitStyle = E->getInitializationStyle(); local 2173 if (InitStyle) { 2174 if (InitStyle == CXXNewExpr::CallInit) 2177 if (InitStyle == CXXNewExpr::CallInit)
|
H A D | Decl.cpp | 3447 InClassInitStyle InitStyle) { 3449 BW, Mutable, InitStyle); 3443 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, Expr *BW, bool Mutable, InClassInitStyle InitStyle) argument
|
/external/clang/include/clang/Sema/ |
H A D | Sema.h | 1984 InClassInitStyle InitStyle, 1989 InClassInitStyle InitStyle, 1997 InClassInitStyle InitStyle, 5143 unsigned InitStyle, Expr *Init); 5292 InClassInitStyle InitStyle);
|
/external/skia/src/xps/ |
H A D | SkXPSDevice.cpp | 1640 SkStrokeRec::InitStyle style = (SkPaint::kFill_Style == paint->getStyle())
|
/external/skia/tests/ |
H A D | GrShapeTest.cpp | 380 SkStrokeRec::InitStyle fillOrHairline;
|
/external/skia/src/pdf/ |
H A D | SkPDFDevice.cpp | 830 SkStrokeRec::InitStyle initStyle = paint->getFillPath(path, &path)
|
/external/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 1215 VD->VarDeclBits.InitStyle = Record[Idx++];
|