OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stageIndex
(Results
1 - 13
of
13
) sorted by null
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/intents/
CameraIntentsActivity.java
77
private static final String STAGE_INDEX_EXTRA = "
stageIndex
";
149
final int
stageIndex
= getIntent().getIntExtra(STAGE_INDEX_EXTRA, 0);
150
return
stageIndex
;
153
private String getStageString(int
stageIndex
)
155
if (
stageIndex
== STAGE_APP_PICTURE) {
158
if (
stageIndex
== STAGE_APP_VIDEO) {
161
if (
stageIndex
== STAGE_INTENT_PICTURE) {
164
if (
stageIndex
== STAGE_INTENT_VIDEO) {
171
private String getStageIntentString(int
stageIndex
)
173
if (
stageIndex
== STAGE_APP_PICTURE)
[
all
...]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
GyroscopeTestActivity.java
52
private static final String STAGE_INDEX_EXTRA = "
stageIndex
";
78
final int
stageIndex
= getIntent().getIntExtra(STAGE_INDEX_EXTRA, 0);
79
Settings settings = getSettings(
stageIndex
);
82
if (
stageIndex
+ 1 < NUM_STAGES) {
83
setPassButtonGoesToNextStage(
stageIndex
);
102
private Settings getSettings(int
stageIndex
) {
103
switch (
stageIndex
) {
105
return new Settings(
stageIndex
, NUM_STAGES, 0, 0, 1, 2, true);
107
return new Settings(
stageIndex
, NUM_STAGES, 0, 0, -1, 2, false);
109
return new Settings(
stageIndex
, NUM_STAGES, 0, 1, 0, 1, true)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
DynamicsCompressor.cpp
98
void DynamicsCompressor::setEmphasisStageParameters(unsigned
stageIndex
, float gain, float normalizedFrequency /* 0 -> 1 */)
110
ZeroPole& preFilter = m_preFilterPacks[i]->filters[
stageIndex
];
116
ZeroPole& postFilter = m_postFilterPacks[i]->filters[
stageIndex
];
256
for (unsigned
stageIndex
= 0;
stageIndex
< 4; ++
stageIndex
) {
257
m_preFilterPacks[channel]->filters[
stageIndex
].reset();
258
m_postFilterPacks[channel]->filters[
stageIndex
].reset();
DynamicsCompressor.h
110
void setEmphasisStageParameters(unsigned
stageIndex
, float gain, float normalizedFrequency /* 0 -> 1 */);
/external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgramEffects.h
141
int
stageIndex
) = 0;
173
int
stageIndex
);
222
int
stageIndex
) SK_OVERRIDE;
266
int
stageIndex
);
310
int
stageIndex
) SK_OVERRIDE;
GrGLProgramEffects.cpp
267
int
stageIndex
) {
282
openBrace.printf("\t{ // Stage %d: %s\n",
stageIndex
, glEffect->name());
465
int
stageIndex
) {
467
fProgramEffects->emitEffect(fBuilder, stage, key, outColor, inColor,
stageIndex
);
477
int
stageIndex
) {
492
openBrace.printf("\t{ // Stage %d: %s\n",
stageIndex
, glEffect->name());
583
int
stageIndex
) {
585
fProgramEffects->emitEffect(fBuilder, stage, key, outColor, inColor,
stageIndex
);
GrGLShaderBuilder.h
272
int
stageIndex
() const {
GrGLShaderBuilder.cpp
244
out->appendf("_Stage%d", fCodeStage.
stageIndex
());
550
fCodeStage.
stageIndex
());
[
all
...]
/external/skia/src/gpu/gl/
GrGLProgramEffects.h
141
int
stageIndex
) = 0;
173
int
stageIndex
);
222
int
stageIndex
) SK_OVERRIDE;
266
int
stageIndex
);
310
int
stageIndex
) SK_OVERRIDE;
GrGLProgramEffects.cpp
267
int
stageIndex
) {
282
openBrace.printf("\t{ // Stage %d: %s\n",
stageIndex
, glEffect->name());
465
int
stageIndex
) {
467
fProgramEffects->emitEffect(fBuilder, stage, key, outColor, inColor,
stageIndex
);
477
int
stageIndex
) {
492
openBrace.printf("\t{ // Stage %d: %s\n",
stageIndex
, glEffect->name());
583
int
stageIndex
) {
585
fProgramEffects->emitEffect(fBuilder, stage, key, outColor, inColor,
stageIndex
);
GrGLShaderBuilder.h
272
int
stageIndex
() const {
GrGLShaderBuilder.cpp
244
out->appendf("_Stage%d", fCodeStage.
stageIndex
());
550
fCodeStage.
stageIndex
());
[
all
...]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/orientation/
CameraOrientationActivity.java
56
private static final String STAGE_INDEX_EXTRA = "
stageIndex
";
109
final int
stageIndex
= getIntent().getIntExtra(STAGE_INDEX_EXTRA, 0);
110
Settings settings = getSettings(
stageIndex
);
115
if (
stageIndex
+ 1 < mNumCameras * NUM_ORIENTATIONS) {
116
setPassButtonGoesToNextStage(
stageIndex
);
297
final int
stageIndex
=
310
if(counter <
stageIndex
) {
312
// it to current
stageIndex
316
if(counter ==
stageIndex
) {
326
if(counter >
stageIndex
) {
[
all
...]
Completed in 845 milliseconds