Searched refs:getType (Results 301 - 325 of 513) sorted by relevance

<<11121314151617181920>>

/frameworks/rs/
H A DrsAllocation.h127 const Type * getType() const {return mHal.state.type;} function in class:android::renderscript::Allocation
204 p += x * getType()->getElementSizeBytes();
H A DrsScriptC_LibGL.cpp219 size_t allocSize = a->getType()->getPackedSizeBytes();
249 size_t textLen = a->getType()->getPackedSizeBytes();
H A DrsElement.cpp139 component.getType(),
173 mHal.state.dataType = mComponent.getType();
238 (ee->getComponent().getType() == dt) &&
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicColorMatrix.cpp219 if (ein->getType() == RS_TYPE_FLOAT_32) {
224 if (eout->getType() == RS_TYPE_FLOAT_32) {
951 if (ein->getType() == eout->getType()) {
952 if (eout->getType() == RS_TYPE_UNSIGNED_8) {
958 if (eout->getType() == RS_TYPE_UNSIGNED_8) {
/frameworks/compile/slang/
H A Dslang_rs_export_type.cpp450 const clang::Type *T = GetCanonicalType(VD->getType().getTypePtr());
726 return ValidateType(Context, VD->getASTContext(), VD->getType(), VD,
734 clang::QualType T = DD->getType();
1090 int type = EPT->getType();
1233 return (static_cast<const RSExportPrimitiveType*>(E)->getType() == getType());
1547 const RSExportType *FET = F->getType();
1569 const_cast<RSExportType*>((*I)->getType())->keep();
1585 if (!(*AI)->getType()->equals((*BI)->getType()))
[all...]
/frameworks/base/core/java/android/content/
H A DIntentFilter.java1015 if (pe.getType() == ssp.getType() && pe.getPath().equals(ssp.getPath())) {
1194 if (pe.getType() == path.getType() && pe.getPath().equals(path.getPath())) {
1450 String type = resolve ? intent.resolveType(resolver) : intent.getType();
1564 switch (pe.getType()) {
1591 switch (pe.getType()) {
H A DContentProviderClient.java167 /** See {@link ContentProvider#getType ContentProvider.getType} */
168 public @Nullable String getType(@NonNull Uri url) throws RemoteException { method in class:ContentProviderClient
173 return mContentProvider.getType(url);
H A DContentProvider.java79 * <li>{@link #getType} which returns the MIME type of data in the content provider</li>
248 public String getType(Uri uri) { method in class:ContentProvider.Transport
251 return ContentProvider.this.getType(uri);
713 * {@link #getType(Uri)} or {@link #getStreamTypes(Uri, String)} requests.
1041 public abstract @Nullable String getType(@NonNull Uri uri); method in class:ContentProvider
1219 * <p class="note">For use in Intents, you will want to implement {@link #getType}
1246 * @see #getType(android.net.Uri)
1282 * <p class="note">For use in Intents, you will want to implement {@link #getType}
1316 * @see #getType(android.net.Uri)
1347 * <p class="note">For use in Intents, you will want to implement {@link #getType}
[all...]
H A DSearchRecentSuggestionsProvider.java249 public String getType(Uri uri) { method in class:SearchRecentSuggestionsProvider
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputHardwareManager.java162 if (info.getType() == TvInputHardwareInfo.TV_INPUT_TYPE_HDMI) {
187 if (info.getType() == TvInputHardwareInfo.TV_INPUT_TYPE_HDMI) {
329 if (info.getType() != TvInputInfo.TYPE_HDMI) {
416 if (hardwareInfo.getType() == TvInputHardwareInfo.TV_INPUT_TYPE_HDMI
448 if (config.getType() == TvStreamConfig.STREAM_TYPE_BUFFER_PRODUCER) {
1018 if (mInfo.getType() != TvInputHardwareInfo.TV_INPUT_TYPE_HDMI) {
1033 if (config.getType() != TvStreamConfig.STREAM_TYPE_BUFFER_PRODUCER) {
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp603 assert(Ty == V->getType() && "Type mismatch in constant table!");
618 assert((!Ty || Ty == V->getType()) && "Type mismatch in value table!");
692 NewC = ConstantArray::get(UserCA->getType(), NewOps);
694 NewC = ConstantStruct::get(UserCS->getType(), NewOps);
2653 getValue(Record, OpNum, LHS->getType(), RHS) ||
2657 int Opc = GetDecodedBinaryOpcode(Record[OpNum++], LHS->getType());
2718 cast<SequentialType>(BasePtr->getType()->getScalarType())
2790 getValue(Record, OpNum, TrueVal->getType(), FalseVal) ||
2805 getValue(Record, OpNum, TrueVal->getType(), FalseVal) ||
2811 dyn_cast<VectorType>(Cond->getType())) {
[all...]
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java692 public Type getType() { return type; } method in class:AbstractMessageParser.Token
702 info.add(getType().toString());
1251 switch (token.getType()) {
1315 throw new AssertionError("unknown token type: " + token.getType());
1437 public String getType(boolean isSend) { method in class:AbstractMessageParser.Part
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCard.java248 if (mUiccApplications[index].getType() != expectedAppType &&
249 mUiccApplications[index].getType() != altExpectedAppType) {
488 if (mUiccApplications[i] != null && mUiccApplications[i].getType() == type) {
548 mUiccApplications[i].getType().ordinal() == type) {
789 + mUiccApplications[i].getType() + " " + mUiccApplications[i]);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DMetrics.java333 logHistogram(context, COUNT_OPEN_MIME, sanitizeMime(intent.getType()));
336 logHistogram(context, COUNT_CREATE_MIME, sanitizeMime(intent.getType()));
339 logHistogram(context, COUNT_GET_CONTENT_MIME, sanitizeMime(intent.getType()));
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java502 assertTrue(testType(Type.getType(desc)));
517 assertTrue(testType(Type.getType(desc)));
539 assertTrue(testType(Type.getType(desc)));
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipAudioCall.java758 && "audio".equals(media.getType())
798 media.getType(), 0, 1, media.getProtocol());
1023 && "audio".equals(media.getType())
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DHwModule.cpp148 if (route->getSink()->getType() == AUDIO_PORT_TYPE_DEVICE) {
159 if (sources[i]->getType() == AUDIO_PORT_TYPE_DEVICE) {
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/deviceinfo/
H A DStorageMeasurement.java385 if (mSharedVolume.getType() == VolumeInfo.TYPE_EMULATED) {
403 if (mVolume.getType() == VolumeInfo.TYPE_PRIVATE) {
/frameworks/base/rs/java/android/renderscript/
H A DScript.java514 public Type getType() { method in class:Script.FieldBase
515 return mAllocation.getType();
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DShadowPainter.java184 int type = source.getType();
211 int type = source.getType();
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp545 const uint8_t type = mGlobalTransform.getType();
591 mOrientation, tr.getType(), getPageFlipCount(),
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java361 assertEquals(ContentProviderOperation.TYPE_INSERT, operationList.get(0).getType());
362 assertEquals(ContentProviderOperation.TYPE_INSERT, operationList.get(1).getType());
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingActivity.java412 mBitmapOut = Bitmap.createBitmap(mInPixelsAllocation.getType().getX(),
413 mInPixelsAllocation.getType().getY(),
/frameworks/base/cmds/sm/src/com/android/commands/sm/
H A DSm.java125 if (filterType == -1 || filterType == vol.getType()) {
/frameworks/base/core/java/android/content/pm/
H A DPackageItemInfo.java180 final int type = Character.getType(codePoint);

Completed in 835 milliseconds

<<11121314151617181920>>