OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mDefaultWidth
(Results
1 - 8
of
8
) sorted by null
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java
105
private int
mDefaultWidth
;
200
parent.mDisplayWidth, parent.
mDefaultWidth
);
539
mDefaultWidth
= mDisplayWidth / 10;
541
mDefaultHeight =
mDefaultWidth
;
572
row.defaultWidth =
mDefaultWidth
;
580
|| x +
mDefaultWidth
+ horizontalPadding > mDisplayWidth) {
643
return
mDefaultWidth
;
647
mDefaultWidth
= width;
834
mDefaultWidth
= getDimensionOrFraction(a,
846
mProximityThreshold = (int) (
mDefaultWidth
* SEARCH_DISTANCE)
[
all
...]
/frameworks/base/core/java/android/inputmethodservice/
Keyboard.java
88
private int
mDefaultWidth
;
193
parent.mDisplayWidth, parent.
mDefaultWidth
);
527
mDefaultWidth
= mDisplayWidth / 10;
529
mDefaultHeight =
mDefaultWidth
;
550
mDefaultWidth
= mDisplayWidth / 10;
552
mDefaultHeight =
mDefaultWidth
;
583
row.defaultWidth =
mDefaultWidth
;
591
|| x +
mDefaultWidth
+ horizontalPadding > mDisplayWidth) {
677
return
mDefaultWidth
;
681
mDefaultWidth
= width
[
all
...]
/frameworks/native/libs/gui/
BufferQueue.cpp
69
mDefaultWidth
(1),
207
value =
mDefaultWidth
;
390
w =
mDefaultWidth
;
598
output->inflate(
mDefaultWidth
, mDefaultHeight, mTransformHint,
683
output->inflate(
mDefaultWidth
, mDefaultHeight, mTransformHint, mQueue.size());
793
prefix, mMaxAcquiredBufferCount, mDequeueBufferCannotBlock,
mDefaultWidth
,
[
all
...]
GLConsumer.cpp
127
mDefaultWidth
(1),
155
mDefaultWidth
= w;
920
if (newWidth * mDefaultHeight > newHeight *
mDefaultWidth
) {
921
newWidth = newHeight *
mDefaultWidth
/ mDefaultHeight;
923
} else if (newWidth * mDefaultHeight < newHeight *
mDefaultWidth
) {
924
newHeight = newWidth * mDefaultHeight /
mDefaultWidth
;
[
all
...]
Surface.cpp
68
mDefaultWidth
= 0;
293
output.deflate(&
mDefaultWidth
, &mDefaultHeight, &mTransformHint,
327
*value = mUserWidth ? mUserWidth :
mDefaultWidth
;
499
output.deflate(&
mDefaultWidth
, &mDefaultHeight, &mTransformHint,
/frameworks/native/include/gui/
BufferQueue.h
467
//
mDefaultWidth
holds the default width of allocated buffers. It is used
469
uint32_t
mDefaultWidth
;
GLConsumer.h
351
uint32_t
mDefaultWidth
, mDefaultHeight;
Surface.h
211
//
mDefaultWidth
is default width of the buffers, regardless of the
213
uint32_t
mDefaultWidth
;
220
// of
mDefaultWidth
. This is lower priority than the width set by
Completed in 449 milliseconds