HomeSort by relevance Sort by last modified time
    Searched refs:fInfo (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /frameworks/base/core/jni/android/graphics/
MovieImpl.cpp 17 fInfo.fDuration = UNINITIALIZED_MSEC; // uninitialized
24 if (fInfo.fDuration == UNINITIALIZED_MSEC && !this->onGetInfo(&fInfo))
25 memset(&fInfo, 0, sizeof(fInfo)); // failure
31 return fInfo.fDuration;
37 return fInfo.fWidth;
43 return fInfo.fHeight;
49 return fInfo.fIsOpaque;
  /external/skia/bench/
AndroidCodecBench.cpp 35 fInfo = codec->getInfo().makeWH(scaledSize.width(), scaledSize.height())
37 if (kUnpremul_SkAlphaType == fInfo.alphaType()) {
38 fInfo = fInfo.makeAlphaType(kPremul_SkAlphaType);
41 fPixelStorage.reset(fInfo.getSafeSize(fInfo.minRowBytes()));
53 codec->getAndroidPixels(fInfo, fPixelStorage.get(), fInfo.minRowBytes(), &options);
CodecBench.cpp 45 fInfo = codec->getInfo().makeColorType(fColorType)
49 fPixelStorage.reset(fInfo.getSafeSize(fInfo.minRowBytes()));
63 codec->getPixels(fInfo, fPixelStorage.get(), fInfo.minRowBytes(),
AndroidCodecBench.h 36 SkImageInfo fInfo; // Set in onDelayedSetup.
CodecBench.h 37 SkImageInfo fInfo; // Set in onDelayedSetup.
  /external/skia/src/core/
SkWritePixelsRec.h 20 , fInfo(info)
27 SkImageInfo fInfo;
36 * is not valid (e.g. bad fInfo) for writePixels().
SkImageInfo.cpp 161 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
164 if (0 >= fInfo.width() || 0 >= fInfo.height()) {
170 SkIRect srcR = SkIRect::MakeXYWH(x, y, fInfo.width(), fInfo.height());
183 fPixels = ((char*)fPixels - y * fRowBytes - x * fInfo.bytesPerPixel());
185 fInfo = fInfo.makeWH(srcR.width(), srcR.height());
197 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
200 if (0 >= fInfo.width() || 0 >= fInfo.height())
    [all...]
SkYUVPlanesCache.cpp 19 SkYUVPlanesCache::Info fInfo;
39 fValue.fInfo = *info;
67 result->fInfo = rec.fValue.fInfo;
81 *info = result.fInfo;
SkBitmap.cpp 46 , fInfo (src.fInfo)
58 , fInfo (std::move(other.fInfo))
63 other.fInfo.reset();
77 fInfo = src.fInfo;
88 fInfo = std::move(other.fInfo);
94 other.fInfo.reset()
    [all...]
  /external/skia/src/image/
SkReadPixelsRec.h 20 , fInfo(info)
27 SkImageInfo fInfo;
36 * is not valid (e.g. bad fInfo) for readPixels().
  /external/skia/include/core/
SkPixmap.h 28 : fPixels(NULL), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
32 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
58 const SkImageInfo& info() const { return fInfo; }
62 int width() const { return fInfo.width(); }
63 int height() const { return fInfo.height(); }
64 SkColorType colorType() const { return fInfo.colorType(); }
65 SkAlphaType alphaType() const { return fInfo.alphaType(); }
66 SkColorSpace* colorSpace() const { return fInfo.colorSpace(); }
67 bool isOpaque() const { return fInfo.isOpaque(); }
80 int shiftPerPixel() const { return fInfo.shiftPerPixel();
    [all...]
SkBitmap.h 81 const SkImageInfo& info() const { return fInfo; }
83 int width() const { return fInfo.width(); }
84 int height() const { return fInfo.height(); }
85 SkColorType colorType() const { return fInfo.colorType(); }
86 SkAlphaType alphaType() const { return fInfo.alphaType(); }
87 SkColorSpace* colorSpace() const { return fInfo.colorSpace(); }
88 sk_sp<SkColorSpace> refColorSpace() const { return fInfo.refColorSpace(); }
94 int bytesPerPixel() const { return fInfo.bytesPerPixel(); }
108 int shiftPerPixel() const { return this->fInfo.shiftPerPixel(); }
115 bool empty() const { return fInfo.isEmpty();
    [all...]
  /external/skia/src/gpu/gl/
GrGLTexture.cpp 19 if (idDesc.fInfo.fTarget == GR_GL_TEXTURE_EXTERNAL) {
23 } else if (idDesc.fInfo.fTarget == GR_GL_TEXTURE_RECTANGLE) {
30 SkASSERT(idDesc.fInfo.fTarget == GR_GL_TEXTURE_2D);
43 if (idDesc.fInfo.fTarget == GR_GL_TEXTURE_RECTANGLE ||
44 idDesc.fInfo.fTarget == GR_GL_TEXTURE_EXTERNAL) {
89 SkASSERT(0 != idDesc.fInfo.fID);
92 fInfo = idDesc.fInfo;
97 if (fInfo.fID) {
99 GL_CALL(DeleteTextures(1, &fInfo.fID))
    [all...]
GrGLTexture.h 32 GrGLTextureInfo fInfo;
65 GrGLuint textureID() const { return fInfo.fID; }
67 GrGLenum target() const { return fInfo.fTarget; }
101 GrGLTextureInfo fInfo;
  /external/skia/src/pdf/
SkPDFGradientShader.h 27 SkShader::GradientInfo fInfo;
55 SkASSERT(u.fInfo.fColors == u.fColors.get());
56 SkASSERT(u.fInfo.fColorOffsets == u.fStops.get());
57 SkASSERT(v.fInfo.fColors == v.fColors.get());
58 SkASSERT(v.fInfo.fColorOffsets == v.fStops.get());
60 && u.fInfo == v.fInfo
  /external/skia/src/effects/
SkLayerDrawLooper.cpp 152 ApplyInfo(paint, fCurrRec->fPaint, fCurrRec->fInfo);
155 if (fCurrRec->fInfo.fPostTranslate) {
156 postTranslate(canvas, fCurrRec->fInfo.fOffset.fX,
157 fCurrRec->fInfo.fOffset.fY);
159 canvas->translate(fCurrRec->fInfo.fOffset.fX,
160 fCurrRec->fInfo.fOffset.fY);
174 if ((rec->fInfo.fPaintBits & ~kMaskFilter_Bit)) {
177 if (SkBlendMode::kSrc != (SkBlendMode)rec->fInfo.fColorMode) {
191 if (rec->fInfo.fPaintBits) {
194 if (SkBlendMode::kDst != (SkBlendMode)rec->fInfo.fColorMode)
    [all...]
  /external/mesa3d/src/gallium/targets/haiku-softpipe/
SoftwareRenderer.cpp 49 fInfo(NULL),
115 if (fDirectModeEnabled && fInfo != NULL) {
116 fWidth = fInfo->window_bounds.right - fInfo->window_bounds.left;
117 fHeight = fInfo->window_bounds.bottom - fInfo->window_bounds.top;
157 if (!fDirectModeEnabled || fInfo == NULL) {
168 if (fInfo->window_bounds.bottom - fInfo->window_bounds.top
170 || fInfo->window_bounds.right - fInfo->window_bounds.lef
    [all...]
  /external/doclava/src/com/google/doclava/
FieldInfo.java 434 public boolean isConsistent(FieldInfo fInfo) {
436 if (!mType.equals(fInfo.mType)) {
437 Errors.error(Errors.CHANGED_TYPE, fInfo.position(), "Field " + fInfo.qualifiedName()
438 + " has changed type from " + mType + " to " + fInfo.mType);
440 } else if (!this.valueEquals(fInfo)) {
441 Errors.error(Errors.CHANGED_VALUE, fInfo.position(), "Field " + fInfo.qualifiedName()
442 + " has changed value from " + mConstantValue + " to " + fInfo.mConstantValue);
446 if (!scope().equals(fInfo.scope()))
    [all...]
  /external/skia/src/gpu/instanced/
InstancedOp.cpp 101 fInfo.fHasParams = true;
111 fInfo.fHasParams = true;
120 fInfo.fHasParams = true;
126 if (GrAAType::kCoverage == fInfo.aaType() ||
127 (GrAAType::kNone == fInfo.aaType() && !fInfo.isSimpleRects() && fInfo.fCannotDiscard)) {
131 isMixedSamples = GrAAType::kMixedSamples == fInfo.aaType();
139 SkASSERT(SkIsPow2(fInfo.fShapeTypes));
142 if (kRect_ShapeFlag == fInfo.fShapeTypes)
    [all...]
InstancedOp.h 37 (unsigned)fInfo.fAAType,
38 fInfo.fShapeTypes,
39 fInfo.fInnerShapeTypes,
40 fInfo.fHasPerspective,
41 fInfo.fNonSquare,
64 return GrAATypeIsHW(fInfo.aaType()) ? FixedFunctionFlags::kUsesHWAA
85 OpInfo fInfo;
  /hardware/intel/common/omx-components/videocodec/securevideo/moorefield/
LogDumpHelper.h 264 static void DumpVideoFrameInfo(frame_info_t* fInfo)
266 if (fInfo == NULL)
272 LOGV("frame_info_t: data = %p, size = %u, num_nalus = %u", fInfo->data, fInfo->size, fInfo->num_nalus) ;
274 for (uint32_t i = 0; i < fInfo->num_nalus; ++i)
277 fInfo->nalus[i].type, fInfo->nalus[i].offset, fInfo->nalus[i].offset,
278 fInfo->nalus[i].data, fInfo->nalus[i].length)
    [all...]
  /external/icu/icu4c/source/tools/ctestfw/
testdata.cpp 16 fInfo(NULL),
28 if(fInfo != NULL) {
29 delete fInfo;
74 fInfo = new RBDataMap(info, status);
95 if(fInfo) {
96 info = fInfo;
  /external/skia/src/gpu/vk/
GrVkImage.h 33 : fInfo(info)
43 VkImage image() const { return fInfo.fImage; }
44 const GrVkAlloc& alloc() const { return fInfo.fAlloc; }
45 VkFormat imageFormat() const { return fInfo.fFormat; }
46 uint32_t mipLevels() const { return fInfo.fLevelCount; }
49 return SkToBool(VK_IMAGE_TILING_LINEAR == fInfo.fImageTiling);
53 VkImageLayout currentLayout() const { return fInfo.fImageLayout; }
100 GrVkImageInfo fInfo;
  /external/dng_sdk/source/
dng_preview.cpp 70 preview.fInfo.fApplicationName,
74 preview.fInfo.fApplicationVersion,
78 preview.fInfo.fSettingsName,
81 , fSettingsDigest (preview.fInfo.fSettingsDigest)
88 preview.fInfo.fColorSpace)
91 preview.fInfo.fDateTime,
95 preview.fInfo.fRawToPreviewGain)
98 preview.fInfo.fCacheVersion)
102 if (preview.fInfo.fApplicationName.NotEmpty ())
109 if (preview.fInfo.fApplicationVersion.NotEmpty ()
    [all...]
  /external/skia/src/gpu/mock/
GrMockTexture.h 28 return reinterpret_cast<GrBackendObject>(&fInfo);
43 , fInfo(info)
48 GrMockTextureInfo fInfo;

Completed in 1695 milliseconds

1 2 3 4