Home
last modified time | relevance | path

Searched refs:state (Results 1 – 25 of 1779) sorted by relevance

12345678910>>...72

/frameworks/base/core/tests/coretests/src/android/text/method/
DBackspaceTest.java61 private void backspace(final EditorState state, int modifiers) { in backspace() argument
62 mTextView.setText(state.mText, BufferType.EDITABLE); in backspace()
64 mTextView.setSelection(state.mSelectionStart, state.mSelectionEnd); in backspace()
70 state.mText = mTextView.getText(); in backspace()
71 state.mSelectionStart = mTextView.getSelectionStart(); in backspace()
72 state.mSelectionEnd = mTextView.getSelectionEnd(); in backspace()
77 EditorState state = new EditorState(); in testCombiningEnclosingKeycaps() local
79 state.setByString("'1' U+E0101 U+20E3 |"); in testCombiningEnclosingKeycaps()
80 backspace(state, 0); in testCombiningEnclosingKeycaps()
81 state.assertEquals("|"); in testCombiningEnclosingKeycaps()
[all …]
DForwardDeleteTest.java59 private void forwardDelete(final EditorState state, int modifiers) { in forwardDelete() argument
60 mTextView.setText(state.mText, BufferType.EDITABLE); in forwardDelete()
62 mTextView.setSelection(state.mSelectionStart, state.mSelectionEnd); in forwardDelete()
68 state.mText = mTextView.getText(); in forwardDelete()
69 state.mSelectionStart = mTextView.getSelectionStart(); in forwardDelete()
70 state.mSelectionEnd = mTextView.getSelectionEnd(); in forwardDelete()
75 EditorState state = new EditorState(); in testCombiningEnclosingKeycaps() local
78 state.setByString("| '1' U+20E3 U+20E3"); in testCombiningEnclosingKeycaps()
79 forwardDelete(state, 0); in testCombiningEnclosingKeycaps()
80 state.assertEquals("|"); in testCombiningEnclosingKeycaps()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DPackageVerificationStateTest.java31 PackageVerificationState state = new PackageVerificationState(null); in testPackageVerificationState_OnlyRequiredVerifier_AllowedInstall() local
32 state.setRequiredVerifierUid(REQUIRED_UID); in testPackageVerificationState_OnlyRequiredVerifier_AllowedInstall()
35 state.isVerificationComplete()); in testPackageVerificationState_OnlyRequiredVerifier_AllowedInstall()
37 state.setVerifierResponse(REQUIRED_UID, PackageManager.VERIFICATION_ALLOW); in testPackageVerificationState_OnlyRequiredVerifier_AllowedInstall()
40 state.isVerificationComplete()); in testPackageVerificationState_OnlyRequiredVerifier_AllowedInstall()
43 state.isInstallAllowed()); in testPackageVerificationState_OnlyRequiredVerifier_AllowedInstall()
47 PackageVerificationState state = new PackageVerificationState(null); in testPackageVerificationState_OnlyRequiredVerifier_DeniedInstall() local
48 state.setRequiredVerifierUid(REQUIRED_UID); in testPackageVerificationState_OnlyRequiredVerifier_DeniedInstall()
51 state.isVerificationComplete()); in testPackageVerificationState_OnlyRequiredVerifier_DeniedInstall()
53 state.setVerifierResponse(REQUIRED_UID, PackageManager.VERIFICATION_REJECT); in testPackageVerificationState_OnlyRequiredVerifier_DeniedInstall()
[all …]
/frameworks/native/services/vibratorservice/benchmarks/
DVibratorHalControllerBenchmarks.cpp40 void TearDown(State& state) override { turnVibratorOff(state); } in TearDown() argument
51 auto getOtherArg(const State& state, std::size_t index) const { return state.range(index + 0); } in getOtherArg() argument
53 bool hasCapabilities(vibrator::Capabilities&& query, State& state) { in hasCapabilities() argument
56 state.SkipWithError(result.errorMessage()); in hasCapabilities()
65 void turnVibratorOff(State& state) { in turnVibratorOff() argument
66 checkHalResult(halCall<void>(mController, [](auto hal) { return hal->off(); }), state); in turnVibratorOff()
70 bool checkHalResult(const vibrator::HalResult<R>& result, State& state) { in checkHalResult() argument
72 state.SkipWithError(result.errorMessage()); in checkHalResult()
88 (State& state){code} BENCHMARK_REGISTER_F(fixt, test) \
93 for (auto _ : state) {
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tileimpl/
DQSTileViewImplTest.kt65 val state = QSTile.State() in testSecondaryLabelNotModified_unavailable() constant
67 state.state = Tile.STATE_UNAVAILABLE in testSecondaryLabelNotModified_unavailable()
68 state.secondaryLabel = testString in testSecondaryLabelNotModified_unavailable()
70 tileView.changeState(state) in testSecondaryLabelNotModified_unavailable()
72 assertThat(state.secondaryLabel as CharSequence).isEqualTo(testString) in testSecondaryLabelNotModified_unavailable()
77 val state = QSTile.BooleanState() in testSecondaryLabelNotModified_booleanInactive() constant
79 state.state = Tile.STATE_INACTIVE in testSecondaryLabelNotModified_booleanInactive()
80 state.secondaryLabel = testString in testSecondaryLabelNotModified_booleanInactive()
82 tileView.changeState(state) in testSecondaryLabelNotModified_booleanInactive()
84 assertThat(state.secondaryLabel as CharSequence).isEqualTo(testString) in testSecondaryLabelNotModified_booleanInactive()
[all …]
/frameworks/base/cmds/incident_helper/tests/
DCpuFreqParser_test.cpp60 CpuFreqProto::Stats::TimeInState* state; in TEST_F() local
64 state = cpu0->add_times(); in TEST_F()
65 state->set_state_khz(307200); in TEST_F()
66 state->set_time_jiffy(23860761); in TEST_F()
67 state = cpu0->add_times(); in TEST_F()
68 state->set_state_khz(384000); in TEST_F()
69 state->set_time_jiffy(83124); in TEST_F()
70 state = cpu0->add_times(); in TEST_F()
71 state->set_state_khz(768000); in TEST_F()
72 state->set_time_jiffy(22652); in TEST_F()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/
DServiceStateStatsTest.java125 CellularServiceState state = captor.getValue(); in conclude_inService() local
126 assertEquals(TelephonyManager.NETWORK_TYPE_LTE, state.voiceRat); in conclude_inService()
127 assertEquals(TelephonyManager.NETWORK_TYPE_LTE, state.dataRat); in conclude_inService()
128 assertEquals(ServiceState.ROAMING_TYPE_NOT_ROAMING, state.voiceRoamingType); in conclude_inService()
129 assertEquals(ServiceState.ROAMING_TYPE_NOT_ROAMING, state.dataRoamingType); in conclude_inService()
130 assertFalse(state.isEndc); in conclude_inService()
131 assertEquals(0, state.simSlotIndex); in conclude_inService()
132 assertFalse(state.isMultiSim); in conclude_inService()
133 assertEquals(CARRIER1_ID, state.carrierId); in conclude_inService()
134 assertEquals(100L, state.totalTimeMillis); in conclude_inService()
[all …]
DSimSlotStateTest.java77 SimSlotState state = SimSlotState.getCurrentState(); in testEmptySlots() local
80 assertEquals(0, state.numActiveSlots); in testEmptySlots()
81 assertEquals(0, state.numActiveSims); in testEmptySlots()
82 assertEquals(0, state.numActiveEsims); in testEmptySlots()
91 SimSlotState state = SimSlotState.getCurrentState(); in testSingleSim_nullSlot() local
94 assertEquals(0, state.numActiveSlots); in testSingleSim_nullSlot()
95 assertEquals(0, state.numActiveSims); in testSingleSim_nullSlot()
96 assertEquals(0, state.numActiveEsims); in testSingleSim_nullSlot()
105 SimSlotState state = SimSlotState.getCurrentState(); in testSingleSim_inactiveSlot() local
108 assertEquals(0, state.numActiveSlots); in testSingleSim_inactiveSlot()
[all …]
/frameworks/base/libs/input/
DSpriteController.cpp127 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) { in doUpdateSprites()
128 update.state.surfaceWidth = update.state.icon.width(); in doUpdateSprites()
129 update.state.surfaceHeight = update.state.icon.height(); in doUpdateSprites()
130 update.state.surfaceDrawn = false; in doUpdateSprites()
131 update.state.surfaceVisible = false; in doUpdateSprites()
132 update.state.surfaceControl = obtainSurface( in doUpdateSprites()
133 update.state.surfaceWidth, update.state.surfaceHeight); in doUpdateSprites()
134 if (update.state.surfaceControl != NULL) { in doUpdateSprites()
145 if (update.state.surfaceControl == nullptr) { in doUpdateSprites()
149 if (update.state.wantSurfaceVisible()) { in doUpdateSprites()
[all …]
/frameworks/base/core/java/android/text/method/
DMetaKeyKeyListener.java347 int state = content.getSpanFlags(what); in press() local
349 if (state == PRESSED) in press()
351 else if (state == RELEASED) in press()
353 else if (state == USED) in press()
355 else if (state == LOCKED) in press()
435 public static long resetLockedMeta(long state) { in resetLockedMeta() argument
436 if ((state & META_CAP_LOCKED) != 0) { in resetLockedMeta()
437 state &= ~META_SHIFT_MASK; in resetLockedMeta()
439 if ((state & META_ALT_LOCKED) != 0) { in resetLockedMeta()
440 state &= ~META_ALT_MASK; in resetLockedMeta()
[all …]
/frameworks/native/services/surfaceflinger/tests/unittests/
DSurfaceFlinger_SetDisplayStateTest.cpp38 DisplayState state; in TEST_F() local
39 state.what = DisplayState::eLayerStackChanged; in TEST_F()
40 state.token = displayToken; in TEST_F()
41 state.layerStack = 456; in TEST_F()
46 uint32_t flags = mFlinger.setDisplayStateLocked(state); in TEST_F()
69 DisplayState state; in TEST_F() local
70 state.what = 0; in TEST_F()
71 state.token = display.token(); in TEST_F()
76 uint32_t flags = mFlinger.setDisplayStateLocked(state); in TEST_F()
102 DisplayState state; in TEST_F() local
[all …]
/frameworks/rs/
DrsType.cpp55 if (mHal.state.lodCount) { in clear()
56 delete [] mHal.state.lodDimX; in clear()
57 delete [] mHal.state.lodDimY; in clear()
58 delete [] mHal.state.lodDimZ; in clear()
60 if (mHal.state.arrayCount > 0) { in clear()
61 delete [] mHal.state.arrays; in clear()
75 uint32_t oldLODCount = mHal.state.lodCount; in compute()
77 uint32_t l2x = rsFindHighBit(mHal.state.dimX) + 1; in compute()
78 uint32_t l2y = rsFindHighBit(mHal.state.dimY) + 1; in compute()
79 uint32_t l2z = rsFindHighBit(mHal.state.dimZ) + 1; in compute()
[all …]
DrsProgram.cpp32 mHal.state.inputElementsCount++; in Program()
35 mHal.state.constantsCount++; in Program()
38 mHal.state.texturesCount++; in Program()
42 mTextures = new ObjectBaseRef<Allocation>[mHal.state.texturesCount]; in Program()
43 mSamplers = new ObjectBaseRef<Sampler>[mHal.state.texturesCount]; in Program()
44 mInputElements = new ObjectBaseRef<Element>[mHal.state.inputElementsCount]; in Program()
45 mConstantTypes = new ObjectBaseRef<Type>[mHal.state.constantsCount]; in Program()
46 mConstants = new ObjectBaseRef<Allocation>[mHal.state.constantsCount]; in Program()
48 mHal.state.textures = new Allocation*[mHal.state.texturesCount]; in Program()
49 mHal.state.samplers = new Sampler*[mHal.state.texturesCount]; in Program()
[all …]
/frameworks/base/startop/iorap/src/com/google/android/startop/iorap/
DEventSequenceValidator.java101 private State state = State.INIT; field in EventSequenceValidator
106 if (state == State.UNKNOWN) { in onIntentStarted()
112 if (state != State.INIT && in onIntentStarted()
113 state != State.INTENT_FAILED && in onIntentStarted()
114 state != State.ACTIVITY_CANCELLED && in onIntentStarted()
115 state != State.ACTIVITY_FINISHED && in onIntentStarted()
116 state != State.REPORT_FULLY_DRAWN) { in onIntentStarted()
118 String.format("Cannot transition from %s to %s", state, State.INTENT_STARTED)); in onIntentStarted()
124 Log.i(TAG, String.format("Transition from %s to %s", state, State.INTENT_STARTED)); in onIntentStarted()
125 state = State.INTENT_STARTED; in onIntentStarted()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/power/
DPowerUITest.java349 BatteryStateSnapshotWrapper state = new BatteryStateSnapshotWrapper(); in testMaybeShowHybridWarning() local
350 BatteryStateSnapshot lastState = state.get(); in testMaybeShowHybridWarning()
351 state.mTimeRemainingMillis = Duration.ofHours(2).toMillis(); in testMaybeShowHybridWarning()
352 state.mBatteryLevel = 15; in testMaybeShowHybridWarning()
354 mPowerUI.maybeShowHybridWarning(state.get(), lastState); in testMaybeShowHybridWarning()
360 lastState = state.get(); in testMaybeShowHybridWarning()
361 state.mBatteryLevel = 1; in testMaybeShowHybridWarning()
362 state.mTimeRemainingMillis = Duration.ofMinutes(10).toMillis(); in testMaybeShowHybridWarning()
364 mPowerUI.maybeShowHybridWarning(state.get(), lastState); in testMaybeShowHybridWarning()
370 lastState = state.get(); in testMaybeShowHybridWarning()
[all …]
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
DVrPipline1.java36 public void initBuffers(VrState state) { in initBuffers() argument
37 super.initBuffers(state); in initBuffers()
55 private void creatOpacityAllocation(VrState state) { in creatOpacityAllocation() argument
56 scriptC_vr.set_opacity(state.mMaterial.getOpacityAllocation(state.mRs)); in creatOpacityAllocation()
59 private void creatColorMapAllocation(VrState state) { in creatColorMapAllocation() argument
60 scriptC_vr.set_color_map(state.mMaterial.getColorMapAllocation(state.mRs)); in creatColorMapAllocation()
64 public void setupTriangles(VrState state) { in setupTriangles() argument
65 super.setupTriangles(state); in setupTriangles()
69 Matrix m = state.mTransform.getMatrix(Transform.SCREEN_SPACE, Transform.VOLUME_SPACE); in setupTriangles()
73 scriptC_vr = new ScriptC_vr(state.mRs); in setupTriangles()
[all …]
/frameworks/av/media/libmediatranscoding/transcoder/benchmark/
DMediaTranscoderBenchmark.cpp106 static void TranscodeMediaFile(benchmark::State& state, const std::string& srcFileName, in TranscodeMediaFile() argument
135 state.SkipWithError("Unable to open source file"); in TranscodeMediaFile()
139 state.SkipWithError("Unable to open destination file"); in TranscodeMediaFile()
143 for (auto _ : state) { in TranscodeMediaFile()
149 state.SkipWithError("Unable to configure transcoder source"); in TranscodeMediaFile()
155 state.SkipWithError("Unable to configure transcoder destination"); in TranscodeMediaFile()
166 state.SkipWithError("Source track format does not have MIME type"); in TranscodeMediaFile()
173 state.counters[PARAM_VIDEO_FRAME_RATE] = benchmark::Counter( in TranscodeMediaFile()
177 state.SkipWithError("Video source track format does not have width"); in TranscodeMediaFile()
181 state.SkipWithError("Video source track format does not have height"); in TranscodeMediaFile()
[all …]
/frameworks/base/apct-tests/perftests/core/src/android/text/
DStaticLayoutPerfTest.java70 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in testCreate_FixedText_NoStyle_Greedy_NoHyphenation() local
72 while (state.keepRunning()) { in testCreate_FixedText_NoStyle_Greedy_NoHyphenation()
82 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in testCreate_RandomText_NoStyled_Greedy_NoHyphenation() local
83 while (state.keepRunning()) { in testCreate_RandomText_NoStyled_Greedy_NoHyphenation()
84 state.pauseTiming(); in testCreate_RandomText_NoStyled_Greedy_NoHyphenation()
86 state.resumeTiming(); in testCreate_RandomText_NoStyled_Greedy_NoHyphenation()
97 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in testCreate_RandomText_NoStyled_Greedy_Hyphenation() local
98 while (state.keepRunning()) { in testCreate_RandomText_NoStyled_Greedy_Hyphenation()
99 state.pauseTiming(); in testCreate_RandomText_NoStyled_Greedy_Hyphenation()
101 state.resumeTiming(); in testCreate_RandomText_NoStyled_Greedy_Hyphenation()
[all …]
/frameworks/base/apct-tests/perftests/core/src/android/app/
DResourcesPerfTest.java59 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in getValue() local
61 while (state.keepRunning()) { in getValue()
68 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in getFrameworkValue() local
70 while (state.keepRunning()) { in getFrameworkValue()
78 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in getValueString() local
80 while (state.keepRunning()) { in getValueString()
87 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in getFrameworkStringValue() local
89 while (state.keepRunning()) { in getFrameworkStringValue()
96 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in getValueManyConfigurations() local
98 while (state.keepRunning()) { in getValueManyConfigurations()
[all …]
/frameworks/av/media/codecs/amrnb/dec/src/
Dph_disp.cpp208 Word16 ph_disp_reset(ph_dispState *state) in ph_disp_reset() argument
212 if (state == (ph_dispState *) NULL) in ph_disp_reset()
219 state->gainMem[i] = 0; in ph_disp_reset()
221 state->prevState = 0; in ph_disp_reset()
222 state->prevCbGain = 0; in ph_disp_reset()
223 state->lockFull = 0; in ph_disp_reset()
224 state->onset = 0; /* assume no onset in start */ in ph_disp_reset()
299 void ph_disp_lock(ph_dispState *state) in ph_disp_lock() argument
301 state->lockFull = 1; in ph_disp_lock()
376 void ph_disp_release(ph_dispState *state) in ph_disp_release() argument
[all …]
/frameworks/base/core/java/android/nfc/
DNfcActivityManager.java164 for (NfcActivityState state : mActivities) { in findActivityState()
165 if (state.activity == activity) { in findActivityState()
166 return state; in findActivityState()
174 NfcActivityState state = findActivityState(activity); in getActivityState() local
175 if (state == null) { in getActivityState()
176 state = new NfcActivityState(activity); in getActivityState()
177 mActivities.add(state); in getActivityState()
179 return state; in getActivityState()
183 for (NfcActivityState state : mActivities) { in findResumedActivityState()
184 if (state.resumed) { in findResumedActivityState()
[all …]
/frameworks/rs/driver/
DrsdShader.cpp54 StateBasedKey *state = mStateBasedShaders.at(i); in ~RsdShader() local
55 if (state->mShaderID) { in ~RsdShader()
56 glDeleteShader(state->mShaderID); in ~RsdShader()
58 delete state; in ~RsdShader()
85 for (uint32_t ct = 0; ct < mRSProgram->mHal.state.texturesCount; ct ++) { in getExistingState()
87 if (mRSProgram->mHal.state.textureTargets[ct] == RS_TEXTURE_2D) { in getExistingState()
88 Allocation *a = mRSProgram->mHal.state.textures[ct]; in getExistingState()
89 if (a && a->mHal.state.surfaceTextureID) { in getExistingState()
107 StateBasedKey *state = getExistingState(); in getStateBasedShaderID() local
108 if (state != nullptr) { in getStateBasedShaderID()
[all …]
/frameworks/rs/tests/lldb/tests/
Drun_test.py46 def _test_pre_run(state): argument
62 assert state.test
63 assert state.bundle
66 log.info('running: {0}'.format(state.name))
69 state.bundle.delete_ndk_cache()
74 target_name = state.test.get_bundle_target()
79 target_name = state.test.bundle_target[state.bundle_type]
88 state.pid = state.bundle.launch(target_name)
89 if not state.pid:
92 state.android.kill_servers()
[all …]
/frameworks/native/services/powermanager/benchmarks/
DPowerHalControllerBenchmarks.cpp44 static void runBenchmark(benchmark::State& state, HalResult<T> (PowerHalController::*fn)(Args0...), in runBenchmark() argument
46 while (state.KeepRunning()) { in runBenchmark()
49 state.PauseTiming(); in runBenchmark()
50 if (ret.isFailed()) state.SkipWithError("Power HAL request failed"); in runBenchmark()
51 state.ResumeTiming(); in runBenchmark()
56 static void runCachedBenchmark(benchmark::State& state, in runCachedBenchmark() argument
62 while (state.KeepRunning()) { in runCachedBenchmark()
64 state.PauseTiming(); in runCachedBenchmark()
66 state.SkipWithError("Power HAL request failed"); in runCachedBenchmark()
70 state.ResumeTiming(); in runCachedBenchmark()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DOomAdjuster.java608 final ProcessStateRecord state = app.mState; in performUpdateOomAdjLSP() local
609 final boolean wasCached = state.isCached(); in performUpdateOomAdjLSP()
610 final int oldAdj = state.getCurRawAdj(); in performUpdateOomAdjLSP()
614 state.getSetProcState()); in performUpdateOomAdjLSP()
615 final int oldCap = state.getSetCapability(); in performUpdateOomAdjLSP()
616 state.setContainsCycle(false); in performUpdateOomAdjLSP()
617 state.setProcStateChanged(false); in performUpdateOomAdjLSP()
618 state.resetCachedInfo(); in performUpdateOomAdjLSP()
625 if (!success || (wasCached == state.isCached() && oldAdj != ProcessList.INVALID_ADJ in performUpdateOomAdjLSP()
627 && oldCap == state.getCurCapability() in performUpdateOomAdjLSP()
[all …]

12345678910>>...72