| /external/selinux/libselinux/src/ |
| D | label.c | 131 int selabel_validate(struct selabel_handle *rec, in selabel_validate() 149 static int selabel_fini(struct selabel_handle *rec, in selabel_fini() 168 selabel_lookup_common(struct selabel_handle *rec, int translating, in selabel_lookup_common() 189 selabel_lookup_bm_common(struct selabel_handle *rec, int translating, in selabel_lookup_bm_common() 217 struct selabel_handle *rec = NULL; in selabel_open() local 247 int selabel_lookup(struct selabel_handle *rec, char **con, in selabel_lookup() 260 int selabel_lookup_raw(struct selabel_handle *rec, char **con, in selabel_lookup_raw() 273 bool selabel_partial_match(struct selabel_handle *rec, const char *key) in selabel_partial_match() 286 bool selabel_get_digests_all_partial_matches(struct selabel_handle *rec, in selabel_get_digests_all_partial_matches() 301 bool selabel_hash_all_partial_matches(struct selabel_handle *rec, in selabel_hash_all_partial_matches() [all …]
|
| D | label_backends_android.c | 85 static int process_line(struct selabel_handle *rec, in process_line() 148 static int process_file(struct selabel_handle *rec, const char *path) in process_file() 216 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, in init() 281 static void closef(struct selabel_handle *rec) in closef() 307 static struct selabel_lookup_rec *property_lookup(struct selabel_handle *rec, in property_lookup() 342 static struct selabel_lookup_rec *lookup_exact_match(struct selabel_handle *rec, in lookup_exact_match() 379 int selabel_property_init(struct selabel_handle *rec, in selabel_property_init() 397 int selabel_exact_match_init(struct selabel_handle *rec, in selabel_exact_match_init()
|
| D | label_media.c | 34 unsigned lineno, struct selabel_handle *rec) in process_line() 70 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, in init() 152 static void close(struct selabel_handle *rec) in close() 171 static struct selabel_lookup_rec *lookup(struct selabel_handle *rec, in lookup() 196 static void stats(struct selabel_handle *rec) in stats() 208 int selabel_media_init(struct selabel_handle *rec, in selabel_media_init()
|
| D | label_x.c | 36 unsigned lineno, struct selabel_handle *rec) in process_line() 97 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, in init() 179 static void close(struct selabel_handle *rec) in close() 198 static struct selabel_lookup_rec *lookup(struct selabel_handle *rec, in lookup() 222 static void stats(struct selabel_handle *rec) in stats() 234 int selabel_x_init(struct selabel_handle *rec, const struct selinux_opt *opts, in selabel_x_init()
|
| D | label_db.c | 175 db_close(struct selabel_handle *rec) in db_close() 194 db_lookup(struct selabel_handle *rec, const char *key, int type) in db_lookup() 221 db_stats(struct selabel_handle *rec) in db_stats() 238 struct selabel_handle *rec) in db_init() 353 int selabel_db_init(struct selabel_handle *rec, in selabel_db_init()
|
| D | label_file.c | 98 struct selabel_handle *rec, const char *path) in process_text_file() 116 static int load_mmap(FILE *fp, size_t len, struct selabel_handle *rec, in load_mmap() 533 struct selabel_handle *rec, in process_file() 714 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, in init() 847 static void closef(struct selabel_handle *rec) in closef() 901 static struct spec **lookup_all(struct selabel_handle *rec, in lookup_all() 1044 static struct spec *lookup_common(struct selabel_handle *rec, in lookup_common() 1062 static bool get_digests_all_partial_matches(struct selabel_handle *rec, in get_digests_all_partial_matches() 1110 static bool hash_all_partial_matches(struct selabel_handle *rec, const char *key, uint8_t *digest) in hash_all_partial_matches() 1141 static struct selabel_lookup_rec *lookup(struct selabel_handle *rec, in lookup() [all …]
|
| /external/antlr/runtime/Cpp/include/ |
| D | antlr3rewritestreams.inl | 12 RecognizerType* rec, ANTLR_UINT8* description, TokenType* oneElement) 21 RecognizerType* rec, ANTLR_UINT8* description, const ElementsType& elements) 29 RecognizerType* rec, ANTLR_UINT8* description) 40 RecognizerType* rec, ANTLR_UINT8* description) 46 …RuleTokenStream<ImplTraits>::RewriteRuleTokenStream(TreeAdaptorType* adaptor, RecognizerType* rec, 54 RecognizerType* rec, ANTLR_UINT8* description, const ElementsType& elements) 61 RecognizerType* rec, ANTLR_UINT8* description) 67 …SubtreeStream<ImplTraits>::RewriteRuleSubtreeStream(TreeAdaptorType* adaptor, RecognizerType* rec, 75 RecognizerType* rec, ANTLR_UINT8* description, const ElementsType& elements) 82 RecognizerType* rec, ANTLR_UINT8* description) [all …]
|
| /external/rust/crates/csv/src/ |
| D | byte_record.rs | 867 let mut rec = ByteRecord::new(); in record_1() localVariable 878 let mut rec = ByteRecord::new(); in record_2() localVariable 891 let rec = ByteRecord::new(); in empty_record() localVariable 900 let mut rec = ByteRecord::from(vec![b" \t\n\r\x0c"]); in trim_whitespace_only() localVariable 907 let mut rec = ByteRecord::from(vec![b" abc"]); in trim_front() localVariable 911 let mut rec = ByteRecord::from(vec![b(" abc"), b(" xyz")]); in trim_front() localVariable 919 let mut rec = ByteRecord::from(vec![b"abc "]); in trim_back() localVariable 923 let mut rec = ByteRecord::from(vec![b("abc "), b("xyz ")]); in trim_back() localVariable 931 let mut rec = ByteRecord::from(vec![b" abc "]); in trim_both() localVariable 935 let mut rec = ByteRecord::from(vec![b(" abc "), b(" xyz ")]); in trim_both() localVariable [all …]
|
| D | string_record.rs | 753 let mut rec = StringRecord::from(vec![" abc"]); in trim_front() localVariable 757 let mut rec = StringRecord::from(vec![" abc", " xyz"]); in trim_front() localVariable 765 let mut rec = StringRecord::from(vec!["abc "]); in trim_back() localVariable 769 let mut rec = StringRecord::from(vec!["abc ", "xyz "]); in trim_back() localVariable 777 let mut rec = StringRecord::from(vec![" abc "]); in trim_both() localVariable 781 let mut rec = StringRecord::from(vec![" abc ", " xyz "]); in trim_both() localVariable 789 let mut rec = StringRecord::from(vec![""]); in trim_does_not_panic_on_empty_records_1() localVariable 796 let mut rec = StringRecord::from(vec!["", ""]); in trim_does_not_panic_on_empty_records_2() localVariable 804 let mut rec = StringRecord::new(); in trim_does_not_panic_on_empty_records_3() localVariable 811 let mut rec = StringRecord::from(vec![ in trim_whitespace_only() localVariable
|
| D | reader.rs | 1917 rec: StringRecord, field 1975 rec: StringRecord, field 2023 rec: StringRecord, field 2065 rec: StringRecord, field 2099 rec: ByteRecord, field 2141 rec: ByteRecord, field 2200 let mut rec = ByteRecord::new(); in read_byte_record() localVariable 2224 let mut rec = ByteRecord::new(); in read_trimmed_records_and_headers() localVariable 2229 let mut rec = StringRecord::new(); in read_trimmed_records_and_headers() localVariable 2250 let mut rec = ByteRecord::new(); in read_trimmed_header() localVariable [all …]
|
| /external/skia/src/core/ |
| D | SkResourceCache.cpp | 107 Rec* rec = fHead; in ~SkResourceCache() local 122 Rec* rec = *found; in find() local 146 void SkResourceCache::add(Rec* rec, void* payload) { in add() 180 void SkResourceCache::remove(Rec* rec) { in remove() 216 Rec* rec = fTail; in purgeAsNeeded() local 248 Rec* rec = fTail; in purgeSharedID() local 277 Rec* rec = fTail; in visitAll() local 308 void SkResourceCache::release(Rec* rec) { in release() 328 void SkResourceCache::moveToHead(Rec* rec) { in moveToHead() 347 void SkResourceCache::addToHead(Rec* rec) { in addToHead() [all …]
|
| D | SkPathEffect.cpp | 16 bool SkPathEffect::filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, in filterPath() 21 bool SkPathEffect::filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, in filterPath() 37 const SkStrokeRec& rec, const SkMatrix& mx, const SkRect* rect) const { in asPoints() argument 101 bool onFilterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, in onFilterPath() 162 bool onFilterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, in onFilterPath()
|
| D | SkBitmapCache.cpp | 107 Rec* rec = static_cast<Rec*>(ctx); in ReleaseProc() local 150 Rec* rec = (Rec*)&baseRec; in Finder() local 174 void SkBitmapCache::PrivateDeleteRec(Rec* rec) { delete rec; } in PrivateDeleteRec() 204 void SkBitmapCache::Add(RecPtr rec, SkBitmap* bitmap) { in Add() 252 const MipMapRec& rec = static_cast<const MipMapRec&>(baseRec); in Finder() local 295 MipMapRec* rec = new MipMapRec(SkBitmapCacheDesc::Make(image), mipmap); in AddAndRef() local
|
| D | SkScalerContext.cpp | 47 SkScalerContextRec rec = in PreprocessRec() local 139 SkMaskGamma::PreBlend SkScalerContext::GetMaskPreBlend(const SkScalerContextRec& rec) { in GetMaskPreBlend() 498 SkStrokeRec rec(SkStrokeRec::kFill_InitStyle); in generateMask() local 757 SkStrokeRec rec(SkStrokeRec::kFill_InitStyle); in internalGetPath() local 991 static bool too_big_for_lcd(const SkScalerContextRec& rec, bool checkPost2x2) { in too_big_for_lcd() 1008 SkScalerContextRec* rec, in MakeRecAndEffects() 1168 SkScalerContextRec rec; in CreateDescriptorAndEffectsUsingPaint() local 1173 static size_t calculate_size_and_flatten(const SkScalerContextRec& rec, in calculate_size_and_flatten() 1190 static void generate_descriptor(const SkScalerContextRec& rec, in generate_descriptor() 1205 const SkScalerContextRec& rec, in AutoDescriptorGivenRecAndEffects() [all …]
|
| /external/antlr/runtime/C/src/ |
| D | antlr3rewritestreams.c | 187 antlr3RewriteRuleElementStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec,… in antlr3RewriteRuleElementStreamNewAE() 257 antlr3RewriteRuleElementStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec… in antlr3RewriteRuleElementStreamNewAEE() 280 antlr3RewriteRuleElementStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec… in antlr3RewriteRuleElementStreamNewAEV() 309 antlr3RewriteRuleTOKENStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, p… in antlr3RewriteRuleTOKENStreamNewAE() 333 antlr3RewriteRuleTOKENStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, … in antlr3RewriteRuleTOKENStreamNewAEE() 352 antlr3RewriteRuleTOKENStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, … in antlr3RewriteRuleTOKENStreamNewAEV() 373 antlr3RewriteRuleSubtreeStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec,… in antlr3RewriteRuleSubtreeStreamNewAE() 395 antlr3RewriteRuleSubtreeStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec… in antlr3RewriteRuleSubtreeStreamNewAEE() 418 antlr3RewriteRuleSubtreeStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec… in antlr3RewriteRuleSubtreeStreamNewAEV() 442 antlr3RewriteRuleNODEStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pA… in antlr3RewriteRuleNODEStreamNewAE() [all …]
|
| /external/jackson-core/src/test/java/com/fasterxml/jackson/core/io/ |
| D | UTF8WriterTest.java | 16 BufferRecycler rec = new BufferRecycler(); in testSimple() local 47 BufferRecycler rec = new BufferRecycler(); in testSimpleAscii() local 68 BufferRecycler rec = new BufferRecycler(); in testFlushAfterClose() local 89 BufferRecycler rec = new BufferRecycler(); in testSurrogatesOk() local 116 BufferRecycler rec = new BufferRecycler(); in testSurrogatesFail() local
|
| /external/skia/tools/ |
| D | SkMetaData.cpp | 15 Rec* rec = fRec; in reset() local 59 Rec* rec; in set() local 98 const Rec* rec = this->find(name, kS32_Type); in findS32() local 111 const Rec* rec = this->find(name, kScalar_Type); in findScalar() local 124 const Rec* rec = this->find(name, kScalar_Type); in findScalars() local 137 const Rec* rec = this->find(name, kPtr_Type); in findPtr() local 151 const Rec* rec = this->find(name, kBool_Type); in findBool() local 250 void SkMetaData::Rec::Free(Rec* rec) { in Free()
|
| /external/pdfium/core/fpdfapi/font/ |
| D | cfx_cttgsubtable.cpp | 189 void CFX_CTTGSUBTable::ParseScript(FT_Bytes raw, TScriptRecord* rec) { in ParseScript() 199 void CFX_CTTGSUBTable::ParseLangSys(FT_Bytes raw, TLangSysRecord* rec) { in ParseLangSys() 217 void CFX_CTTGSUBTable::ParseFeature(FT_Bytes raw, TFeatureRecord* rec) { in ParseFeature() 232 void CFX_CTTGSUBTable::ParseLookup(FT_Bytes raw, TLookup* rec) { in ParseLookup() 249 auto rec = pdfium::MakeUnique<TCoverageFormat1>(); in ParseCoverage() local 254 auto rec = pdfium::MakeUnique<TCoverageFormat2>(); in ParseCoverage() local 262 TCoverageFormat1* rec) { in ParseCoverageFormat1() 271 TCoverageFormat2* rec) { in ParseCoverageFormat2() 283 std::unique_ptr<TSubTableBase>* rec) { in ParseSingleSubst() 298 void CFX_CTTGSUBTable::ParseSingleSubstFormat1(FT_Bytes raw, TSubTable1* rec) { in ParseSingleSubstFormat1() [all …]
|
| /external/skia/src/effects/ |
| D | SkLayerDrawLooper.cpp | 39 Rec* rec = fRecs; in ~SkLayerDrawLooper() local 157 const Rec* rec = fRecs; in asABlurShadow() local 202 Rec* rec = fRecs; in flatten() local 249 Rec* rec = fRecs; in ~Builder() local 260 Rec* rec = new Rec; in addLayer() local 281 Rec* rec = new Rec; in addLayerOnTop() local
|
| D | SkDashPathEffect.cpp | 42 bool SkDashImpl::onFilterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, in onFilterPath() 48 static void outset_for_stroke(SkRect* rect, const SkStrokeRec& rec) { in outset_for_stroke() 62 static bool cull_line(SkPoint* pts, const SkStrokeRec& rec, in cull_line() 166 bool SkDashImpl::onAsPoints(PointData* results, const SkPath& src, const SkStrokeRec& rec, in onAsPoints()
|
| /external/skia/tests/ |
| D | NdkEncodeTest.cpp | 52 for (const auto& rec : gRecs) { in DEF_TEST() local 139 for (const auto& rec : gRecs) { in DEF_TEST() local 162 for (const auto& rec : gRecs) { in DEF_TEST() local 194 for (const auto& rec : gRecs) { in DEF_TEST() local 203 for (const auto& rec : gRecs) { in DEF_TEST() local 219 for (const auto& rec : gRecs) { in DEF_TEST() local 286 for (const auto& rec : gRecs) { in DEF_TEST() local 350 for (const auto& rec : gRecs) { in DEF_TEST() local
|
| /external/clang/test/Parser/ |
| D | cxx-ambig-paren-expr.cpp | 36 struct rec { rec(int); }; struct 40 struct rec { rec(int); }; struct 45 struct rec { rec(int); }; struct
|
| /external/skia/modules/sksg/src/ |
| D | SkSGMerge.cpp | 18 for (const auto& rec : fRecs) { in Merge() local 24 for (const auto& rec : fRecs) { in ~Merge() local 86 for (const auto& rec : fRecs) { in onRevalidate() local
|
| /external/e2fsprogs/lib/ext2fs/ |
| D | bb_inode.c | 61 struct set_badblock_record rec; in ext2fs_update_bb_inode() local 161 struct set_badblock_record *rec = (struct set_badblock_record *) in clear_bad_block_proc() local 218 struct set_badblock_record *rec = (struct set_badblock_record *) in set_bad_block_proc() local
|
| /external/skia/gm/ |
| D | gradients_no_texture.cpp | 167 static void make0(ColorPos* rec) { in make0() argument 196 static void make1(ColorPos* rec) { in make1() 205 static void make2(ColorPos* rec) { in make2() 219 static void make3(ColorPos* rec) { in make3() 270 ColorPos rec; in onDraw() local
|