OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SCALE_FACTOR
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
BounceInterpolator.java
26
private final static float
SCALE_FACTOR
= 7.5625f;
32
return
SCALE_FACTOR
* t * t;
35
return
SCALE_FACTOR
* t2 * t2 + 3f / 4f;
38
return
SCALE_FACTOR
* t2 * t2 + 15f / 16f;
/hardware/bsp/intel/peripheral/libupm/examples/python/
ldt0028.py
56
SCALE_FACTOR
= 15
62
stars_to_print = int(round(average /
SCALE_FACTOR
))
/development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
RoundView.java
38
private final float
SCALE_FACTOR
= 0.3f;
73
.SCALE_Y,
SCALE_FACTOR
);
75
.SCALE_X,
SCALE_FACTOR
);
/hardware/bsp/intel/peripheral/libupm/examples/c++/
ldt0028.cxx
70
const int
SCALE_FACTOR
= 15;
77
int stars_to_print = (int) round(average /
SCALE_FACTOR
);
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
ldt0028.js
63
var
SCALE_FACTOR
= 15;
70
var stars_to_print = Math.round(average /
SCALE_FACTOR
);
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/
ImageReaderSubPane.java
316
int
SCALE_FACTOR
= 2;
317
while (mConfiguredSize.getWidth() > (mImageView.getWidth() *
SCALE_FACTOR
<< 1) ) {
318
SCALE_FACTOR
<<= 1;
329
opts.inSampleSize =
SCALE_FACTOR
;
340
int w = mConfiguredSize.getWidth() /
SCALE_FACTOR
;
341
int h = mConfiguredSize.getHeight() /
SCALE_FACTOR
;
352
y++, rowStart += stride*
SCALE_FACTOR
) {
355
if (y *
SCALE_FACTOR
% 2 == 0) {
360
uRowStart += uStride*
SCALE_FACTOR
/2;
361
vRowStart += vStride*
SCALE_FACTOR
/2
[
all
...]
/external/libvpx/libvpx/vpx/src/
svc_encodeframe.c
61
SCALE_FACTOR
,
137
if (type ==
SCALE_FACTOR
) {
143
if (*value0 < option_min_values[
SCALE_FACTOR
] ||
144
*value1 < option_min_values[
SCALE_FACTOR
] ||
145
*value0 > option_max_values[
SCALE_FACTOR
] ||
146
*value1 > option_max_values[
SCALE_FACTOR
] ||
171
(option1 == NULL && type ==
SCALE_FACTOR
))
231
res = parse_layer_options_from_string(svc_ctx,
SCALE_FACTOR
, option_value,
/frameworks/base/core/java/android/view/
ScaleGestureDetector.java
155
private static final float
SCALE_FACTOR
= .5f;
552
final float spanDiff = (Math.abs(1 - (mCurrSpan / mPrevSpan)) *
SCALE_FACTOR
);
Completed in 586 milliseconds