Searched refs:as (Results 1 - 25 of 52) sorted by relevance

123

/frameworks/av/media/common_time/
H A DAndroid.mk4 # (binder marshalers for ICommonClock as well as common clock and local clock
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCardApplication.java91 IccCardApplicationStatus as,
94 if (DBG) log("Creating UiccApp: " + as);
96 mAppState = as.app_state;
97 mAppType = as.app_type;
99 mPersoSubState = as.perso_substate;
100 mAid = as.aid;
101 mAppLabel = as.app_label;
102 mPin1Replaced = (as.pin1_replaced != 0);
103 mPin1State = as.pin1;
104 mPin2State = as
90 UiccCardApplication(UiccCard uiccCard, IccCardApplicationStatus as, Context c, CommandsInterface ci) argument
118 update(IccCardApplicationStatus as, Context c, CommandsInterface ci) argument
[all...]
/frameworks/rs/api/
H A Drs_core.spec21 RenderScript code is compiled on devices at runtime to allow platform-independence as well.
27 To use RenderScript, you need to utilize the RenderScript runtime APIs documented here as well
28 as the Android framework APIs for RenderScript. For documentation on the Android framework
H A Drs_for_each.spec24 a @rs_kernel_context as argument.
107 must be specified as the last argument. All input allocations,
115 Up to API level 23, the kernel is implicitly specified as the kernel named
118 as specified by the kernel argument. The script argument is removed.
238 Returns the index in the Array0 dimension of the cell being processed, as specified
248 &nbsp;&nbsp;// adding these variables as arguments. For the more rarely used indices<br/>
264 Returns the index in the Array1 dimension of the cell being processed, as specified
278 as specified by the supplied kernel context. See @rsGetArray0() for an explanation
291 Returns the index in the Array3 dimension of the cell being processed, as specified
438 Returns the face on which the cell being processed is found, as specifie
[all...]
H A Drs_time.spec29 Calendar time interpreted as seconds elapsed since the Epoch (00:00:00 on
63 ret: rs_tm*, "Pointer to the output local time, i.e. the same value as the parameter local."
65 arg: const rs_time_t* timer, "Input time as a number of seconds since January 1, 1970."
71 This functions returns the same pointer that is passed as first argument. If the
H A Drs_math.spec33 instead the input as a single vector in n-dimensional space.
54 summary: 1 / pi, as a 32 bit float
56 The inverse of pi, as a 32 bit float.
61 summary: 2 / pi, as a 32 bit float
63 2 divided by pi, as a 32 bit float.
70 summary: 2 / pi, as a 32 bit float
72 2 divided by pi, as a 32 bit float.
77 summary: 2 / sqrt(pi), as a 32 bit float
79 2 divided by the square root of pi, as a 32 bit float.
84 summary: e, as
[all...]
/frameworks/base/packages/WAPPushManager/
H A DAndroid.mk20 # This finds and builds the test apk as well, so a single make does both.
/frameworks/native/libs/ui/
H A DAndroid.mk27 # We only care about compiling as C++14
31 # that they're non-portable as long as they're consistent within one execution
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothSocket.java51 * transport over Bluetooth. It is also known as the Serial Port Profile (SPP).
60 * <p>To create a {@link BluetoothSocket} as a server (or "host"), see the
63 * <p>Once the socket is connected, whether initiated as a client or accepted
64 * as a server, open the IO streams by calling {@link #getInputStream} and
235 BluetoothSocket as = new BluetoothSocket(this);
236 as.mSocketState = SocketState.CONNECTED;
241 as.close();
245 as.mPfd = new ParcelFileDescriptor(fds[0]);
246 as.mSocket = new LocalSocket(fds[0]);
247 as
[all...]
/frameworks/native/libs/gui/
H A DAndroid.mk26 # We only care about compiling as C++14
29 # We don't need to enumerate every case in a switch as long as a default case
/frameworks/base/core/tests/coretests/
H A DAndroid.mk42 # intermediate dir to include all the test apks as raw resource
54 # Use R_file_stamp as dependency because we want the test apks in place before the R.java is generated.
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java60 SendChannel(AssistStructure as) { argument
61 mAssistStructure = as;
67 AssistStructure as = mAssistStructure;
68 if (as == null) {
74 if (DEBUG_PARCEL) Log.d(TAG, "Request for data on " + as
80 xfer.writeToParcel(as, reply);
88 ParcelTransferWriter xfer = new ParcelTransferWriter(as, reply);
89 xfer.writeToParcel(as, reply);
115 ParcelTransferWriter(AssistStructure as, Parcel out) { argument
116 mWriteStructure = as
126 writeToParcel(AssistStructure as, Parcel out) argument
137 writeToParcelInner(AssistStructure as, Parcel out) argument
201 writeNextEntryToParcel(AssistStructure as, Parcel out, PooledStringWriter pwriter) argument
[all...]
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/
H A DAndroid.mk29 # Need to run as system app to get access to Settings. This test won't work for user builds.
/frameworks/base/media/mca/filterfw/native/
H A DAndroid.mk44 # TODO: Build a shared library as well?
/frameworks/compile/slang/
H A DAndroid.mk103 LOCAL_MODULE := llvm-rs-as
109 llvm-rs-as.cpp
/frameworks/rs/cpp/
H A DAndroid.mk16 # Used in librsjni, which is built as NDK code => no ASan.
/frameworks/av/include/media/
H A DIMediaRecorder.h43 virtual status_t setAudioSource(int as) = 0;
H A DMediaRecorderBase.h38 virtual status_t setAudioSource(audio_source_t as) = 0;
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DAssistVisualizer.java89 public void setAssistStructure(AssistStructure as) { argument
90 mAssistStructure = as;
92 final int N = as.getWindowNodeCount();
95 AssistStructure.WindowNode windowNode = as.getWindowNodeAt(i);
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp92 // The reference is only used as a proxy for callbacks.
192 android_media_MediaRecorder_setAudioSource(JNIEnv *env, jobject thiz, jint as) argument
194 ALOGV("setAudioSource(%d)", as);
195 if (as < AUDIO_SOURCE_DEFAULT ||
196 (as >= AUDIO_SOURCE_CNT && as != AUDIO_SOURCE_FM_TUNER)) {
202 process_media_recorder_call(env, mr->setAudioSource(as), "java/lang/RuntimeException", "setAudioSource failed.");
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp117 status_t MediaRecorderClient::setAudioSource(int as) argument
119 ALOGV("setAudioSource(%d)", as);
128 return mRecorder->setAudioSource((audio_source_t)as);
H A DMediaRecorderClient.h53 virtual status_t setAudioSource(int as);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s37 ; * position as defined in subclause 6.1.3.8, of ISO/IEC
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s37 ; * position as defined in subclause 6.1.3.8, of ISO/IEC
/frameworks/base/data/fonts/
H A DAndroid.mk77 # Build the rest of font files as prebuilt.
80 # It also serves as the module name and the dest file name.

Completed in 8566 milliseconds

123