OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mProfileData
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java
68
private ProfileData
mProfileData
= new ProfileData();
135
mProfileData
.addSample(lines);
148
mProfileData
.dumpToFile(filename);
152
mProfileData
.reset();
171
mProfileData
.addSample(stacks.get(i));
/frameworks/base/core/java/android/view/
HardwareRenderer.java
865
float[]
mProfileData
;
935
mProfileData
= new float[maxProfileFrames * PROFILE_FRAME_DATA_COUNT];
936
for (int i = 0; i <
mProfileData
.length; i += PROFILE_FRAME_DATA_COUNT) {
937
mProfileData
[i] =
mProfileData
[i + 1] =
mProfileData
[i + 2] = -1;
942
mProfileData
= null;
996
for (int i = 0; i <
mProfileData
.length; i += PROFILE_FRAME_DATA_COUNT) {
997
if (
mProfileData
[i] < 0) {
1000
pw.printf("\t%3.2f\t%3.2f\t%3.2f\n",
mProfileData
[i], mProfileData[i + 1]
[
all
...]
Completed in 250 milliseconds