Home
last modified time | relevance | path

Searched refs:fCell (Results 1 – 5 of 5) sorted by relevance

/external/skia/samplecode/
DSampleFilterQuality.cpp144 SkSize fCell; member in FilterQualityView
151 fCell.set(256, 256); in FilterQualityView()
227 canvas->translate(SkScalarHalf(fCell.width() - fImage->width()), in drawHere()
228 SkScalarHalf(fCell.height() - fImage->height())); in drawHere()
236 SkScalarHalf(fCell.width() - zoomed->width()), in drawHere()
237 SkScalarHalf(fCell.height() - zoomed->height())); in drawHere()
246 SkRect r = SkRect::MakeWH(fCell.width() * 2, fCell.height() * 2); in drawBorders()
258 fCell.set(this->height() / 2, this->height() / 2); in onDrawContent()
267 canvas->translate(fCell.width() * x, fCell.height() * y); in onDrawContent()
268 SkRect r = SkRect::MakeWH(fCell.width(), fCell.height()); in onDrawContent()
[all …]
/external/skia/src/views/mac/
DSkOptionsTableView.mm12 @synthesize fCell, fItem;
14 [fCell release];
105 option.fCell = [self createList:optionstrs current:index];
114 option.fCell = [self createAction];
121 option.fCell = [self createSlider:value
127 option.fCell = [self createSwitch:(BOOL)state];
131 option.fCell = [self createTriState:[self triStateToNSState:tristate]];
135 … option.fCell = [self createTextField:[NSString stringWithUTF8String:str.c_str()]];
168 return [((SkOptionItem*)[fItems objectAtIndex:row]).fCell copy];
179 NSCell* storedCell = option.fCell;
[all …]
DSkOptionsTableView.h13 NSCell* fCell; variable
17 @property (nonatomic, retain) NSCell* fCell; in property()
/external/skia/experimental/iOSSampleApp/Shared/
DSkOptionsTableViewController.mm6 @synthesize fCell, fItem;
8 [fCell release];
93 List.fCell = [self createList:title
95 List.fOptions.fParentCell = List.fCell;
108 option.fCell = [self createAction:title];
112 option.fCell = [self createSwitch:title default:(BOOL)state];
119 option.fCell = [self createSlider:title
126 option.fCell = [self createTriState:title default:(int)tristate];
130 option.fCell = [self createTextField:title
288 return ((SkOptionItem*)[fItems objectAtIndex:[self convertPathToIndex:indexPath]]).fCell;
[all …]
DSkOptionsTableViewController.h7 UITableViewCell* fCell; variable
11 @property (nonatomic, retain) UITableViewCell* fCell; in property()