Searched refs:getType (Results 51 - 75 of 201) sorted by relevance

123456789

/frameworks/compile/linkloader/include/impl/
H A DELFReloc.hxx103 PRINT_LINT("Type", concrete()->getType() );
H A DELFSectionHeader.hxx87 PRINT_LINT("Type", getSectionTypeStr(getType()));
/frameworks/compile/slang/
H A Dslang_rs_export_var.cpp71 clang::QualType QT = VD->getTypeSourceInfo()->getType();
H A Dslang_rs_export_type.cpp426 const clang::Type *T = VD->getType().getTypePtr();
438 T = DD->getTypeSourceInfo()->getType();
440 T = DD->getType();
801 slangAssert(((EPT->getType() > DataTypeUnknown) &&
802 (EPT->getType() < DataTypeMax)) &&
804 return SizeOfDataTypeInBits[ static_cast<int>(EPT->getType()) ];
949 RS_PRIMITIVE_TYPE_SET_DATA_TYPE(ST, getType());
955 return (static_cast<const RSExportPrimitiveType*>(E)->getType() == getType());
1074 RS_VECTOR_TYPE_SET_ELEMENT_TYPE(ST, getType());
[all...]
H A Dslang_rs_export_element.cpp89 slangAssert(EI->type == EPT->getType() && "Element has unexpected type");
105 slangAssert(EI->type == EVT->getType() && "Element has unexpected type");
H A Dslang_rs_export_func.cpp151 llvm::Type *T1 = F->getType()->getLLVMType();
166 size_t T1Size = RSExportType::GetTypeAllocSize(F->getType());
/frameworks/base/libs/rs/driver/
H A DrsdAllocation.cpp234 drv->glType = rsdTypeToGLType(alloc->mHal.state.type->getElement()->getComponent().getType());
318 drv->readBackFBO->setDimensions(alloc->getType()->getDimX(),
319 alloc->getType()->getDimY());
326 RSD_CALL_GL(glReadPixels, 0, 0, alloc->getType()->getDimX(), alloc->getType()->getDimY(),
343 } else if (alloc->getType()->getElement()->getKind() != RS_KIND_PIXEL_RGBA) {
439 ptr += alloc->getType()->getLODOffset(lod, xoff, yoff);
442 uint32_t totalSizeBytes = alloc->getType()->getSizeBytes();
457 uint32_t elementSize = dstAlloc->getType()->getElementSizeBytes();
H A DrsdBcc.cpp301 mtls.dimX = ain->getType()->getDimX();
302 mtls.dimY = ain->getType()->getDimY();
303 mtls.dimZ = ain->getType()->getDimZ();
304 //mtls.dimArray = ain->getType()->getDimArray();
306 mtls.dimX = aout->getType()->getDimX();
307 mtls.dimY = aout->getType()->getDimY();
308 mtls.dimZ = aout->getType()->getDimZ();
309 //mtls.dimArray = aout->getType()->getDimArray();
342 rsAssert(!ain || (ain->getType()->getDimZ() == 0));
360 mtls.eStrideIn = ain->getType()
[all...]
H A DrsdShader.cpp224 if (f->getType() == RS_TYPE_MATRIX_4X4) {
226 } else if (f->getType() == RS_TYPE_MATRIX_3X3) {
228 } else if (f->getType() == RS_TYPE_MATRIX_2X2) {
251 RsDataType dataType = field->getType();
298 RsDataType dataType = field->getType();
350 if (!dc->gl.gl.OES_texture_npot && tex->getType()->getIsNp2()) {
/frameworks/base/core/java/android/database/
H A DMergeCursor.java132 public int getType(int column) { method in class:MergeCursor
133 return mCursor.getType(column);
/frameworks/base/graphics/java/android/renderscript/
H A DProgram.java92 a.getType().getID() != mConstants[slot].getID()) {
112 if (va != null && va.getType().hasFaces() &&
/frameworks/base/libs/rs/
H A DrsElement.h64 RsDataType getType() const {return mComponent.getType();} function in class:android::renderscript::Element
/frameworks/base/opengl/tools/glgen/src/
H A DJFunc.java56 public JType getType() { method in class:JFunc
125 jfunc.setType(JType.convert(cfunc.getType(), false));
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeExpandableAdapter.java165 return getChildItem(groupPosition, childPosition).getType();
173 return mItems.get(groupPosition).getType();
/frameworks/base/core/java/android/nfc/tech/
H A DMifareUltralight.java132 public int getType() { method in class:MifareUltralight
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisMessageParams.java82 int getType() { method in class:SynthesisMessageParams
/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java86 public String getType(Uri url) { method in class:SuggestionProvider
/frameworks/base/services/java/com/android/server/net/
H A DNetworkIdentitySet.java75 out.writeInt(ident.getType());
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java195 public int getType(int columnIndex) { method in class:MockCursor
H A DMockIContentProvider.java53 public String getType(Uri url) { method in class:MockIContentProvider
H A DMockContentProvider.java72 public String getType(Uri url) throws RemoteException { method in class:MockContentProvider.InversionIContentProvider
73 return MockContentProvider.this.getType(url);
171 public String getType(Uri uri) { method in class:MockContentProvider
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DCSVFormatter.java49 //rowOutput.append(entry.getType());
51 if (entry.getType() == EntryType.LOCATION_TYPE) {
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp451 MaxGlobalType = std::max(MaxGlobalType, VE.getTypeID(GV->getType()));
519 Vals.push_back(VE.getTypeID(GV->getType()));
544 Vals.push_back(VE.getTypeID(F->getType()));
563 Vals.push_back(VE.getTypeID(AI->getType()));
597 Record.push_back(VE.getTypeID(N->getOperand(i)->getType()));
800 if (V->getType() != LastTy) {
801 LastTy = V->getType();
861 Type *Ty = CFP->getType();
917 Record.push_back(VE.getTypeID(C->getOperand(0)->getType()));
936 Record.push_back(VE.getTypeID(C->getOperand(i)->getType()));
[all...]
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DConnectivityManagerTestActivity.java144 recordNetworkState(mNetworkInfo.getType(), mNetworkInfo.getState());
146 recordNetworkState(mOtherNetworkInfo.getType(), mOtherNetworkInfo.getState());
386 if ((mNetworkInfo.getType() != networkType) ||
388 log("network state for " + mNetworkInfo.getType() +
483 return (mNetworkInfo.getType() == ConnectivityManager.TYPE_MOBILE);
488 return (mNetworkInfo.getType() == ConnectivityManager.TYPE_WIFI);
/frameworks/base/core/java/android/animation/
H A DKeyframe.java229 public Class getType() { method in class:Keyframe

Completed in 1305 milliseconds

123456789