Searched defs:out (Results 151 - 175 of 185) sorted by relevance

12345678

/frameworks/base/core/java/android/net/
H A DUri.java645 * Parses an authority out of the given URI string.
682 * Parses a path out of this given URI string.
1036 // Parse out user info and then port.
1640 * @param out parcel to write to
1643 public static void writeToParcel(Parcel out, Uri uri) { argument
1645 out.writeInt(NULL_TYPE_ID);
1647 uri.writeToParcel(out, 0);
1801 ByteArrayOutputStream out = null;
1833 out = new ByteArrayOutputStream(4);
1836 out
[all...]
/frameworks/base/core/java/android/view/
H A DMotionEvent.java71 * System.out.printf("At time %d:", ev.getHistoricalEventTime(h));
73 * System.out.printf(" pointer %d: (%f,%f)",
77 * System.out.printf("At time %d:", ev.getEventTime());
79 * System.out.printf(" pointer %d: (%f,%f)",
1595 public void writeToParcel(Parcel out, int flags) { argument
1596 out.writeInt(PARCEL_TOKEN_MOTION_EVENT);
1602 out.writeInt(NP);
1603 out.writeInt(NS);
1605 writeBaseToParcel(out);
1607 out
[all...]
H A DViewDebug.java540 final BufferedWriter out = new BufferedWriter(new FileWriter(recyclerDump), 8 * 1024);
544 out.write(name);
545 out.newLine();
548 out.close();
561 final DataOutputStream out = new DataOutputStream(file);
564 out.writeInt(trace.view);
565 out.writeInt(trace.type.ordinal());
566 out.writeInt(trace.position);
567 out.writeInt(trace.indexOnScreen);
568 out
943 profileViewAndChildren(final View view, BufferedWriter out) argument
948 profileViewAndChildren(final View view, BufferedWriter out, boolean root) argument
1242 dumpViewHierarchyWithProperties(Context context, ViewGroup group, BufferedWriter out, int level) argument
1259 dumpViewWithProperties(Context context, View view, BufferedWriter out, int level) argument
1351 dumpViewProperties(Context context, Object view, BufferedWriter out) argument
1357 dumpViewProperties(Context context, Object view, BufferedWriter out, String prefix) argument
1369 exportMethods(Context context, Object view, BufferedWriter out, Class<?> klass, String prefix) argument
1442 exportFields(Context context, Object view, BufferedWriter out, Class<?> klass, String prefix) argument
1517 writeEntry(BufferedWriter out, String prefix, String name, String suffix, Object value) argument
1528 exportUnrolledFlags(BufferedWriter out, FlagToString[] mapping, int intValue, String prefix) argument
1545 exportUnrolledArray(Context context, BufferedWriter out, ExportedProperty property, int[] array, String prefix, String suffix) argument
1613 writeValue(BufferedWriter out, Object value) argument
1624 dumpViewHierarchy(ViewGroup group, BufferedWriter out, int level) argument
1640 dumpView(Object view, BufferedWriter out, int level) argument
[all...]
H A DWindowManager.java307 * Window type: panel that slides out from the status bar
342 * Window type: panel that slides out from the status bar
919 public void writeToParcel(Parcel out, int parcelableFlags) { argument
920 out.writeInt(width);
921 out.writeInt(height);
922 out.writeInt(x);
923 out.writeInt(y);
924 out.writeInt(type);
925 out.writeInt(memoryType);
926 out
[all...]
H A DKeyEvent.java1433 public void writeToParcel(Parcel out, int flags) { argument
1434 out.writeInt(PARCEL_TOKEN_KEY_EVENT);
1436 writeBaseToParcel(out);
1438 out.writeInt(mAction);
1439 out.writeInt(mKeyCode);
1440 out.writeInt(mRepeatCount);
1441 out.writeInt(mMetaState);
1442 out.writeInt(mScanCode);
1443 out.writeInt(mFlags);
1444 out
[all...]
/frameworks/base/core/java/android/widget/
H A DExpandableListView.java1111 public void writeToParcel(Parcel out, int flags) { argument
1112 super.writeToParcel(out, flags);
1113 out.writeList(expandedGroupMetadataList);
H A DListView.java502 * The list is empty. Clear everything out.
1038 // (This can happen if the data changes size out from under us)
1234 // We went over, figure out which height to return. If returnedHeight > maxHeight,
1564 // Clear out old views
2438 * Re-measure a child, and if its height changes, lay it out preserving its
2448 // lay out the view, preserving its top
3296 // figure out which item should be selected based on previously
3333 * parsed them move them out of the children list and into mHeaderViews.
3730 public void writeToParcel(Parcel out, int flags) { argument
3731 super.writeToParcel(out, flag
[all...]
/frameworks/base/libs/binder/
H A DIPCThreadState.cpp74 static const void* printReturnCommand(TextOutput& out, const void* _cmd);
75 static const void* printCommand(TextOutput& out, const void* _cmd);
153 static const void* printBinderTransactionData(TextOutput& out, const void* data) argument
157 out << "target=" << btd->target.ptr << " (cookie " << btd->cookie << ")" << endl
166 static const void* printReturnCommand(TextOutput& out, const void* _cmd) argument
173 out << "BR_ERROR: " << (void*)(*cmd++) << endl;
176 out << "Unknown reply: " << code << endl;
180 out << kReturnStrings[code];
184 out << ": " << indent;
185 cmd = (const int32_t *)printBinderTransactionData(out, cm
222 printCommand(TextOutput& out, const void* _cmd) argument
[all...]
H A DParcel.cpp141 const sp<IBinder>& binder, const flat_binder_object& flat, Parcel* out)
143 return out->writeObject(flat, false);
147 const sp<IBinder>& binder, Parcel* out)
174 return finish_flatten_binder(binder, obj, out);
178 const wp<IBinder>& binder, Parcel* out)
201 return finish_flatten_binder(real, obj, out);
215 return finish_flatten_binder(NULL, obj, out);
221 return finish_flatten_binder(NULL, obj, out);
232 const Parcel& in, sp<IBinder>* out)
239 *out
140 finish_flatten_binder( const sp<IBinder>& binder, const flat_binder_object& flat, Parcel* out) argument
146 flatten_binder(const sp<ProcessState>& proc, const sp<IBinder>& binder, Parcel* out) argument
177 flatten_binder(const sp<ProcessState>& proc, const wp<IBinder>& binder, Parcel* out) argument
231 unflatten_binder(const sp<ProcessState>& proc, const Parcel& in, sp<IBinder>* out) argument
250 unflatten_binder(const sp<ProcessState>& proc, const Parcel& in, wp<IBinder>* out) argument
[all...]
/frameworks/base/libs/surfaceflinger_client/
H A DSurface.cpp611 // if we still don't have a buffer here, we probably ran out of memory
935 android_native_buffer_t* out; local
936 status_t err = dequeueBuffer(&out);
939 sp<GraphicBuffer> backBuffer(GraphicBuffer::getSelf(out));
950 // figure out if we can copy the frontbuffer back
/frameworks/base/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.cpp48 "out of range returned by %s in %s\n", callingFunc, calledFunc);\
167 LOGV("\tLVM_ERROR : EffectQueryEffect index out of range %d", index);
2557 LVM_INT16 *out = (LVM_INT16 *)outBuffer->raw; local
/frameworks/base/media/libstagefright/
H A DOggExtractor.cpp159 MediaBuffer **out, const ReadOptions *options) {
160 *out = NULL;
191 *out = packet;
390 status_t MyVorbisExtractor::readNextPacket(MediaBuffer **out) { argument
391 *out = NULL;
469 *out = buffer;
515 *out = buffer;
731 uint8_t *out = (uint8_t *)buffer; local
760 out[j++] = (accum >> 16);
762 if (j < outLen) { out[
158 read( MediaBuffer **out, const ReadOptions *options) argument
[all...]
H A DMPEG4Extractor.cpp1528 MediaBuffer **out, const ReadOptions *options) {
1533 *out = NULL;
1671 *out = mBuffer;
1709 *out = clone;
1775 *out = mBuffer;
1527 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Dpred_inter.cpp366 uint8 *out, int blkwidth, int blkheight)
391 prev_pix = (pix4 << 24) & 0xFF000000; /* mask out byte belong to previous word */
393 *((uint32*)out) = result; /* write 4 bytes */
394 out += 4;
398 out += out_offset;
412 prev_pix = (pix4 << 16) & 0xFFFF0000; /* mask out byte belong to previous word */
414 *((uint32*)out) = result; /* write 4 bytes */
415 out += 4;
419 out += out_offset;
432 prev_pix = (pix4 << 8) & 0xFFFFFF00; /* mask out byt
365 CreateAlign(uint8 *ref, int picwidth, int y_pos, uint8 *out, int blkwidth, int blkheight) argument
445 CreatePad(uint8 *ref, int picwidth, int picheight, int x_pos, int y_pos, uint8 *out, int blkwidth, int blkheight) argument
547 HorzInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dx) argument
837 HorzInterp2MC(int *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dx) argument
996 HorzInterp3MC(uint8 *in, int inpitch, int *out, int outpitch, int blkwidth, int blkheight) argument
1061 VertInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dy) argument
1364 VertInterp2MC(uint8 *in, int inpitch, int *out, int outpitch, int blkwidth, int blkheight) argument
1430 VertInterp3MC(int *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dy) argument
1589 DiagonalInterpMC(uint8 *in1, uint8 *in2, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight) argument
1932 FullPelMC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight) argument
2021 uint8 *ref, *out; local
2113 uint8 *ref, *out; local
2162 uint8 *ref, *out; local
2204 int32 *out; local
[all...]
/frameworks/base/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_comp.cpp191 uint8 *out, int blkwidth, int blkheight)
216 prev_pix = (pix4 << 24) & 0xFF000000; /* mask out byte belong to previous word */
218 *((uint32*)out) = result; /* write 4 bytes */
219 out += 4;
223 out += out_offset;
236 prev_pix = (pix4 << 16) & 0xFFFF0000; /* mask out byte belong to previous word */
238 *((uint32*)out) = result; /* write 4 bytes */
239 out += 4;
243 out += out_offset;
255 prev_pix = (pix4 << 8) & 0xFFFFFF00; /* mask out byt
190 eCreateAlign(uint8 *ref, int picpitch, int y_pos, uint8 *out, int blkwidth, int blkheight) argument
268 eHorzInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dx) argument
558 eHorzInterp2MC(int *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dx) argument
717 eHorzInterp3MC(uint8 *in, int inpitch, int *out, int outpitch, int blkwidth, int blkheight) argument
782 eVertInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dy) argument
1085 eVertInterp2MC(uint8 *in, int inpitch, int *out, int outpitch, int blkwidth, int blkheight) argument
1151 eVertInterp3MC(int *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dy) argument
1310 eDiagonalInterpMC(uint8 *in1, uint8 *in2, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight) argument
1653 eFullPelMC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight) argument
1842 uint8 *ref, *out; local
1935 uint8 *ref, *out; local
1985 uint8 *ref, *out; local
2028 int32 *out; local
[all...]
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/base/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp444 AString out;
447 out.append(", ");
449 out.append(StringPrintf("%llu", frameSizes.itemAt(i)));
451 LOGV("sizes = [%s]", out.c_str());
482 MediaBuffer **out, const ReadOptions *options) {
483 *out = NULL;
509 *out = frame;
575 *out = buffer;
481 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/media/libstagefright/rtsp/
H A DMyHandler.h1181 static bool MakeURL(const char *baseURL, const char *url, AString *out) { argument
1182 out->clear();
1191 out->setTo(url);
1197 out->setTo(baseURL);
1198 out->append(url);
1203 out->setTo(baseURL, slashPos - baseURL);
1205 out->setTo(baseURL);
1208 out->append("/");
1209 out->append(url);
/frameworks/base/opengl/libagl/
H A Dprimitives.cpp600 // being culled out. So it's okay to light the vertices here, even though
873 vertex_t* out[2][MAX_CLIPPING_PLANES + MAX_VERTICES + 2]; local
895 vertex_t** const ovl = &out[outi][0];
961 vertex_t** const ovl = &out[outi][0];
/frameworks/base/services/java/com/android/server/
H A DProcessStats.java437 // This is a possible way to filter out processes that
556 private long[] getCpuSpeedTimes(long[] out) { argument
557 long[] tempTimes = out;
560 if (out == null) {
579 if (localLOGV && out == null) {
588 if (out == null) {
589 out = new long[speed];
592 System.arraycopy(tempTimes, 0, out, 0, speed);
594 return out;
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp634 ResTable_config* out)
637 if (out) out->mcc = 0;
658 if (out) out->mcc = d;
666 ResTable_config* out)
669 if (out) out->mcc = 0;
690 if (out) out
633 getMccName(const char* name, ResTable_config* out) argument
665 getMncName(const char* name, ResTable_config* out) argument
704 getLocaleName(const char* fileName, ResTable_config* out) argument
746 getScreenLayoutSizeName(const char* name, ResTable_config* out) argument
779 getScreenLayoutLongName(const char* name, ResTable_config* out) argument
802 getOrientationName(const char* name, ResTable_config* out) argument
822 getUiModeTypeName(const char* name, ResTable_config* out) argument
845 getUiModeNightName(const char* name, ResTable_config* out) argument
868 getDensityName(const char* name, ResTable_config* out) argument
930 getTouchscreenName(const char* name, ResTable_config* out) argument
950 getKeysHiddenName(const char* name, ResTable_config* out) argument
977 getKeyboardName(const char* name, ResTable_config* out) argument
997 getNavHiddenName(const char* name, ResTable_config* out) argument
1021 getNavigationName(const char* name, ResTable_config* out) argument
1044 getScreenSizeName(const char* name, ResTable_config* out) argument
1080 getVersionName(const char* name, ResTable_config* out) argument
[all...]
H A DImages.cpp451 // Figure out the number of rows and columns in the N-patch
694 png_bytep out = outRows[j]; local
742 *out++ = idx;
817 png_bytep out = outRows[j]; local
825 *out++ = rr;
827 *out++ = (png_byte) (rr * 0.2126f + gg * 0.7152f + bb * 0.0722f);
830 *out++ = aa;
/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java75 // TODO: i18n -- grab these out of resources.
101 // TODO: i18n -- grab these out of resources.
885 // Clean out all data structures.
1375 // Only write these if they are out of date.
1379 // Just always write these... they are likely out of date.
1569 // Otherwise clear out this default list since we will populate it later with
1652 XmlSerializer out = new FastXmlSerializer();
1653 out.setOutput(fos, "utf-8");
1654 out.startDocument(null, true);
1655 out
1983 writePendingOperationLocked(PendingOperation op, Parcel out) argument
[all...]
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp98 // Find out how many vertices we need to transform
821 * @param out an ETC1 compressed version of the data.
825 jobject in, jint validPixelMask, jobject out) {
831 BufferHelper outB(env, out);
832 if (inB.checkPointer("in") && outB.checkPointer("out")) {
836 env->ThrowNew(gIAEClass, "out's remaining data < ENCODED_BLOCK_SIZE");
849 * @param out a pointer to a ETC_DECODED_BLOCK_SIZE array of bytes that represent a
854 jobject in, jobject out){
856 BufferHelper outB(env, out);
857 if (inB.checkPointer("in") && outB.checkPointer("out")) {
824 etc1_encodeBlock(JNIEnv *env, jclass clazz, jobject in, jint validPixelMask, jobject out) argument
853 etc1_decodeBlock(JNIEnv *env, jclass clazz, jobject in, jobject out) argument
883 etc1_encodeImage(JNIEnv *env, jclass clazz, jobject in, jint width, jint height, jint pixelSize, jint stride, jobject out) argument
915 etc1_decodeImage(JNIEnv *env, jclass clazz, jobject in, jobject out, jint width, jint height, jint pixelSize, jint stride) argument
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DRenderScript.java156 native void nProgramFragmentStoreBegin(int in, int out); argument
164 native int nProgramRasterCreate(int in, int out, boolean pointSmooth, boolean lineSmooth, boolean pointSprite); argument

Completed in 8264 milliseconds

12345678