Searched refs:out (Results 426 - 450 of 484) sorted by relevance

<<11121314151617181920

/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java200 OutputStream out = resolver.openOutputStream(uri);
201 image.compress(Bitmap.CompressFormat.PNG, 100, out);
202 out.flush();
203 out.close();
473 // Flash the flash view in and out quickly
/frameworks/base/services/java/com/android/server/
H A DThrottleService.java1018 BufferedWriter out = null;
1020 out = new BufferedWriter(new FileWriter(getDataFile()), 256);
1021 out.write(builder.toString());
1026 if (out != null) {
1028 out.close();
1035 // clean out any old data first. If we fail to read we don't want old stuff
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java64 * Like ListView, SGV populates from an adapter and recycles views that fall out
1327 // Clear out the views (but don't clear out the layout records or recycler because the data
1595 public void writeToParcel(Parcel out, int flags) { argument
1596 super.writeToParcel(out, flags);
1597 out.writeLong(firstId);
1598 out.writeInt(position);
1599 out.writeInt(topOffset);
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduParser.java1190 ByteArrayOutputStream out = new ByteArrayOutputStream();
1197 out.write(temp);
1201 out.write(temp);
1209 if (out.size() > 0) {
1210 return out.toByteArray();
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java167 adb install -r -f out/target/product/passion/data/app/AndroidTests.apk
553 // Something seriously wrong. Bail out
843 Slog.i(TAG, "Verification timed out for " + args.packageURI.toString());
1643 String[] out = new String[names.length];
1648 out[i] = ps != null && ps.realName != null ? ps.realName : names[i];
1651 return out;
1655 String[] out = new String[names.length];
1660 out[i] = cur != null ? cur : names[i];
1663 return out;
1738 ArrayList<PermissionInfo> out
5105 dumpFilter(PrintWriter out, String prefix, PackageParser.ActivityIntentInfo filter) argument
5303 dumpFilter(PrintWriter out, String prefix, PackageParser.ServiceIntentInfo filter) argument
[all...]
/frameworks/base/core/java/android/widget/
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/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_est.cpp190 uint8 *out; local
197 out = cur - pitch;
200 temp = out[j] - cur[j];
205 out = cur - 1;
206 out -= pitch;
210 temp = *(out += pitch) - *(cur += pitch);
236 /* if turns out to be IDR frame, set video->nal_unit_type to AVC_NALTYPE_IDR */
/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4VIFI_FiltersAPI.h765 *pContext, M4VIFI_ImagePlane* in, M4VIFI_ImagePlane* out);
769 *pContext, M4VIFI_ImagePlane* in, M4VIFI_ImagePlane* out);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLaunchpadActivity.java39 public void writeToParcel(Parcel out, int flags) { argument
40 out.writeString("I am bad");
236 //System.out.println("*** Launchpad is starting: comp=" + intent.component);
468 //System.out.println("Registering: " + mReceiver);
475 //System.out.println("Unregistering: " + mReceiver);
507 //System.out.println("Got receive: " + name);
508 //System.out.println(mNextReceiver + " in " + mExpectedReceivers);
541 // System.out.println("Too many intents received: now at "
545 finishBad("Receive out of order: got " + name + " but expected "
583 //System.out
[all...]
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
H A DMediaPlayerProxyTestCase.java553 public void copyBetweenStreams(InputStream in, OutputStream out) throws IOException { argument
557 out.write(buffer, 0, bytesRead);
/frameworks/wilhelm/src/itf/
H A DIObject.c706 goto out;
726 out:
/frameworks/wilhelm/tests/sandbox/
H A DAndroid.mk346 # commented out because libsndfile is not yet standard
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardHostView.java1259 public void writeToParcel(Parcel out, int flags) { argument
1260 super.writeToParcel(out, flags);
1261 out.writeInt(this.transportState);
1262 out.writeInt(this.appWidgetToShow);
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java174 // Correctly read out the phone entry based on requested provider
199 * (filters out separators.)
1675 // since the whole point of extractNetworkPortionAlt() is to filter out
1862 char[] out = input.toCharArray();
1865 char c = out[i];
1867 out[i] = (char) KEYPAD_MAP.get(c, c);
1870 return new String(out);
1922 * 2) the dialStr should already strip out the separator characters,
2034 // Set the postDialStr to "" to break out of the loop
/frameworks/rs/
H A DrsRuntime.h146 Allocation *out,
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java357 TypedValue out = new TypedValue();
358 mContext.getTheme().resolveAttribute(attrId, out, true);
359 return out.resourceId;
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py37 local_symbols_library_directory = os.path.join(os.getenv('ANDROID_PRODUCT_OUT', 'out'),
39 local_library_directory = os.path.join(os.getenv('ANDROID_PRODUCT_OUT', 'out'),
56 out, err = p.communicate()
63 e.output = str(out) + str(err)
65 return out
113 'out', 'host', 'linux-x86', 'bin', 'adb')
/frameworks/native/libs/ui/
H A DRegion.cpp655 void Region::dump(String8& out, const char* what, uint32_t flags) const argument
666 out.append(buffer);
670 out.append(buffer);
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp1003 // let the decoder figure out the actual width and height (and thus
1671 // were are interested in the specific tag, make sure to clear out
2020 MediaBuffer **out, const ReadOptions *options) {
2025 *out = NULL;
2165 *out = mBuffer;
2203 *out = clone;
2285 *out = mBuffer;
2019 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java263 /** Amount of time (in milliseconds) to animate the fade-in-out transition for
410 * This is set when we have run out of memory, and will either be an empty
587 /** Pulled out of performLayoutAndPlaceSurfacesLockedInner in order to refactor into multiple
891 //This method finds out the index of a window that has the same app token as
975 TAG, "Figuring out where to add app window "
977 // Figure out where the window should go, based on the
1060 // Figure out where window should go, based on layer.
1081 // Figure out this window's ordering relative to the window
1264 // hold everything until we can find out what will happen.
1464 // Figure out th
[all...]
/frameworks/base/docs/html/guide/google/gcm/client-javadoc/
H A Ddefault.css330 #nav li ul.animate-height-out {
331 -webkit-transition: height 0.25s ease-out;
332 -moz-transition: height 0.25s ease-out;
333 transition: height 0.25s ease-out; }
524 -webkit-animation-timing-function: ease-out;
525 -moz-animation-timing-function: ease-out;
526 animation-timing-function: ease-out; }
3351 -webkit-transition: all 0.25s ease-out;
3352 -moz-transition: all 0.25s ease-out;
3353 -ms-transition: all 0.25s ease-out;
[all...]
/frameworks/base/docs/html/guide/google/gcm/server-javadoc/
H A Ddefault.css330 #nav li ul.animate-height-out {
331 -webkit-transition: height 0.25s ease-out;
332 -moz-transition: height 0.25s ease-out;
333 transition: height 0.25s ease-out; }
524 -webkit-animation-timing-function: ease-out;
525 -moz-animation-timing-function: ease-out;
526 animation-timing-function: ease-out; }
3351 -webkit-transition: all 0.25s ease-out;
3352 -moz-transition: all 0.25s ease-out;
3353 -ms-transition: all 0.25s ease-out;
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java692 * Parses an authority out of the given URI string.
729 * Parses a path out of this given URI string.
1083 // Parse out user info and then port.
1782 * @param out parcel to write to
1785 public static void writeToParcel(Parcel out, Uri uri) { argument
1787 out.writeInt(NULL_TYPE_ID);
1789 uri.writeToParcel(out, 0);
/frameworks/base/core/java/android/text/
H A DTextUtils.java981 * are out of range in <code>dest</code>.
1243 SpannableStringBuilder out = new SpannableStringBuilder(okFormat);
1244 out.insert(0, text, 0, ok);
1245 return out;
/frameworks/base/core/java/android/view/
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.");

Completed in 622 milliseconds

<<11121314151617181920