Searched refs:force (Results 26 - 50 of 52) sorted by relevance

123

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
H A DBearerData.java453 private static int countAsciiSeptets(CharSequence msg, boolean force) { argument
455 if (force) return msgLen;
504 private static byte[] encode7bitAscii(String msg, boolean force) argument
513 if (force) {
543 private static Gsm7bitCodingResult encode7bitGsm(String msg, int septetOffset, boolean force) argument
563 byte[] fullData = GsmAlphabet.stringToGsm7BitPacked(msg, septetOffset, !force, 0, 0);
574 private static void encode7bitEms(UserData uData, byte[] udhData, boolean force) argument
579 Gsm7bitCodingResult gcr = encode7bitGsm(uData.payloadStr, udhSeptets, force);
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTitleStrip.java332 void updateTextPositions(int position, float positionOffset, boolean force) { argument
335 } else if (!force && positionOffset == mLastKnownPositionOffset) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DLockPatternKeyguardView.java827 private void updateScreen(Mode mode, boolean force) { argument
830 + " last mode=" + mMode + ", force = " + force, new RuntimeException());
836 if (force || mLockScreen == null) {
844 if (force || mUnlockScreen == null || unlockMode != mUnlockScreenMode) {
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp1501 bool force = mCaches.bindMeshBuffer(); local
1502 mCaches.bindPositionVertexPointer(force, 0);
1528 bool force = false; local
1530 force = mCaches.bindMeshBuffer(vbo == 0 ? mCaches.meshBuffer : vbo);
1532 force = mCaches.unbindMeshBuffer();
1535 mCaches.bindPositionVertexPointer(force, vertices);
1537 mCaches.bindTexCoordsVertexPointer(force, texCoords);
1544 bool force = mCaches.unbindMeshBuffer(); local
1545 mCaches.bindPositionVertexPointer(force, vertices);
1547 mCaches.bindTexCoordsVertexPointer(force, texCoord
1552 bool force = mCaches.unbindMeshBuffer(); local
1570 bool force = mCaches.unbindMeshBuffer(); local
1968 bool force = mCaches.unbindMeshBuffer(); local
[all...]
H A DFontRenderer.cpp376 bool force = caches.unbindMeshBuffer(); local
377 caches.bindPositionVertexPointer(force, buffer);
378 caches.bindTexCoordsVertexPointer(force, buffer + offset);
/frameworks/base/core/java/android/view/
H A DSurfaceView.java418 private void updateWindow(boolean force, boolean redrawNeeded) { argument
442 if (force || creating || formatChanged || sizeChanged || visibleChanged
H A DViewRootImpl.java114 * Set this system property to true to force the view hierarchy to render
2666 void updateConfiguration(Configuration config, boolean force) { argument
2688 if (force || mLastConfiguration.diff(config) != 0) {
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java125 boolean forceNewConfig; // force re-create with new config next time
749 public void stopFreezingScreenLocked(boolean force) { argument
750 if (force || frozenBeforeDestroy) {
752 service.mWindowManager.stopAppFreezingScreen(appToken, force);
H A DUsageStatsService.java469 * 'force' is false) so it tries to be quick, without writing to
472 * @params force do an unconditional, synchronous stats flush
476 private void writeStatsToFile(final boolean force, final boolean forceWriteHistoryStats) { argument
491 if (!force) {
H A DActiveServices.java1174 private final void bringDownServiceLocked(ServiceRecord r, boolean force) { argument
1179 if (!force && r.startRequested) {
1183 if (!force) {
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java731 /*package*/ native static final void applyThemeStyle(int theme, int styleRes, boolean force); argument
H A DResources.java690 * the drawable returned is not the requested density, then force it
1091 * <p>The semantics of this function depends on the <var>force</var>
1099 * @param force If true, values in the style resource will always be
1103 public void applyStyle(int resid, boolean force) { argument
1104 AssetManager.applyThemeStyle(mTheme, resid, force);
/frameworks/base/core/java/android/webkit/
H A DZoomManager.java549 private void setZoomScale(float scale, boolean reflowText, boolean force) { argument
564 if (scale != mActualScale || force) {
605 // if the we need to reflow the text then force the VIEW_SIZE_CHANGED
900 // force zoom after mPreviewZoomOnly is set to false so that the
977 // we always force, in case our height changed, in which case we
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java653 * <p>Allows the popup window to force the flag
665 * Allows the popup window to force the flag
1367 * @param force reposition the window even if the specified position
1370 public void update(int x, int y, int width, int height, boolean force) { argument
1387 boolean update = force;
H A DEditor.java3800 public void update(int x, int y, int w, int h, boolean force) { argument
3801 super.update(x, y, w, h, force);
/frameworks/base/services/input/
H A DInputReader.h1773 void sync(nsecs_t when, bool force);
1777 bool filterAxes(bool force);
H A DInputReader.cpp4625 // to apply the necessary force to depress an integrated button below the surface.
6273 sync(rawEvent->when, false /*force*/);
6280 void JoystickInputMapper::sync(nsecs_t when, bool force) { argument
6281 if (!filterAxes(force)) {
6317 bool JoystickInputMapper::filterAxes(bool force) { argument
6318 bool atLeastOneSignificantChange = force;
6322 if (force || hasValueChangedSignificantly(axis.filter,
6328 if (force || hasValueChangedSignificantly(axis.filter,
/frameworks/base/services/java/com/android/server/
H A DWallpaperManagerService.java784 boolean bindWallpaperComponentLocked(ComponentName componentName, boolean force, argument
788 if (!force) {
H A DWifiService.java1734 * @param force {@code true} to force notification to be shown/not-shown,
1739 private void setNotificationVisible(boolean visible, int numNetworks, boolean force, argument
1749 if (!visible && !mNotificationShown && !force) {
/frameworks/base/core/jni/
H A Dandroid_util_AssetManager.cpp818 jboolean force)
821 theme->applyStyle(styleRes, force ? true : false);
815 android_content_AssetManager_applyThemeStyle(JNIEnv* env, jobject clazz, jint themeInt, jint styleRes, jboolean force) argument
/frameworks/base/include/androidfw/
H A DResourceTypes.h1376 status_t applyStyle(uint32_t resID, bool force=false);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1046 protected void updateCarrierLabelVisibility(boolean force) { argument
1061 if (force || mCarrierLabelVisible != makeVisible) {
1344 // Updating the window layout will force an expensive traversal/redraw.
/frameworks/base/media/java/android/media/
H A DAudioService.java403 // mVolumeControlStream is set by VolumePanel to temporarily force the stream type which volume
1124 * @param force If true, set the volume even if the desired volume is same
1131 boolean force,
1150 if (streamState.setIndex(index, device, lastAudible) || force) {
1543 // force reading new top of mSetModeDeathHandlers stack
2310 private void onConfigureSafeVolume(boolean force) { argument
2313 if ((mMcc != mcc) || ((mMcc == 0) && force)) {
1128 setStreamVolumeInt(int streamType, int index, int device, boolean force, boolean lastAudible) argument
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java414 * list or contain windows that need to be force removed.
2335 mInputMonitor.updateInputWindowsLw(false /*force*/);
2417 mInputMonitor.updateInputWindowsLw(false /*force*/);
2538 mInputMonitor.updateInputWindowsLw(true /*force*/);
2901 mInputMonitor.updateInputWindowsLw(true /*force*/);
3037 mInputMonitor.updateInputWindowsLw(true /*force*/);
3742 mInputMonitor.updateInputWindowsLw(true /*force*/);
4330 // immediately force the new one to be displayed. If
4571 mInputMonitor.updateInputWindowsLw(false /*force*/);
4676 boolean unfreezeSurfaceNow, boolean force) {
4675 unsetAppFreezingScreenLocked(AppWindowToken wtoken, boolean unfreezeSurfaceNow, boolean force) argument
4763 stopAppFreezingScreen(IBinder token, boolean force) argument
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp2486 status_t ResTable::Theme::applyStyle(uint32_t resID, bool force) argument
2561 if (force || curEntry->value.dataType == Res_value::TYPE_NULL) {
2572 //ALOGI("Applying style 0x%08x (force=%d) theme %p...\n", resID, force, this);
4078 // escapes, so they can be used to force whitespace into the string.

Completed in 681 milliseconds

123