Searched defs:in (Results 276 - 300 of 410) sorted by relevance

<<11121314151617

/frameworks/base/telecomm/java/android/telecom/
H A DVoicemail.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 * Represents a single voicemail stored in the voicemail content provider.
166 * The identifier of the voicemail in the content provider.
168 * This may be missing in the case of a new {@link Voicemail} that we plan to insert into the
186 /** The timestamp the voicemail was received, in millis since the epoch, zero if not set. */
191 /** Gets the duration of the voicemail in millis, or zero if the field is not set. */
289 public Voicemail createFromParcel(Parcel in) {
290 return new Voicemail(in);
299 private Voicemail(Parcel in) { argument
[all...]
/frameworks/base/tools/aapt2/
H A DXmlDom.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
114 // Insert in sorted order.
169 std::unique_ptr<Node> inflate(std::istream* in, SourceLogger* logger) { argument
181 while (!in->eof()) {
182 in->read(buffer, sizeof(buffer) / sizeof(buffer[0]));
183 if (in->bad() && !in->eof()) {
189 if (XML_Parse(parser, buffer, in->gcount(), in
[all...]
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipProfile.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
67 public SipProfile createFromParcel(Parcel in) {
68 return new SipProfile(in);
311 private SipProfile(Parcel in) { argument
312 mAddress = (Address) in.readSerializable();
313 mProxyAddress = in.readString();
314 mPassword = in.readString();
315 mDomain = in.readString();
316 mProtocol = in
[all...]
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbCmasInfo.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 * Supported values for each element are defined in TIA-1149-0-1 (CMAS over CDMA) and
31 // CMAS message class (in GSM/UMTS message identifier or CDMA service category).
57 // CMAS alert category (in CDMA type 1 elements record).
101 // CMAS response type (in CDMA type 1 elements record).
103 /** CMAS response type: Take shelter in place. */
121 /** CMAS response type: Evaluate the information in this message (not for public warnings). */
133 // 4-bit CMAS severity (in GSM/UMTS message identifier or CDMA type 1 elements record).
148 // CMAS urgency (in GS
208 SmsCbCmasInfo(Parcel in) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DModelInterpreter.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
32 // Also in ATChannel.java
166 ModelInterpreter (InputStream in, OutputStream out) argument
168 mIn = in;
266 // no reconnect in this case
/frameworks/rs/cpp/
H A DScriptIntrinsics.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
82 void ScriptIntrinsicBlend::forEachClear(sp<Allocation> in, sp<Allocation> out) { argument
83 if (in->getType()->getElement()->isCompatible(mElement) == false ||
85 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend");
87 Script::forEach(0, in, out, nullptr, 0);
90 void ScriptIntrinsicBlend::forEachSrc(sp<Allocation> in, sp<Allocation> out) { argument
91 if (in->getType()->getElement()->isCompatible(mElement) == false ||
93 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend");
95 Script::forEach(1, in, ou
98 forEachDst(sp<Allocation> in, sp<Allocation> out) argument
106 forEachSrcOver(sp<Allocation> in, sp<Allocation> out) argument
114 forEachDstOver(sp<Allocation> in, sp<Allocation> out) argument
122 forEachSrcIn(sp<Allocation> in, sp<Allocation> out) argument
130 forEachDstIn(sp<Allocation> in, sp<Allocation> out) argument
138 forEachSrcOut(sp<Allocation> in, sp<Allocation> out) argument
146 forEachDstOut(sp<Allocation> in, sp<Allocation> out) argument
154 forEachSrcAtop(sp<Allocation> in, sp<Allocation> out) argument
162 forEachDstAtop(sp<Allocation> in, sp<Allocation> out) argument
170 forEachXor(sp<Allocation> in, sp<Allocation> out) argument
179 forEachMultiply(sp<Allocation> in, sp<Allocation> out) argument
188 forEachAdd(sp<Allocation> in, sp<Allocation> out) argument
196 forEachSubtract(sp<Allocation> in, sp<Allocation> out) argument
221 setInput(sp<Allocation> in) argument
258 forEach(sp<Allocation> in, sp<Allocation> out) argument
361 setInput(sp<Allocation> in) argument
402 setInput(sp<Allocation> in) argument
623 setInput(sp<Allocation> in) argument
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicBlend.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
93 extern "C" int rsdIntrinsicBlend_K(uchar4 *out, uchar4 const *in, int slot,
119 uchar4 *in = (uchar4 *)info->inPtr[0]; local
127 if (rsdIntrinsicBlend_K(out, in, info->slot, x1, x2) >= 0)
138 for (;x1 < x2; x1++, out++, in++) {
139 *out = *in;
150 rsdIntrinsicBlendSrcOver_K(out, in, len);
153 in += len << 3;
157 for (;x1 < x2; x1++, out++, in
[all...]
/frameworks/rs/java/tests/ScriptGroupTest/src/com/android/rs/sgtest/
H A DFilters.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
41 Object in, Type outputType);
42 public void forEach(Allocation in, Allocation out); argument
47 Object in, Type outputType) {
48 return builder.addKernel(getKernelID(), outputType, in);
63 void forEach(Allocation in, Allocation out) { s.forEach_(in, out); }
78 public void forEach(Allocation in, Allocation out) { s_mat.forEach_colormatrix(in, ou argument
40 asyncLaunch(ScriptGroup.Builder2 builder, Object in, Type outputType) argument
46 asyncLaunch(ScriptGroup.Builder2 builder, Object in, Type outputType) argument
92 forEach(Allocation in, Allocation out) argument
106 forEach(Allocation in, Allocation out) argument
127 asyncLaunch(ScriptGroup.Builder2 builder, Object in, Type outputType) argument
133 forEach(Allocation in, Allocation out) argument
152 forEach(Allocation in, Allocation out) argument
211 forEach(Allocation in, Allocation out) argument
228 forEach(Allocation in, Allocation out) argument
243 forEach(Allocation in, Allocation out) argument
276 forEach(Allocation in, Allocation out) argument
[all...]
/frameworks/support/v4/java/android/support/v4/media/
H A DMediaMetadataCompat.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
50 * The duration of the media in ms. A negative duration indicates that the
101 * The number of tracks in the media's original source.
300 private MediaMetadataCompat(Parcel in) { argument
301 mBundle = in.readBundle();
305 * Returns true if the given key is contained in the metadata
308 * @return true if the key exists in this metadata, false otherwise
420 // Fill in the next empty bit of text
467 * Get the number of fields in thi
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewBasicTest.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
228 assertEquals("uuid in layout manager should be preserved properly", mlm.mUuid,
353 public LayoutManagerSavedState(Parcel in) { argument
354 mUuid = in.readString();
374 public LayoutManagerSavedState createFromParcel(Parcel in) {
375 return new LayoutManagerSavedState(in);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
721 int msg, int ext1, int ext2, const Parcel *in) {
723 notifyListener_l(msg, ext1, ext2, in);
727 int msg, int ext1, int ext2, const Parcel *in) {
746 // The renderer has stopped the sink at the end in order to play out
771 sendEvent(msg, ext1, ext2, in);
802 // in response, NuPlayerDriver has the right state
720 notifyListener( int msg, int ext1, int ext2, const Parcel *in) argument
726 notifyListener_l( int msg, int ext1, int ext2, const Parcel *in) argument
/frameworks/av/services/audioflinger/
H A DAudioMixer.h6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
35 // FIXME This is actually unity gain, which might not be max in future, expressed in U.12
90 // parameter 'value' is the new sample rate in Hz.
209 const void* in; // current location in buffer member in struct:android::AudioMixer::track_t
346 * in AudioMixerOps.h). The template parameters are as follows:
358 const TI *in, TA *aux, bool ramp, AudioMixer::track_t *t);
373 void *in, audio_format_
[all...]
H A DAudioResamplerDyn.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
123 // copy in the input data into the head (impulse+halfNumCoefs) of the buffer.
127 const TI* const in, const size_t inputIndex)
131 head[i] = in[inputIndex*CHANNELS + i];
135 // advance the impulse pointer, and load in data into the head (impulse+halfNumCoefs)
139 const TI* const in, const size_t inputIndex)
148 readAgain<CHANNELS>(impulse, halfNumCoefs, in, inputIndex);
356 // determine the number of polyphases in the filterbank.
395 mPhaseFraction %= phaseWrapLimit; // should not do anything, but just in cas
126 readAgain(TI*& impulse, const int halfNumCoefs, const TI* const in, const size_t inputIndex) argument
138 readAdvance(TI*& impulse, const int halfNumCoefs, const TI* const in, const size_t inputIndex) argument
556 const TI* const in = reinterpret_cast<const TI*>(mBuffer.raw); local
[all...]
H A DAudioResamplerSinc.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
59 * These coeficients are computed with the "fir" utility found in
141 int32_t mulRL(int left, int32_t in, uint32_t vRL) argument
146 asm( "smultb %[out], %[in], %[vRL] \n"
148 : [in]"%r"(in), [vRL]"r"(vRL)
151 asm( "smultt %[out], %[in], %[vRL] \n"
153 : [in]"%r"(in), [vR
164 mulAdd(int16_t in, int32_t v, int32_t a) argument
325 int16_t const * const in = mBuffer.i16; local
372 read( int16_t*& impulse, uint32_t& phaseFraction, const int16_t* in, size_t inputIndex) argument
[all...]
/frameworks/base/core/java/android/app/
H A DSearchableInfo.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
59 // TODO how should these be documented for the developer, in a more structured way than
60 // the current long wordy javadoc in SearchManager.java ?
65 // flags in the searchMode attribute
157 * Checks whether the text in the query field should come from the suggestion intent data.
166 * Checks whether the text in the query field should come from the suggestion title.
175 * Gets the resource id of the description string to use for this source in system search
208 * This can be overriden in any given suggestion using the column
225 * This can be overriden in an
433 ActionKeyInfo(Parcel in) argument
810 SearchableInfo(Parcel in) argument
[all...]
H A DVoiceInteractor.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
45 * to retrieve the interface, if the activity is currently involved in a voice interaction.
450 * Return the index that was supplied in the constructor.
476 * extras Bundle in the option, so modifications to it will directly modify the
477 * extras in the option.
483 Option(Parcel in) { argument
484 mLabel = in.readCharSequence();
485 mIndex = in.readInt();
486 mSynonyms = in
856 Prompt(Parcel in) argument
[all...]
/frameworks/base/core/java/android/content/
H A DUndoManager.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
50 * undo/redo them without needing to impact edits in other objects; while
194 UndoOwner restoreOwner(Parcel in) { argument
195 int idx = in.readInt();
198 String tag = in.readString();
199 int opCount = in.readInt();
263 * Perform redo of last/top <var>count</var> undo states in the transient redo stack.
467 * Check whether there is an {@link UndoOperation} in the current {@link #beginUpdate}
472 * @return Returns true if there is a matching operation in th
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
126 * <p>Built-in keys exposed by the Android SDK are always prefixed with {@code "android."};
227 // this should be in sync with HAL_PIXEL_FORMAT_BLOB defined in graphics.h
298 public CameraMetadataNative createFromParcel(Parcel in) {
300 metadata.readFromParcel(in);
358 public void readFromParcel(Parcel in) { argument
359 nativeReadFromParcel(in);
364 * tags in camer
[all...]
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTrigger.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
81 /** Maximum buffering capacity in ms if supportsCaptureTransition() is true */
90 /** Returns the trigger (key phrase) capture in the binary data of the
117 public ModuleProperties createFromParcel(Parcel in) {
118 return ModuleProperties.fromParcel(in);
126 private static ModuleProperties fromParcel(Parcel in) { argument
127 int id = in.readInt();
128 String implementor = in.readString();
129 String description = in
293 fromParcel(Parcel in) argument
399 fromParcel(Parcel in) argument
533 fromParcel(Parcel in) argument
693 fromParcel(Parcel in) argument
751 fromParcel(Parcel in) argument
838 fromParcel(Parcel in) argument
926 fromParcel(Parcel in) argument
1055 fromParcel(Parcel in) argument
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
49 * "buckets" in time. Internally it stores data in {@code long} series for more
122 public NetworkStatsHistory(Parcel in) { argument
123 bucketDuration = in.readLong();
124 bucketStart = readLongArray(in);
125 activeTime = readLongArray(in);
126 rxBytes = readLongArray(in);
127 rxPackets = readLongArray(in);
148 NetworkStatsHistory(DataInputStream in) argument
672 readFullLongArray(DataInputStream in) argument
685 readVarLong(DataInputStream in) argument
713 readVarLongArray(DataInputStream in) argument
745 readLongArray(Parcel in) argument
[all...]
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 * The id of the device's primary built in keyboard is always 0.
37 * guarantee that a device has a built-in keyboard that can be used for
38 * typing text. There might not be a built-in keyboard, the built-in keyboard
42 * use the device id specified in the {@link KeyEvent} received.
140 * This bit will be set in the return value of {@link #get(int, int)} if the
177 /* Legacy dead key display characters used in previous versions of the API.
277 public KeyCharacterMap createFromParcel(Parcel in) {
287 nativeReadFromParcel(Parcel in) argument
300 KeyCharacterMap(Parcel in) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DDatePickerCalendarDelegate.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
237 * Listener called when the user selects a day in the day picker view.
248 * Listener called when the user selects a year in the year picker view.
636 private SavedState(Parcel in) { argument
637 super(in);
638 mSelectedYear = in.readInt();
639 mSelectedMonth = in.readInt();
640 mSelectedDay = in.readInt();
641 mMinDate = in
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
60 /** Maximum number of items to show in the icon menu. */
113 * top-most). Each value contains the number of items in that row.
115 * The length of this array should not be used to get the number of rows in
121 * The number of rows in the current layout.
166 // This is so we'll receive the MENU key in touch mode
216 * @param numItems The total number of items (across all rows) contained in
321 * just computes positions for each child, and then stores them in the child's layout params.
515 * position is the number of items in tha
720 SavedState(Parcel in) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLaunchpadActivity.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
49 public MyBadParcelable createFromParcel(Parcel in) {
50 return new MyBadParcelable(in);
58 public MyBadParcelable(Parcel in) { argument
59 String nm = in.readString();
73 // Also used as the Binder interface descriptor string in these tests
187 // This one behaves a little differently when running in a group.
508 //System.out.println(mNextReceiver + " in " + mExpectedReceivers);
583 //System.out.println("Receive in
[all...]
/frameworks/base/keystore/tests/src/android/security/
H A DKeyStoreTest.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
59 // "Hello, World" in Chinese
133 assertEquals("KeyStore should be in an uninitialized state",
657 * in timing tests.
842 private byte[] doOperation(String name, int purpose, byte[] in, KeymasterArguments beginArgs) { argument
847 result = mKeyStore.update(token, null, in);
849 assertEquals("All data should be consumed", in.length, result.inputConsumed);

Completed in 8724 milliseconds

<<11121314151617