Home
last modified time | relevance | path

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

12345678910>>...65

/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/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/
DSimSlotStateTest.java75 SimSlotState state = SimSlotState.getCurrentState(); in testEmptySlots() local
77 assertEquals(0, state.numActiveSlots); in testEmptySlots()
78 assertEquals(0, state.numActiveSims); in testEmptySlots()
79 assertEquals(0, state.numActiveEsims); in testEmptySlots()
87 SimSlotState state = SimSlotState.getCurrentState(); in testSingleSim_nullSlot() local
89 assertEquals(0, state.numActiveSlots); in testSingleSim_nullSlot()
90 assertEquals(0, state.numActiveSims); in testSingleSim_nullSlot()
91 assertEquals(0, state.numActiveEsims); in testSingleSim_nullSlot()
99 SimSlotState state = SimSlotState.getCurrentState(); in testSingleSim_inactiveSlot() local
101 assertEquals(0, state.numActiveSlots); in testSingleSim_inactiveSlot()
[all …]
/frameworks/base/libs/input/
DSpriteController.cpp132 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) { in doUpdateSprites()
133 update.state.surfaceWidth = update.state.icon.bitmap.getInfo().width; in doUpdateSprites()
134 update.state.surfaceHeight = update.state.icon.bitmap.getInfo().height; in doUpdateSprites()
135 update.state.surfaceDrawn = false; in doUpdateSprites()
136 update.state.surfaceVisible = false; in doUpdateSprites()
137 update.state.surfaceControl = obtainSurface( in doUpdateSprites()
138 update.state.surfaceWidth, update.state.surfaceHeight); in doUpdateSprites()
139 if (update.state.surfaceControl != NULL) { in doUpdateSprites()
150 if (update.state.surfaceControl == nullptr) { in doUpdateSprites()
154 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/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 …]
DrsMesh.cpp26 mHal.state.primitives = nullptr; in Mesh()
27 mHal.state.primitivesCount = 0; in Mesh()
28 mHal.state.indexBuffers = nullptr; in Mesh()
29 mHal.state.indexBuffersCount = 0; in Mesh()
30 mHal.state.vertexBuffers = nullptr; in Mesh()
31 mHal.state.vertexBuffersCount = 0; in Mesh()
42 mHal.state.primitivesCount = primitivesCount; in Mesh()
43 mHal.state.indexBuffersCount = primitivesCount; in Mesh()
44 mHal.state.primitives = new RsPrimitive[mHal.state.primitivesCount]; in Mesh()
45 mHal.state.indexBuffers = new Allocation *[mHal.state.indexBuffersCount]; in Mesh()
[all …]
/frameworks/base/startop/iorap/src/com/google/android/startop/iorap/
DEventSequenceValidator.java100 private State state = State.INIT; field in EventSequenceValidator
105 if (state == State.UNKNOWN) { in onIntentStarted()
111 if (state != State.INIT && in onIntentStarted()
112 state != State.INTENT_FAILED && in onIntentStarted()
113 state != State.ACTIVITY_CANCELLED && in onIntentStarted()
114 state != State.ACTIVITY_FINISHED && in onIntentStarted()
115 state != State.REPORT_FULLY_DRAWN) { in onIntentStarted()
117 String.format("Cannot transition from %s to %s", state, State.INTENT_STARTED)); in onIntentStarted()
123 Log.d(TAG, String.format("Transition from %s to %s", state, State.INTENT_STARTED)); in onIntentStarted()
124 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 …]
DBasicPipeline.java40 public void initBuffers(VrState state) { in initBuffers() argument
45 public void setupTriangles(VrState state) { in setupTriangles() argument
46 Matrix m = state.mTransform.getMatrix(Transform.VOLUME_SPACE, Transform.SCREEN_SPACE); in setupTriangles()
47 state.mCubeVolume.transform(m, state.mCubeScreen); in setupTriangles()
51 public void rasterizeTriangles(VrState state) { in rasterizeTriangles() argument
53 scriptC_rasterize = new ScriptC_rasterize(state.mRs); in rasterizeTriangles()
55 scriptC_rasterize.set_index(state.mCubeScreen.mIndex); in rasterizeTriangles()
56 scriptC_rasterize.set_vert(state.mCubeScreen.mVert); in rasterizeTriangles()
58 scriptC_rasterize.invoke_setup_triangles(state.mImgWidth, state.mImgHeight); in rasterizeTriangles()
60 scriptC_rasterize.forEach_render_z(state.mzRangeFullAllocation); in rasterizeTriangles()
[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 …]
DPrecomputedTextPerfTest.java55 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in testCreate_NoStyled_Hyphenation() local
61 while (state.keepRunning()) { in testCreate_NoStyled_Hyphenation()
62 state.pauseTiming(); in testCreate_NoStyled_Hyphenation()
64 state.resumeTiming(); in testCreate_NoStyled_Hyphenation()
72 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in testCreate_NoStyled_NoHyphenation() local
78 while (state.keepRunning()) { in testCreate_NoStyled_NoHyphenation()
79 state.pauseTiming(); in testCreate_NoStyled_NoHyphenation()
81 state.resumeTiming(); in testCreate_NoStyled_NoHyphenation()
89 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in testCreate_NoStyled_Hyphenation_WidthOnly() local
95 while (state.keepRunning()) { in testCreate_NoStyled_Hyphenation_WidthOnly()
[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 …]
DPendingIntentPerfTest.java59 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in create() local
60 while (state.keepRunning()) { in create()
61 state.pauseTiming(); in create()
62 state.resumeTiming(); in create()
67 state.pauseTiming(); in create()
69 state.resumeTiming(); in create()
79 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in createWithCancelFlag() local
80 while (state.keepRunning()) { in createWithCancelFlag()
81 state.pauseTiming(); in createWithCancelFlag()
84 state.resumeTiming(); in createWithCancelFlag()
[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/av/media/libstagefright/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/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/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DFlashlightTile.java55 BooleanState state = new BooleanState(); in newTileState() local
56 state.handlesLongClick = false; in newTileState()
57 return state; in newTileState()
95 protected void handleUpdateState(BooleanState state, Object arg) { in handleUpdateState() argument
96 if (state.slash == null) { in handleUpdateState()
97 state.slash = new SlashState(); in handleUpdateState()
99 state.label = mHost.getContext().getString(R.string.quick_settings_flashlight_label); in handleUpdateState()
100 state.secondaryLabel = ""; in handleUpdateState()
101 state.stateDescription = ""; in handleUpdateState()
103 state.icon = mIcon; in handleUpdateState()
[all …]
/frameworks/rs/tests/lldb/
Drun_tests.py380 def _launch_emulator(state): argument
392 android = state.android
393 if state.user_specified_device:
394 if android.device_with_substring_exists(state.user_specified_device):
397 state.user_specified_device)
402 assert state.emu_cmd
403 EMU_PROC = subprocess.Popen(state.emu_cmd.split(),
408 log.info('Launching emulator with command line {0}'.format(state.emu_cmd))
443 output = android.adb('push {0} {1}'.format(state.lldb_server_path_host,
444 state.lldb_server_path_device))
[all …]
/frameworks/base/apct-tests/perftests/core/src/android/os/
DParcelPerfTest.java58 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in timeSetDataPosition() local
59 while (state.keepRunning()) { in timeSetDataPosition()
66 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in timeGetDataPosition() local
67 while (state.keepRunning()) { in timeGetDataPosition()
74 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in timeSetDataSize() local
75 while (state.keepRunning()) { in timeSetDataSize()
82 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in timeGetDataSize() local
83 while (state.keepRunning()) { in timeGetDataSize()
90 final BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); in timeSetDataCapacity() local
91 while (state.keepRunning()) { in timeSetDataCapacity()
[all …]

12345678910>>...65