HomeSort by relevance Sort by last modified time
    Searched refs:rec (Results 201 - 225 of 959) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/selinux/libselinux/utils/
sefcontext_compile.c 32 static int process_file(struct selabel_handle *rec, const char *filename)
51 rc = process_line(rec, filename, prefix, line_buf, ++line_num);
305 struct selabel_handle *rec = NULL; local
359 rec = (struct selabel_handle *)calloc(1, sizeof(*rec));
360 if (!rec) {
366 rec->backend = SELABEL_CTX_FILE;
374 rec->validating = 1;
381 free(rec);
387 rec->data = data
    [all...]
  /external/skia/gm/
aaclip.cpp 104 SkCanvas::SaveLayerRec rec; local
105 rec.fPaint = nullptr;
106 rec.fBounds = &r0;
107 rec.fBackdrop = nullptr;
108 rec.fSaveLayerFlags = 1 << 31;//SkCanvas::kDontClipToLayer_Legacy_SaveLayerFlag;
109 canvas->saveLayer(rec);
110 rec.fBounds = &r1;
111 canvas->saveLayer(rec);
278 } rec[] = { variable in typeref:struct:CGImageGM::__anon33817
290 for (size_t i = 0; i < SK_ARRAY_COUNT(rec); ++i)
    [all...]
picture.cpp 14 SkPictureRecorder rec; local
15 SkCanvas* canvas = rec.beginRecording(100, 100);
36 return rec.finishRecordingAsPicture();
  /external/skia/src/core/
SkRemoteGlyphCache.h 22 explicit SkScalerContextRecDescriptor(const SkScalerContextRec& rec) {
25 desc->addEntry(kRec_SkDescriptorTag, sizeof(rec), &rec);
SkYUVPlanesCache.cpp 34 struct YUVPlanesRec : public SkResourceCache::Rec {
56 static bool Visitor(const SkResourceCache::Rec& baseRec, void* contextData) {
57 const YUVPlanesRec& rec = static_cast<const YUVPlanesRec&>(baseRec); local
60 SkCachedData* tmpData = rec.fValue.fData;
67 result->fInfo = rec.fValue.fInfo;
  /external/skqp/gm/
aaclip.cpp 104 SkCanvas::SaveLayerRec rec; local
105 rec.fPaint = nullptr;
106 rec.fBounds = &r0;
107 rec.fBackdrop = nullptr;
108 rec.fSaveLayerFlags = 1 << 31;//SkCanvas::kDontClipToLayer_Legacy_SaveLayerFlag;
109 canvas->saveLayer(rec);
110 rec.fBounds = &r1;
111 canvas->saveLayer(rec);
278 } rec[] = { variable in typeref:struct:CGImageGM::__anon34487
290 for (size_t i = 0; i < SK_ARRAY_COUNT(rec); ++i)
    [all...]
picture.cpp 14 SkPictureRecorder rec; local
15 SkCanvas* canvas = rec.beginRecording(100, 100);
36 return rec.finishRecordingAsPicture();
  /external/skqp/src/core/
SkYUVPlanesCache.cpp 34 struct YUVPlanesRec : public SkResourceCache::Rec {
56 static bool Visitor(const SkResourceCache::Rec& baseRec, void* contextData) {
57 const YUVPlanesRec& rec = static_cast<const YUVPlanesRec&>(baseRec); local
60 SkCachedData* tmpData = rec.fValue.fData;
67 result->fInfo = rec.fValue.fInfo;
SkGlyphCache.cpp 77 CharGlyphRec* rec = this->getCharGlyphRec(packedUnicharID); local
79 if (rec->fPackedUnicharID == packedUnicharID) {
81 return rec->fPackedGlyphID.code();
84 rec->fPackedUnicharID = packedUnicharID;
86 rec->fPackedGlyphID = SkPackedGlyphID(glyphID);
142 CharGlyphRec* rec = this->getCharGlyphRec(id); local
143 if (rec->fPackedUnicharID != id) {
144 rec->fPackedUnicharID = id;
145 rec->fPackedGlyphID = SkPackedGlyphID(fScalerContext->charToGlyphID(charCode), x, y);
147 return this->lookupByPackedGlyphID(rec->fPackedGlyphID, type)
385 const SkScalerContextRec& rec = fScalerContext->getRec(); local
558 const SkScalerContextRec& rec = cache.getScalerContext()->getRec(); local
581 const SkScalerContextRec& rec = cache.getScalerContext()->getRec(); local
    [all...]
  /external/turbine/java/com/google/turbine/binder/env/
LazyEnv.java 54 private final Env<S, T> rec; field in class:LazyEnv
58 this.rec = CompoundEnv.<S, T>of(base).append(this);
72 v = completer.complete(rec, sym);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetMatch.java 182 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf) {
195 fCharsetName = rec.getName();
196 fLang = rec.getLanguage();
202 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf, String csName, String lang) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetMatch.java 194 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf) {
207 fCharsetName = rec.getName();
208 fLang = rec.getLanguage();
214 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf, String csName, String lang) {
  /external/ltp/testcases/realtime/func/async_handler/
async_handler.c 120 stats_record_t rec; local
145 rec.x = i;
146 rec.y = delta;
147 stats_container_append(&dat, rec);
  /external/ltp/testcases/realtime/func/sched_jitter/
sched_jitter.c 123 stats_record_t rec; local
142 rec.x = i;
143 rec.y = delta;
144 stats_container_append(&dat, rec);
  /external/skia/include/core/
SkRasterHandleAllocator.h 43 struct Rec {
55 * is desired to give clients access to those pixels. The rec also contains a proc and context
62 virtual bool allocHandle(const SkImageInfo&, Rec*) = 0;
75 * If rec is non-null, then it will be used as the base-layer of pixels/handle.
76 * If rec is null, then the allocator will be called for the base-layer as well.
79 const SkImageInfo&, const Rec* rec = nullptr);
  /external/skia/src/gpu/
GrWindowRectangles.h 20 ~GrWindowRectangles() { SkSafeUnref(this->rec()); }
39 struct Rec;
41 const Rec* rec() const { return fCount <= kNumLocalWindows ? nullptr : fRec; } function in class:GrWindowRectangles
46 Rec* fRec; // If fCount > kNumLocalWindows.
50 struct GrWindowRectangles::Rec : public GrNonAtomicRef<Rec> {
51 Rec(const SkIRect* windows, int numWindows) {
55 Rec() = default;
65 SkSafeUnref(this->rec());
    [all...]
  /external/skia/src/shaders/
SkPictureShader.cpp 81 struct BitmapShaderRec : public SkResourceCache::Rec {
98 static bool Visitor(const SkResourceCache::Rec& baseRec, void* contextShader) {
99 const BitmapShaderRec& rec = static_cast<const BitmapShaderRec&>(baseRec); local
102 *result = rec.fShader;
288 bool SkPictureShader::onAppendStages(const StageRec& rec) const {
290 auto& bitmapShader = *rec.fAlloc->make<sk_sp<SkShader>>();
292 bitmapShader = this->refBitmapShader(rec.fCTM, rec.fLocalM, rec.fDstCS, &compositeLocalMatrix);
294 StageRec localRec = rec;
    [all...]
  /external/skia/tests/
ImageGeneratorTest.cpp 109 for (const auto& rec : recs) {
110 SkImageInfo info = SkImageInfo::Make(100, 100, rec.fColorType, rec.fAlphaType, colorspace);
112 REPORTER_ASSERT(reporter, success == rec.fExpectSuccess);
  /external/skqp/include/core/
SkRasterHandleAllocator.h 43 struct Rec {
55 * is desired to give clients access to those pixels. The rec also contains a proc and context
62 virtual bool allocHandle(const SkImageInfo&, Rec*) = 0;
75 * If rec is non-null, then it will be used as the base-layer of pixels/handle.
76 * If rec is null, then the allocator will be called for the base-layer as well.
79 const SkImageInfo&, const Rec* rec = nullptr);
  /external/skqp/src/gpu/
GrWindowRectangles.h 20 ~GrWindowRectangles() { SkSafeUnref(this->rec()); }
39 struct Rec;
41 const Rec* rec() const { return fCount <= kNumLocalWindows ? nullptr : fRec; } function in class:GrWindowRectangles
46 Rec* fRec; // If fCount > kNumLocalWindows.
50 struct GrWindowRectangles::Rec : public GrNonAtomicRef<Rec> {
51 Rec(const SkIRect* windows, int numWindows) {
55 Rec() = default;
65 SkSafeUnref(this->rec());
    [all...]
  /external/skqp/src/shaders/
SkPictureShader.cpp 88 struct BitmapShaderRec : public SkResourceCache::Rec {
105 static bool Visitor(const SkResourceCache::Rec& baseRec, void* contextShader) {
106 const BitmapShaderRec& rec = static_cast<const BitmapShaderRec&>(baseRec); local
109 *result = rec.fShader;
284 bool SkPictureShader::onAppendStages(const StageRec& rec) const {
286 auto& bitmapShader = *rec.fAlloc->make<sk_sp<SkShader>>();
287 bitmapShader = this->refBitmapShader(rec.fCTM, rec.fLocalM, rec.fDstCS);
288 return bitmapShader && as_SB(bitmapShader)->appendStages(rec);
    [all...]
  /external/skqp/tests/
ImageGeneratorTest.cpp 106 for (const auto& rec : recs) {
107 SkImageInfo info = SkImageInfo::Make(100, 100, rec.fColorType, rec.fAlphaType, colorspace);
109 REPORTER_ASSERT(reporter, success == rec.fExpectSuccess);
  /system/vold/
main.cpp 229 auto rec = &fstab_default->recs[i]; local
230 if (fs_mgr_is_quota(rec)) {
233 if (rec->reserved_size > 0) {
237 if (fs_mgr_is_voldmanaged(rec)) {
238 if (fs_mgr_is_nonremovable(rec)) {
243 std::string sysPattern(rec->blk_device);
244 std::string nickname(rec->label);
247 if (fs_mgr_is_encryptable(rec)) {
251 if (fs_mgr_is_noemulatedsd(rec)
  /external/skqp/tools/
remote_demo.cpp 47 explicit ScalerContextRecDescriptor(const SkScalerContextRec& rec) {
50 desc->addEntry(kRec_SkDescriptorTag, sizeof(rec), &rec);
84 explicit Op(const SkScalerContextRec& rec) : descriptor{rec} {}
107 const SkScalerContextRec& rec,
109 Op* op = this->createOp(0, tf, rec);
117 const SkScalerContextRec& rec,
119 Op* op = this->createOp(1, tf, rec);
128 const SkScalerContextRec& rec,
    [all...]
  /external/harfbuzz_ng/src/hb-ucdn/
ucdn.c 301 const unsigned short *rec; local
307 rec = get_decomp_record(code);
308 len = rec[0] >> 8;
310 if ((rec[0] & 0xff) != 0 || len == 0)
313 rec++;
314 *a = decode_utf16(&rec);
316 *b = decode_utf16(&rec);
349 const unsigned short *rec = get_decomp_record(code); local
350 len = rec[0] >> 8;
355 rec++
    [all...]

Completed in 470 milliseconds

1 2 3 4 5 6 7 891011>>