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

1234567891011>>

/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A DMandelbrot.java78 int width = mOutPixelsAllocation.getType().getX();
79 int height = mOutPixelsAllocation.getType().getY();
H A DBlur25.java63 int width = mInPixelsAllocation.getType().getX();
64 int height = mInPixelsAllocation.getType().getY();
/frameworks/rs/cpp/
H A DScript.h79 sp<const Type> getType() { function in class:android::renderscriptCpp::Script::FieldBase
80 return mAllocation->getType();
/frameworks/compile/slang/
H A Dslang_rs_reflection.cpp153 unsigned TypeId = EPT->getType();
156 return PrimitiveTypePackerAPINameMap[ EPT->getType() ];
215 else if (EPT->getType() == RSExportPrimitiveType::DataTypeBoolean)
241 if (EVT->getType() == RSExportPrimitiveType::DataTypeFloat32) {
248 } else if (EVT->getType() == RSExportPrimitiveType::DataTypeUnsigned8) {
354 genInitExportVariable(C, EV->getType(), EV->getName(), EV->getInit());
358 << GetTypeName(EV->getType(), false) << "["
362 static_cast<const RSExportConstantArrayType*>(EV->getType());
371 genTypeInstance(C, EV->getType());
373 genFieldPackerInstance(C, EV->getType());
[all...]
H A Dslang_rs_check_ast.cpp64 clang::QualType QT = PVD->getType().getCanonicalType();
82 const clang::Type *T = VD->getType().getTypePtr();
126 !RSExportType::ValidateType(C, E->getType(), NULL, E->getExprLoc(),
/frameworks/base/core/java/android/net/
H A DCaptivePortalTracker.java201 && info.getType() == mNetworkInfo.getType()) {
204 } else if (info.getType() != mNetworkInfo.getType() &&
268 if (active != null && active.getType() == info.getType()) {
334 switch (mNetworkInfo.getType()) {
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp30 return V.first->getType()->isIntegerTy();
77 EnumerateType(I->getType());
89 EnumerateType(I->getType());
181 if (LHS.first->getType() != RHS.first->getType())
182 return VE.getTypeID(LHS.first->getType()) <
183 VE.getTypeID(RHS.first->getType());
247 EnumerateType(MD->getType());
280 EnumerateType(N->getType());
308 assert(!V->getType()
[all...]
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.cpp30 return V.first->getType()->isIntegerTy();
77 EnumerateType(I->getType());
89 EnumerateType(I->getType());
181 if (LHS.first->getType() != RHS.first->getType())
182 return VE.getTypeID(LHS.first->getType()) <
183 VE.getTypeID(RHS.first->getType());
247 EnumerateType(MD->getType());
280 EnumerateType(N->getType());
308 assert(!V->getType()
[all...]
/frameworks/base/core/java/android/database/
H A DCursorWindow.java282 * @deprecated Use {@link #getType(int, int)} instead.
286 return getType(row, column) == Cursor.FIELD_TYPE_NULL;
297 * @deprecated Use {@link #getType(int, int)} instead.
301 int type = getType(row, column);
312 * @deprecated Use {@link #getType(int, int)} instead.
316 return getType(row, column) == Cursor.FIELD_TYPE_INTEGER;
326 * @deprecated Use {@link #getType(int, int)} instead.
330 return getType(row, column) == Cursor.FIELD_TYPE_FLOAT;
341 * @deprecated Use {@link #getType(int, int)} instead.
345 int type = getType(ro
366 public int getType(int row, int column) { method in class:CursorWindow
[all...]
H A DCursorWrapper.java145 public int getType(int columnIndex) { method in class:CursorWrapper
146 return mCursor.getType(columnIndex);
H A DCursor.java34 * Values returned by {@link #getType(int)}.
37 /** Value returned by {@link #getType(int)} if the specified column is null */
40 /** Value returned by {@link #getType(int)} if the specified column type is integer */
43 /** Value returned by {@link #getType(int)} if the specified column type is float */
46 /** Value returned by {@link #getType(int)} if the specified column type is string */
49 /** Value returned by {@link #getType(int)} if the specified column type is blob */
332 int getType(int columnIndex); method in interface:Cursor
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A DBlur25.java67 int width = mInPixelsAllocation.getType().getX();
68 int height = mInPixelsAllocation.getType().getY();
H A DGroupTest.java48 mWidth = mInPixelsAllocation.getType().getX();
49 mHeight = mInPixelsAllocation.getType().getY();
/frameworks/compile/linkloader/include/
H A DELFReloc.h120 word_t getType() const { function in class:ELFReloc
143 xword_t getType() const { function in class:ELFReloc
/frameworks/base/opengl/java/android/opengl/
H A DGLUtils.java70 public static int getType(Bitmap bitmap) { method in class:GLUtils
72 throw new NullPointerException("getType can't be used with a null Bitmap");
197 int type = getType(bitmap);
/frameworks/av/drm/common/
H A DIDrmServiceListener.cpp32 data.writeInt32(event.getType());
/frameworks/av/media/mtp/
H A DMtpStorage.cpp52 int MtpStorage::getType() const { function in class:android::MtpStorage
/frameworks/base/core/java/android/hardware/usb/
H A DUsbEndpoint.java109 public int getType() { method in class:UsbEndpoint
/frameworks/base/core/java/com/google/android/util/
H A DSmileyParser.java70 if (token.getType() == AbstractMessageParser.Token.Type.SMILEY) {
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java41 public String getType(Uri uri) { method in class:SingleUserProvider
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DCrashedDummyResult.java84 public TestType getType() { method in class:CrashedDummyResult
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DKMLFormatter.java46 if (entry.getType() == EntryType.LOCATION_TYPE) {
/frameworks/compile/libbcc/lib/AndroidBitcode/X86/
H A DX86ABCExpandVAArg.cpp42 llvm::Type *pty = pInst->getType();
/frameworks/compile/linkloader/include/impl/
H A DELFReloc.hxx103 PRINT_LINT("Type", concrete()->getType() );
H A DELFSectionHeader.hxx87 PRINT_LINT("Type", getSectionTypeStr(getType()));

Completed in 412 milliseconds

1234567891011>>