Searched refs:type (Results 1 - 25 of 1474) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h1372 XAuint32 type,
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h312 /** MIME-type-based data format definition where formatType must be SL_DATAFORMAT_MIME*/
323 /* Container type */
355 /** PCM-type-based data format definition where formatType must be SL_DATAFORMAT_PCM*/
2027 SLuint8 type,
/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp445 SLresult audioPlayer_setStreamType(CAudioPlayer* ap, SLint32 type) { argument
447 SL_LOGV("type %d", type);
450 switch (type) {
475 // stream type needs to be set before the object is realized
556 SL_LOGE("Unsupported sink locator type 0x%x", (unsigned)sinkLocatorType);
567 * returns the Android object type if the locator type combinations for the source and sinks
577 AndroidObjectType type = INVALID_TYPE; local
600 type
[all...]
H A DOutputMix_to_android.cpp35 if (memcmp(SL_IID_EQUALIZER, &om->mEqualizer.mEqDescriptor.type,
40 if (memcmp(SL_IID_BASSBOOST, &om->mBassBoost.mBassBoostDescriptor.type,
45 if (memcmp(SL_IID_PRESETREVERB, &om->mPresetReverb.mPresetReverbDescriptor.type,
51 &om->mEnvironmentalReverb.mEnvironmentalReverbDescriptor.type,
56 if (memcmp(SL_IID_VIRTUALIZER, &om->mVirtualizer.mVirtualizerDescriptor.type,
H A Dandroid_Effect.cpp268 &ibb->mBassBoostDescriptor.type))
287 if (!android_fx_initEffectObj(sessionId, ieq->mEqEffect, &ieq->mEqDescriptor.type)) {
337 &ivi->mVirtualizerDescriptor.type)) {
372 ipr->mPresetReverbEffect, &ipr->mPresetReverbDescriptor.type)) {
407 ier->mEnvironmentalReverbEffect, &ier->mEnvironmentalReverbDescriptor.type)) {
629 const effect_uuid_t *type) {
632 effect = new android::AudioEffect(type, android::String16(), EFFECT_UUID_NULL,
668 (0 == memcmp(effectId, &descriptor.type, sizeof(effect_uuid_t)))) {
773 NULL, // not using type to create effect
628 android_fx_initEffectObj(audio_session_t sessionId, android::sp<android::AudioEffect>& effect, const effect_uuid_t *type) argument
H A Dandroid_Effect.h134 const effect_uuid_t *type);
/frameworks/wilhelm/src/itf/
H A DIAcousticEchoCancellation.c94 if (memcmp(&fxDesc.type, SL_IID_ANDROIDACOUSTICECHOCANCELLATION,
H A DIAndroidEffectCapabilities.c55 *pEffectType = (SLInterfaceID) &thiz->mFxDescriptors[index].type;
112 SL_LOGV("effect %d: type=%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x name=%s",
114 thiz->mFxDescriptors[i].type.timeLow,
115 thiz->mFxDescriptors[i].type.timeMid,
116 thiz->mFxDescriptors[i].type.timeHiAndVersion,
117 thiz->mFxDescriptors[i].type.clockSeq,
118 thiz->mFxDescriptors[i].type.node[0],
119 thiz->mFxDescriptors[i].type.node[1],
120 thiz->mFxDescriptors[i].type.node[2],
121 thiz->mFxDescriptors[i].type
[all...]
H A DIAutomaticGainControl.c91 if (memcmp(&fxDesc.type, SL_IID_ANDROIDAUTOMATICGAINCONTROL,
H A DINoiseSuppression.c87 if (memcmp(&fxDesc.type, SL_IID_ANDROIDNOISESUPPRESSION,
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestPlayStreamType.cpp47 /* Play an audio URIs on the given stream type */
48 void TestStreamTypeConfiguration( SLObjectItf sl, const char* path, const SLint32 type) argument
139 /* Set the Android audio stream type on the player */
141 SL_ANDROID_KEY_STREAM_TYPE, &type, sizeof(SLint32));
143 fprintf(stderr, "invalid stream type %d\n", type);
192 /* Get the stream type during playback */
199 fprintf(stderr, "ERROR: size for stream type is %u, should be %zu\n",
205 if (currentType != type) {
206 fprintf(stderr, "ERROR: stream type i
[all...]
/frameworks/wilhelm/tools/permute/
H A Dpermute.c135 unsigned type = sfinfo_in.format & SF_FORMAT_TYPEMASK; local
136 switch (type) {
140 fprintf(stderr, "%s: unsupported type 0x%X\n", path_in, type);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrowseFragment.java183 void post(int position, int type, boolean smooth) { argument
189 if (type >= mType) {
191 mType = type;
H A DBrowseSupportFragment.java185 void post(int position, int type, boolean smooth) { argument
191 if (type >= mType) {
193 mType = type;
H A DGuidedStepFragment.java1217 return found && typedValue.type == TypedValue.TYPE_INT_BOOLEAN && typedValue.data != 0;
1292 * Sets the transition type to be used for {@link #UI_STYLE_ENTRANCE} animation.
H A DGuidedStepSupportFragment.java1219 return found && typedValue.type == TypedValue.TYPE_INT_BOOLEAN && typedValue.data != 0;
1294 * Sets the transition type to be used for {@link #UI_STYLE_ENTRANCE} animation.
H A DPlaybackOverlayFragment.java642 * Sets the background type.
644 * @param type One of BG_LIGHT, BG_DARK, or BG_NONE.
646 public void setBackgroundType(int type) { argument
647 switch (type) {
651 if (type != mBackgroundType) {
652 mBackgroundType = type;
657 throw new IllegalArgumentException("Invalid background type");
662 * Returns the background type.
H A DPlaybackOverlaySupportFragment.java644 * Sets the background type.
646 * @param type One of BG_LIGHT, BG_DARK, or BG_NONE.
648 public void setBackgroundType(int type) { argument
649 switch (type) {
653 if (type != mBackgroundType) {
654 mBackgroundType = type;
659 throw new IllegalArgumentException("Invalid background type");
664 * Returns the background type.
H A DRowsFragment.java328 public void onAddPresenter(Presenter presenter, int type) {
330 mExternalAdapterListener.onAddPresenter(presenter, type);
H A DRowsSupportFragment.java330 public void onAddPresenter(Presenter presenter, int type) {
332 mExternalAdapterListener.onAddPresenter(presenter, type);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java42 * A BaseCardView will draw its children based on its type, the region
58 * A simple card type with a single layout area. This card type does not
67 * A Card type with 2 layout areas: A main area which is always visible, and
76 * A Card type with 2 layout areas: A main area which is always visible, and
85 * A Card type with 3 layout areas: A main area which is always visible; an
203 * type implements one) should run immediately after the card is selected,
235 * Sets the type of this Card.
237 * @param type The desired card type
239 setCardType(int type) argument
[all...]
H A DFacetProviderAdapter.java20 * query {@link FacetProvider} for a given type within Adapter. Note that
27 * Queries {@link FacetProvider} for a given type within Adapter.
28 * @param type type of the item.
29 * @return Facet provider for the type.
31 public FacetProvider getFacetProvider(int type); argument
H A DItemBridgeAdapter.java35 public void onAddPresenter(Presenter presenter, int type) { argument
250 int type = mPresenters.indexOf(presenter);
251 if (type < 0) {
253 type = mPresenters.indexOf(presenter);
254 if (DEBUG) Log.v(TAG, "getItemViewType added presenter " + presenter + " type " + type);
255 onAddPresenter(presenter, type);
257 mAdapterListener.onAddPresenter(presenter, type);
260 return type;
266 protected void onAddPresenter(Presenter presenter, int type) { argument
392 getFacetProvider(int type) argument
[all...]
H A DListRowPresenter.java266 public void onAddPresenter(Presenter presenter, int type) { argument
268 type, getRecycledPoolSize(presenter));
/frameworks/support/v17/preference-leanback/
H A Dbuild.gradle68 def jarTask = project.tasks.create(name: "jar${suffix}", type: Jar){
73 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
79 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) {
84 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {

Completed in 2058 milliseconds

1234567891011>>