]>
Commit | Line | Data |
---|---|---|
2cd8f71b JF |
1 | /* |
2 | * Generated by class-dump 3.1.2. | |
3 | * | |
4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard. | |
5 | */ | |
6 | ||
7 | #import <Foundation/NSObject.h> | |
8 | ||
9 | @interface UIFloatArray : NSObject | |
10 | { | |
11 | int _count; | |
12 | int _gapCount; | |
13 | int *_gaps; | |
14 | float _gapValue; | |
15 | float _minValue; | |
16 | union { | |
17 | float singleton; | |
18 | float *array; | |
19 | } _values; | |
20 | struct { | |
21 | unsigned int valueIsSingleton:1; | |
22 | unsigned int hideGaps:1; | |
23 | unsigned int unused:30; | |
24 | } _floatArrayFlags; | |
25 | } | |
26 | ||
27 | - (BOOL)_setupValuesWithCount:(int)fp8 singleValue:(float)fp12 isRefresh:(BOOL)fp16; | |
28 | - (BOOL)_setupValuesWithCount:(int)fp8 dataProvider:(id)fp12 isRefresh:(BOOL)fp16; | |
29 | - (BOOL)_setupGapIndexesWithCount:(int)fp8 dataProvider:(id)fp12 isRefresh:(BOOL)fp16; | |
30 | - (BOOL)_setupWithDataProvider:(id)fp8 valueIsSingleton:(BOOL)fp12 singletonValue:(float)fp16 isRefresh:(BOOL)fp20; | |
31 | - (id)init; | |
32 | - (id)copyWithZone:(struct _NSZone *)fp8; | |
33 | - (void)dealloc; | |
34 | - (BOOL)refreshWithDataProvider:(id)fp8 singleValue:(float)fp12; | |
35 | - (BOOL)refreshWithDataProvider:(id)fp8; | |
36 | - (float)singleValue; | |
37 | - (float)minValue; | |
38 | - (int)valueCount; | |
39 | - (float)sum; | |
40 | - (CDAnonymousStruct6)offsetsForIndex:(int)fp8; | |
41 | - (CDAnonymousStruct6)offsetsForGapIndex:(int)fp8; | |
42 | - (CDAnonymousStruct5)_indexesViaSingletonFromOffset:(float)fp8 toOffset:(float)fp12; | |
43 | - (CDAnonymousStruct5)_indexesViaArrayFromOffset:(float)fp8 toOffset:(float)fp12; | |
44 | - (CDAnonymousStruct5)indexesFromOffset:(float)fp8 toOffset:(float)fp12; | |
45 | - (int)indexForGapIndex:(int)fp8; | |
46 | - (void)hideGaps:(BOOL)fp8; | |
47 | ||
48 | @end | |
49 |