OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mSrc
(Results
1 - 12
of
12
) sorted by null
/frameworks/rs/java/tests/MathErr/src/com/example/android/rs/matherr/
MathErr.java
32
float
mSrc
[] = new float[BUF_SIZE];
49
mSrc
[i] = (((float)i) / 9) - 200;
50
//
mSrc
[i] = Float.intBitsToFloat(mRand.nextInt());
52
mAllocationSrc.copyFrom(
mSrc
);
61
android.util.Log.v("err", "error " + err + " src " +
mSrc
[i] + " ref " + mRef[i] + " res " + mRes[i]);
71
mRef[i] = (float)Math.pow(2.f,
mSrc
[i]);
81
mRef[i] = (float)Math.log(
mSrc
[i]) * 1.442695041f;
/packages/apps/Mms/src/com/android/mms/model/
VideoModel.java
74
mSrc
= path.substring(path.lastIndexOf('/') + 1);
76
String extension = MimeTypeMap.getFileExtensionFromUrl(
mSrc
);
80
int dotPos =
mSrc
.lastIndexOf('.');
82
extension =
mSrc
.substring(dotPos + 1);
91
+ "
mSrc
=" +
mSrc
112
mSrc
= path.substring(path.lastIndexOf('/') + 1);
119
if (mContentType.equals(ContentType.VIDEO_MP4) && !(TextUtils.isEmpty(
mSrc
))) {
120
int index =
mSrc
.lastIndexOf(".");
123
String extension =
mSrc
.substring(index + 1)
[
all
...]
MediaModel.java
49
protected String
mSrc
;
72
mSrc
= src;
87
mSrc
= src;
156
* @return the
mSrc
159
return
mSrc
;
AudioModel.java
90
mSrc
= path.substring(path.lastIndexOf('/') + 1);
98
+ "
mSrc
=" +
mSrc
ImageModel.java
92
mSrc
= uriImage.getSrc();
98
+ "
mSrc
=" +
mSrc
/packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
SourceLatency.java
220
private String
mSrc
;
226
mSrc
= src;
241
Log.d(TAG,
mSrc
+ ": null cursor in " + formatTime(elapsed)
244
Log.d(TAG,
mSrc
+ ": " + cursor.getCount() + " rows in " + formatTime(elapsed)
247
cursor.registerDataSetObserver(new MyDataSetObserver(
mSrc
, start, cursor));
251
Log.d(TAG,
mSrc
+ ": interrupted");
286
mSrc
= src;
296
Log.d(TAG,
mSrc
+ ", update " + mUpdateCount + ": " + mCursor.getCount()
302
Log.d(TAG,
mSrc
+ ": invalidated");
/packages/apps/Mms/src/com/android/mms/ui/
UriImage.java
63
private String
mSrc
;
110
mSrc
= mPath.substring(mPath.lastIndexOf('/') + 1);
112
if(
mSrc
.startsWith(".") &&
mSrc
.length() > 1) {
113
mSrc
=
mSrc
.substring(1);
120
mSrc
=
mSrc
.replace(' ', '_');
128
mSrc
= null;
166
mSrc
= c.getString(nameIndex)
[
all
...]
/development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/
FoldingLayout.java
97
private float []
mSrc
;
233
mSrc
= new float[NUM_OF_POLY_POINTS];
398
mSrc
[0] = 0;
399
mSrc
[1] = 0;
400
mSrc
[2] = 0;
401
mSrc
[3] = mFoldDrawHeight;
402
mSrc
[4] = mFoldDrawWidth;
403
mSrc
[5] = 0;
404
mSrc
[6] = mFoldDrawWidth;
405
mSrc
[7] = mFoldDrawHeight
[
all
...]
/cts/tests/tests/graphics/src/android/graphics/cts/
ColorMatrixTest.java
24
private final float[]
mSrc
= new float[]{
37
mColorMatrix = new ColorMatrix(
mSrc
);
43
ColorMatrix cM1 = new ColorMatrix(
mSrc
);
45
assertTrue(
mSrc
.length == fA1.length);
46
int len =
mSrc
.length;
49
assertEquals(
mSrc
[i], fA1[i]);
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
XmlDictInputOutput.java
166
private String
mSrc
;
176
mSrc
= null;
183
mSrc
= attrs.getValue(uri, SRC_ATTRIBUTE);
188
ArrayList<WeightedString> bigramList = mAssocMap.get(
mSrc
);
191
mAssocMap.put(
mSrc
, bigramList);
/frameworks/base/core/java/android/widget/
ListPopupWindow.java
[
all
...]
/frameworks/base/libs/hwui/
DisplayListOp.h
872
mBitmap(bitmap),
mSrc
(srcLeft, srcTop, srcRight, srcBottom) {}
875
return renderer.drawBitmap(mBitmap,
mSrc
.left,
mSrc
.top,
mSrc
.right,
mSrc
.bottom,
882
mBitmap, RECT_ARGS(
mSrc
), RECT_ARGS(mLocalBounds));
894
Rect
mSrc
;
[
all
...]
Completed in 2044 milliseconds