Searched defs:out (Results 226 - 250 of 259) sorted by relevance

1234567891011

/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java86 // TODO: i18n -- grab these out of resources.
112 // TODO: i18n -- grab these out of resources.
958 // Clean out all data structures.
1444 // Only write these if they are out of date.
1448 // Just always write these... they are likely out of date.
1668 // Otherwise clear out this default list since we will populate it later with
1751 XmlSerializer out = new FastXmlSerializer();
1752 out.setOutput(fos, "utf-8");
1753 out.startDocument(null, true);
1754 out
2096 writePendingOperationLocked(PendingOperation op, Parcel out) argument
[all...]
H A DIntent.java1660 * is moved out of the stopped state). The data contains the name of the package.
2080 * <p>Broadcast Action: The user has switched the phone into or out of Airplane Mode. One or
3244 * explicit user action has caused their activity to be moved out of the
3319 * broadcasts the receivers are not automatically hoisted out of the
6622 public void writeToParcel(Parcel out, int flags) { argument
6623 out.writeString(mAction);
6624 Uri.writeToParcel(out, mData);
6625 out.writeString(mType);
6626 out.writeInt(mFlags);
6627 out
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManager.java373 * Window type: panel that slides out from the status bar
414 * Window type: panel that slides out from over the status bar
442 * Window type: panel that slides out from under the status bar
769 /** Window flag: Enable touches to slide out of a window into neighboring
774 * Touches can slide out of the window but they cannot necessarily slide
1339 public void writeToParcel(Parcel out, int parcelableFlags) { argument
1340 out.writeInt(width);
1341 out.writeInt(height);
1342 out.writeInt(x);
1343 out
[all...]
H A DMotionEvent.java96 * System.out.printf("At time %d:", ev.getHistoricalEventTime(h));
98 * System.out.printf(" pointer %d: (%f,%f)",
102 * System.out.printf("At time %d:", ev.getEventTime());
104 * System.out.printf(" pointer %d: (%f,%f)",
3155 public void writeToParcel(Parcel out, int flags) { argument
3156 out.writeInt(PARCEL_TOKEN_MOTION_EVENT);
3157 nativeWriteToParcel(mNativePtr, out);
3374 throw new IllegalArgumentException("Axis out of range.");
3427 throw new IllegalArgumentException("Axis out of range.");
H A DKeyEvent.java494 /** Key code constant: Zoom out key. */
1883 * not considered modifier keys. Consequently, this function specifically masks out
2898 public void writeToParcel(Parcel out, int flags) { argument
2899 out.writeInt(PARCEL_TOKEN_KEY_EVENT);
2901 out.writeInt(mDeviceId);
2902 out.writeInt(mSource);
2903 out.writeInt(mAction);
2904 out.writeInt(mKeyCode);
2905 out.writeInt(mRepeatCount);
2906 out
[all...]
H A DViewRootImpl.java1096 System.out.println("======================================");
1097 System.out.println("performTraversals -- after measure");
1109 System.out.println("======================================");
1110 System.out.println("performTraversals");
1353 // window, waiting until we can finish laying out this window
1717 // start out transparent
1740 System.out.println("======================================");
1741 System.out.println("performTraversals -- after setFrame");
1886 Log.v(TAG, "Laying out " + host + " to (" +
1912 * Figures out th
4893 executeCommand(String command, String parameters, ParcelFileDescriptor out) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java238 public void dumpViewHierarchyWithProperties(BufferedWriter out, int level); argument
H A DWebView.java56 * through a history, zoom in and out, perform text searches and more.</p>
1043 * {@link WebSettings#getUseWideViewPort()} is true, it zooms out all the
1402 * <li>a street type (Road, Circle, etc), either spelled out or
1405 * <li>a state or territory, either spelled out or two-letter abbr</li>
1674 * Gets whether this WebView can be zoomed out.
1676 * @return true if this WebView can be zoomed out
1699 * Performs zoom out in this WebView.
1701 * @return true if zoom out succeeds, false if no zoom changes
1722 public void dumpViewHierarchyWithProperties(BufferedWriter out, int level) { argument
1723 mProvider.dumpViewHierarchyWithProperties(out, leve
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java296 public void writeToParcel(Parcel out, int flags) { argument
297 out.writeInt(TAG);
298 out.writeInt(this.viewId);
299 out.writeInt(this.emptyViewId);
746 public void writeToParcel(Parcel out, int flags) { argument
747 out.writeInt(TAG);
748 out.writeInt(this.viewId);
749 out.writeString(this.methodName);
1008 public void writeToParcel(Parcel out, int flags) { argument
1009 out
[all...]
H A DAbsListView.java642 * Used for determining when to cancel out of overscroll.
1220 * standard scrollbars. Fast scrollers shown in this way will not fade out and will
1244 * fade out when not in use.
1566 public void writeToParcel(Parcel out, int flags) { argument
1567 super.writeToParcel(out, flags);
1568 out.writeLong(selectedId);
1569 out.writeLong(firstId);
1570 out.writeInt(viewTop);
1571 out.writeInt(position);
1572 out
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java1258 public void writeToParcel(Parcel out, int flags) { argument
1259 super.writeToParcel(out, flags);
1260 out.writeInt(expandedMenuItemId);
1261 out.writeInt(isOverflowOpen ? 1 : 0);
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp96 // Find out how many vertices we need to transform
828 * @param out an ETC1 compressed version of the data.
832 jobject in, jint validPixelMask, jobject out) {
838 BufferHelper outB(env, out);
839 if (inB.checkPointer("in") && outB.checkPointer("out")) {
843 doThrowIAE(env, "out's remaining data < ENCODED_BLOCK_SIZE");
856 * @param out a pointer to a ETC_DECODED_BLOCK_SIZE array of bytes that represent a
861 jobject in, jobject out){
863 BufferHelper outB(env, out);
864 if (inB.checkPointer("in") && outB.checkPointer("out")) {
831 etc1_encodeBlock(JNIEnv *env, jclass clazz, jobject in, jint validPixelMask, jobject out) argument
860 etc1_decodeBlock(JNIEnv *env, jclass clazz, jobject in, jobject out) argument
890 etc1_encodeImage(JNIEnv *env, jclass clazz, jobject in, jint width, jint height, jint pixelSize, jint stride, jobject out) argument
922 etc1_decodeImage(JNIEnv *env, jclass clazz, jobject in, jobject out, jint width, jint height, jint pixelSize, jint stride) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DDevicePolicyManagerService.java237 void writeToXml(XmlSerializer out) argument
239 out.startTag(null, "policies");
240 info.writePoliciesToXml(out);
241 out.endTag(null, "policies");
243 out.startTag(null, "password-quality");
244 out.attribute(null, "value", Integer.toString(passwordQuality));
245 out.endTag(null, "password-quality");
247 out.startTag(null, "min-password-length");
248 out.attribute(null, "value", Integer.toString(minimumPasswordLength));
249 out
[all...]
/frameworks/base/services/java/com/android/server/net/
H A DNetworkPolicyManagerService.java1288 XmlSerializer out = new FastXmlSerializer();
1289 out.setOutput(fos, "utf-8");
1290 out.startDocument(null, true);
1292 out.startTag(null, TAG_POLICY_LIST);
1293 writeIntAttribute(out, ATTR_VERSION, VERSION_LATEST);
1294 writeBooleanAttribute(out, ATTR_RESTRICT_BACKGROUND, mRestrictBackground);
1300 out.startTag(null, TAG_NETWORK_POLICY);
1301 writeIntAttribute(out, ATTR_NETWORK_TEMPLATE, template.getMatchRule());
1304 out.attribute(null, ATTR_SUBSCRIBER_ID, subscriberId);
1308 out
2105 writeIntAttribute(XmlSerializer out, String name, int value) argument
2119 writeLongAttribute(XmlSerializer out, String name, long value) argument
2129 writeBooleanAttribute(XmlSerializer out, String name, boolean value) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DSettings.java234 // < 0 means we couldn't assign a userid; fall out and return
427 // If this is not a system app, it starts out stopped.
1845 private void readPermissionsLPw(HashMap<String, BasePermission> out, XmlPullParser parser) argument
1876 out.put(bp.name, bp);
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp881 ResTable_config* out)
884 if (out) out->mcc = 0;
905 if (out) out->mcc = d;
913 ResTable_config* out)
916 if (out) out->mcc = 0;
935 if (out) {
936 out
880 getMccName(const char* name, ResTable_config* out) argument
912 getMncName(const char* name, ResTable_config* out) argument
949 getLocaleName(const char* fileName, ResTable_config* out) argument
991 getLayoutDirectionName(const char* name, ResTable_config* out) argument
1013 getScreenLayoutSizeName(const char* name, ResTable_config* out) argument
1046 getScreenLayoutLongName(const char* name, ResTable_config* out) argument
1069 getOrientationName(const char* name, ResTable_config* out) argument
1089 getUiModeTypeName(const char* name, ResTable_config* out) argument
1122 getUiModeNightName(const char* name, ResTable_config* out) argument
1145 getDensityName(const char* name, ResTable_config* out) argument
1217 getTouchscreenName(const char* name, ResTable_config* out) argument
1237 getKeysHiddenName(const char* name, ResTable_config* out) argument
1264 getKeyboardName(const char* name, ResTable_config* out) argument
1284 getNavHiddenName(const char* name, ResTable_config* out) argument
1308 getNavigationName(const char* name, ResTable_config* out) argument
1331 getScreenSizeName(const char* name, ResTable_config* out) argument
1366 getSmallestScreenWidthDpName(const char* name, ResTable_config* out) argument
1391 getScreenWidthDpName(const char* name, ResTable_config* out) argument
1414 getScreenHeightDpName(const char* name, ResTable_config* out) argument
1437 getVersionName(const char* name, ResTable_config* out) argument
[all...]
H A DImages.cpp586 // Figure out the number of rows and columns in the N-patch
829 png_bytep out = outRows[j]; local
877 *out++ = idx;
952 png_bytep out = outRows[j]; local
960 *out++ = rr;
962 *out++ = (png_byte) (rr * 0.2126f + gg * 0.7152f + bb * 0.0722f);
965 *out++ = aa;
1346 // Actually write out to the new png
/frameworks/native/libs/binder/
H A DParcel.cpp146 const sp<IBinder>& binder, const flat_binder_object& flat, Parcel* out)
148 return out->writeObject(flat, false);
152 const sp<IBinder>& binder, Parcel* out)
179 return finish_flatten_binder(binder, obj, out);
183 const wp<IBinder>& binder, Parcel* out)
206 return finish_flatten_binder(real, obj, out);
220 return finish_flatten_binder(NULL, obj, out);
226 return finish_flatten_binder(NULL, obj, out);
237 const Parcel& in, sp<IBinder>* out)
244 *out
145 finish_flatten_binder( const sp<IBinder>& binder, const flat_binder_object& flat, Parcel* out) argument
151 flatten_binder(const sp<ProcessState>& proc, const sp<IBinder>& binder, Parcel* out) argument
182 flatten_binder(const sp<ProcessState>& proc, const wp<IBinder>& binder, Parcel* out) argument
236 unflatten_binder(const sp<ProcessState>& proc, const Parcel& in, sp<IBinder>* out) argument
255 unflatten_binder(const sp<ProcessState>& proc, const Parcel& in, wp<IBinder>* out) argument
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp197 ostringstream out; local
199 out << '[' << _l << ", " << _u << ']';
201 return out.str();
632 // are laid out on a diagonal starting from the upper left corner. With
1358 ostringstream out; local
1360 out << _n << '/' << _d;
1362 return out.str();
1455 ostringstream out; local
1462 out << ", ";
1464 out << i
1479 ostringstream out; local
[all...]
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp431 Allocation *out) {
433 rsrForEach(rsc, sc, target, in, out, NULL, 0, NULL);
438 Allocation *out,
441 rsrForEach(rsc, sc, target, in, out, usr, 0, NULL);
446 Allocation *out,
450 rsrForEach(rsc, sc, target, in, out, usr, 0, call);
455 Allocation *out,
459 rsrForEach(rsc, sc, target, in, out, usr, usrLen, NULL);
464 Allocation *out,
469 rsrForEach(rsc, sc, target, in, out, us
429 SC_ForEach_SAA(Script *target, Allocation *in, Allocation *out) argument
436 SC_ForEach_SAAU(Script *target, Allocation *in, Allocation *out, const void *usr) argument
444 SC_ForEach_SAAUS(Script *target, Allocation *in, Allocation *out, const void *usr, const RsScriptCall *call) argument
453 SC_ForEach_SAAUL(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen) argument
462 SC_ForEach_SAAULS(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen, const RsScriptCall *call) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRouter.java1812 * @param out a List to fill with the routes in this category. If this parameter is
1818 public List<RouteInfo> getRoutes(List<RouteInfo> out) { argument
1819 if (out == null) {
1820 out = new ArrayList<RouteInfo>();
1822 out.clear();
1829 out.add(route);
1832 return out;
/frameworks/base/core/java/android/os/
H A DBatteryStats.java728 public abstract boolean getNextHistoryLocked(HistoryItem out); argument
734 public abstract boolean getNextOldHistoryLocked(HistoryItem out); argument
879 new String[] {"in", "out", "emergency", "off"}),
1031 private final static void formatTimeRaw(StringBuilder out, long seconds) { argument
1034 out.append(days);
1035 out.append("d ");
1041 out.append(hours);
1042 out.append("h ");
1048 out.append(mins);
1049 out
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DPagedView.java205 // dimensions such that when we are zoomed out, the view is not clipped
386 * out pages.
594 // zoom out (and scale down), the view is still contained in the parent
890 // Find out which screens are visible; as an optimization we only call draw on them
1174 // If we're only allowing edge swipes, we break out early if the down event wasn't
1288 // exceed). Used to find out how much extra wallpaper we need for the over scroll effect
1887 public void writeToParcel(Parcel out, int flags) { argument
1888 super.writeToParcel(out, flags);
1889 out.writeInt(currentPage);
1960 // Fade the indicator out
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java1162 public void writeToParcel(Parcel out, int flags) { argument
1163 super.writeToParcel(out, flags);
1164 out.writeInt(position);
1165 out.writeParcelable(adapterState, flags);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h1042 // Code snippets that were lifted up out of threadLoop()
1140 // PlaybackThread needs to find out if master-muted, it checks it's local
1159 // Code snippets that are temporarily lifted up out of threadLoop() until the merge
1973 AudioStreamOut(AudioHwDevice *dev, audio_stream_out_t *out) : argument
1974 audioHwDev(dev), stream(out) {}

Completed in 4411 milliseconds

1234567891011