Searched refs:out (Results 276 - 300 of 890) sorted by relevance

<<11121314151617181920>>

/frameworks/av/services/audioflinger/
H A DAudioResamplerSinc.h42 virtual size_t resample(int32_t* out, size_t outFrameCount,
50 size_t resample(int32_t* out, size_t outFrameCount,
55 int32_t* out, uint32_t phase, const int16_t *samples, uint32_t vRL);
/frameworks/base/core/java/android/net/
H A DWifiKey.java88 public void writeToParcel(Parcel out, int flags) { argument
89 out.writeString(ssid);
90 out.writeString(bssid);
/frameworks/base/core/java/android/net/metrics/
H A DDhcpErrorEvent.java74 public void writeToParcel(Parcel out, int flags) { argument
75 out.writeString(ifName);
76 out.writeInt(errorCode);
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java261 if (DEBUG) System.out.println("INFLATING from resource: " + resource);
312 System.out.println("**************************");
313 System.out.println("Creating root: "
315 System.out.println("**************************");
324 System.out.println("-----> start inflating children");
329 System.out.println("-----> done inflating children");
423 if (DEBUG) System.out.println("******** Creating item: " + name);
436 if (DEBUG) System.out.println("Created item is: " + item);
479 System.out.println("Now inflating tag: " + parser.getName());
486 System.out
[all...]
/frameworks/base/core/java/android/view/
H A DInputChannel.java118 * as an out parameter in a binder call.
152 public void writeToParcel(Parcel out, int flags) { argument
153 if (out == null) {
154 throw new IllegalArgumentException("out must not be null");
157 nativeWriteToParcel(out);
/frameworks/base/core/java/com/android/server/backup/
H A DUsageStatsBackupHelper.java39 DataOutputStream out = new DataOutputStream(baos);
41 out.writeInt(UserHandle.USER_SYSTEM);
42 out.write(localUsageStatsManager.getBackupPayload(UserHandle.USER_SYSTEM, key));
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
H A DMessageUtilsTest.java57 SparseArray<String> out = new SparseArray<>();
59 out.put(keys[i], values[i]);
61 return out;
/frameworks/base/graphics/java/android/graphics/
H A DPoint.java116 * @param out The parcel to write the point's coordinates into
119 public void writeToParcel(Parcel out, int flags) { argument
120 out.writeInt(x);
121 out.writeInt(y);
H A DPointF.java125 * @param out The parcel to write the point's coordinates into
128 public void writeToParcel(Parcel out, int flags) { argument
129 out.writeFloat(x);
130 out.writeFloat(y);
/frameworks/base/media/jni/
H A Dandroid_media_ResampleInputStream.cpp93 short out[BUF_SIZE]; local
101 out[i] = (short)(sum >> 16);
105 env->SetByteArrayRegion(jOut, jOutOffset, jNpoints * 2, (jbyte*)out);
/frameworks/base/services/core/java/com/android/server/am/
H A DLaunchWarningWindow.java41 TypedValue out = new TypedValue();
42 getContext().getTheme().resolveAttribute(android.R.attr.alertDialogIcon, out, true);
43 getWindow().setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, out.resourceId);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGetBitmapActivity.java56 FileOutputStream out = new FileOutputStream(
59 b.compress(Bitmap.CompressFormat.PNG, 100, out);
62 out.close();
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DResourceLoadingTest.java58 System.out.println("loadedScene = " + loadedScene);
60 System.out.println("loadedTransition = " + loadedTransition);
62 System.out.println("Problem loading scene resource: " + e);
/frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
H A Dhealing.rs78 float3 out = 4 * getF32_3(src, x, y);
79 out -= getF32_3(src, x - 1, y);
80 out -= getF32_3(src, x + 1, y);
81 out -= getF32_3(src, x, y -1 );
82 out -= getF32_3(src, x, y + 1);
83 return out;
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffWritable.h48 virtual status_t writeData(uint32_t offset, /*out*/EndianOutput* out) const = 0;
/frameworks/base/core/java/android/app/
H A DIWallpaperManager.aidl46 in Rect cropHint, boolean allowBackup, out Bundle extras, int which,
63 out Bundle outParams, int userId);
/frameworks/base/core/java/android/gesture/
H A DGestureStore.java226 DataOutputStream out = null;
236 out = new DataOutputStream((stream instanceof BufferedOutputStream) ? stream :
239 out.writeShort(FILE_FORMAT_VERSION);
241 out.writeInt(maps.size());
249 out.writeUTF(key);
251 out.writeInt(count);
254 examples.get(i).serialize(out);
258 out.flush();
267 if (closeStream) GestureUtils.closeStream(out);
/frameworks/base/core/java/android/text/util/
H A DRfc822Tokenizer.java45 public static void tokenize(CharSequence text, Collection<Rfc822Token> out) { argument
66 out.add(new Rfc822Token(name.toString(),
70 out.add(new Rfc822Token(null,
151 out.add(new Rfc822Token(name.toString(),
155 out.add(new Rfc822Token(null,
172 ArrayList<Rfc822Token> out = new ArrayList<Rfc822Token>();
173 tokenize(text, out);
174 return out.toArray(new Rfc822Token[out.size()]);
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DSparseMappingTable.java294 * Clear out the table, and reset the sequence numbers so future writes
298 // Clear out our table.
312 public void writeToParcel(Parcel out) { argument
313 out.writeInt(mSequence);
314 out.writeInt(mSize);
316 out.writeInt(mTable[i]);
341 // Clear it out
485 * Wipe out all the data.
488 // Clear out mLongs, and prime it with a new array of data
493 // Increment out sequenc
501 writeToParcel(Parcel out) argument
567 writeCompactedLongArray(Parcel out, long[] array, int num) argument
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DNotificationVisibility.java85 public void writeToParcel(Parcel out, int flags) { argument
86 out.writeString(this.key);
87 out.writeInt(this.rank);
88 out.writeInt(this.visible ? 1 : 0);
/frameworks/base/libs/hwui/renderthread/
H A DDrawFrameTask.cpp94 canDrawThisFrame = info.out.canDrawThisFrame;
136 info.out.canDrawThisFrame = false;
139 if (info.out.hasAnimations) {
140 if (info.out.requiresUiRedraw) {
144 // If prepareTextures is false, we ran out of texture cache space
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserRestrictionsUtilsTest.java33 -r out/target/product/hammerhead/data/app/FrameworksServicesTests/FrameworksServicesTests.apk &&
40 Bundle out = UserRestrictionsUtils.nonNull(null);
41 assertNotNull(out);
42 out.putBoolean("a", true); // Should not be Bundle.EMPTY.
56 Bundle out = UserRestrictionsUtils.clone(in);
57 assertNotSame(in, out);
58 DpmTestUtils.assertRestrictions(out, new Bundle());
60 out = UserRestrictionsUtils.clone(null);
61 assertNotNull(out);
62 out
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DPhoneAccountHandle.java138 public void writeToParcel(Parcel out, int flags) { argument
139 mComponentName.writeToParcel(out, flags);
140 out.writeString(mId);
141 mUserHandle.writeToParcel(out, flags);
H A DStatusHints.java116 public void writeToParcel(Parcel out, int flags) { argument
117 out.writeCharSequence(mLabel);
118 out.writeParcelable(mIcon, 0);
119 out.writeParcelable(mExtras, 0);
/frameworks/base/telephony/java/com/android/ims/
H A DImsConferenceState.java52 * "dialing-out" : Focus has dialed out to connect the endpoint to the conference,
73 public static final String STATUS_DIALING_OUT = "dialing-out";
103 public void writeToParcel(Parcel out, int flags) { argument
104 out.writeInt(mParticipants.size());
115 out.writeString(entry.getKey());
116 out.writeParcelable(entry.getValue(), 0);

Completed in 1751 milliseconds

<<11121314151617181920>>