Searched refs:ftype (Results 1 - 25 of 33) sorted by relevance

12

/external/clang/test/CodeGen/
H A Dblocks.c30 typedef double ftype(double);
33 ftype ^test2 = ^ftype {
/external/clang/test/SemaTemplate/
H A Dinstantiate-function-2.cpp39 typedef void ftype(int); typedef in namespace:PR9654
42 ftype f;
/external/skia/include/core/
H A DSkChunkAlloc.h72 Block* newBlock(size_t bytes, AllocFailType ftype);
73 Block* addBlockIfNecessary(size_t bytes, AllocFailType ftype);
/external/clang/test/CodeGenCXX/
H A Dlinkage.cpp124 typedef S(*ftype)(); typedef
125 return reinterpret_cast<void *>(f<ftype>);
141 typedef S(*ftype)(I * x); typedef
142 return reinterpret_cast<void *>(f<ftype>);
/external/v8/build/android/pylib/utils/
H A Dproguard.py106 def __init__(self, name, ftype, depth):
109 self.ftype = ftype
185 if self._annotation_stack[-1].ftype == _ELEMENT_ARRAY:
201 field.ref = constructors[field.ftype]()
214 assert parent.ftype in [_ELEMENT_ARRAY, _ELEMENT_ANNOTATION]
216 if type(value) is str and not field.ftype == _ELEMENT_PRIMITIVE:
221 if parent.ftype == _ELEMENT_ARRAY and field.name >= len(parent.ref):
/external/f2fs-tools/fsck/
H A Dfsck.c194 enum FILE_TYPE ftype, enum NODE_TYPE ntype,
256 if ((ntype == TYPE_INODE && ftype == F2FS_FT_DIR) ||
257 (ntype == TYPE_XATTR && ftype == F2FS_FT_XATTR)) {
267 if (ftype != F2FS_FT_ORPHAN ||
314 u32 nid, enum FILE_TYPE ftype, enum NODE_TYPE ntype,
323 if (sanity_check_nid(sbi, nid, node_blk, ftype, ntype, &ni))
327 fsck_chk_inode_blk(sbi, nid, ftype, node_blk, blk_cnt, &ni);
333 fsck_chk_dnode_blk(sbi, inode, nid, ftype, node_blk,
339 fsck_chk_idnode_blk(sbi, inode, ftype, node_blk,
345 fsck_chk_didnode_blk(sbi, inode, ftype, node_bl
192 sanity_check_nid(struct f2fs_sb_info *sbi, u32 nid, struct f2fs_node *node_blk, enum FILE_TYPE ftype, enum NODE_TYPE ntype, struct node_info *ni) argument
313 fsck_chk_node_blk(struct f2fs_sb_info *sbi, struct f2fs_inode *inode, u32 nid, enum FILE_TYPE ftype, enum NODE_TYPE ntype, u32 *blk_cnt) argument
360 fsck_chk_inode_blk(struct f2fs_sb_info *sbi, u32 nid, enum FILE_TYPE ftype, struct f2fs_node *node_blk, u32 *blk_cnt, struct node_info *ni) argument
553 fsck_chk_dnode_blk(struct f2fs_sb_info *sbi, struct f2fs_inode *inode, u32 nid, enum FILE_TYPE ftype, struct f2fs_node *node_blk, u32 *blk_cnt, struct node_info *ni) argument
584 fsck_chk_idnode_blk(struct f2fs_sb_info *sbi, struct f2fs_inode *inode, enum FILE_TYPE ftype, struct f2fs_node *node_blk, u32 *blk_cnt) argument
604 fsck_chk_didnode_blk(struct f2fs_sb_info *sbi, struct f2fs_inode *inode, enum FILE_TYPE ftype, struct f2fs_node *node_blk, u32 *blk_cnt) argument
673 enum FILE_TYPE ftype; local
857 fsck_chk_data_blk(struct f2fs_sb_info *sbi, u32 blk_addr, u32 *child_cnt, u32 *child_files, int last_blk, enum FILE_TYPE ftype, u32 parent_nid, u16 idx_in_node, u8 ver) argument
[all...]
/external/selinux/policycoreutils/gui/
H A DfcontextPage.py178 ftype = store.get_value(iter, FTYPE_COL)
180 (rc, out) = commands.getstatusoutput("semanage fcontext -d -f '%s' '%s'" % (ftype, fspec))
191 ftype = ["", "--", "-d", "-c", "-b", "-s", "-l", "-p"]
198 (rc, out) = commands.getstatusoutput("semanage fcontext -a -t %s -r %s -f '%s' '%s'" % (type, mls, ftype[active], fspec))
206 self.store.set_value(iter, FTYPE_COL, ftype)
215 ftype = list_model.get_value(iter, 0)
217 (rc, out) = commands.getstatusoutput("semanage fcontext -m -t %s -r %s -f '%s' '%s'" % (type, mls, ftype, fspec))
225 self.store.set_value(iter, FTYPE_COL, ftype)
/external/skia/src/core/
H A DSkChunkAlloc.cpp118 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) { argument
125 ftype == kThrow_AllocFailType ? SK_MALLOC_THROW : 0);
139 SkChunkAlloc::Block* SkChunkAlloc::addBlockIfNecessary(size_t bytes, AllocFailType ftype) { argument
143 Block* block = this->newBlock(bytes, ftype);
160 void* SkChunkAlloc::alloc(size_t bytes, AllocFailType ftype) { argument
165 Block* block = this->addBlockIfNecessary(bytes, ftype);
/external/v8/src/
H A Dcodegen.cc89 const char* ftype; local
94 ftype = "builtin";
98 ftype = "user-defined";
103 PrintF("[generating %s code for %s function: %s]\n", kind, ftype,
H A Dflag-definitions.h26 #define FLAG_FULL(ftype, ctype, nam, def, cmt) extern ctype FLAG_##nam;
27 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) \
33 #define FLAG_FULL(ftype, ctype, nam, def, cmt) ctype FLAG_##nam = def;
39 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
45 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
46 { Flag::TYPE_##ftype, #nam, &FLAG_##nam, &FLAGDEFAULT_##nam, cmt, false } \
48 #define FLAG_ALIAS(ftype, ctype, alias, nam) \
50 Flag::TYPE_##ftype, #alias, &FLAG_##nam, &FLAGDEFAULT_##nam, \
69 #define FLAG_FULL(ftype, ctype, nam, def, cmt)
73 #define FLAG_READONLY(ftype, ctyp
[all...]
/external/vulkan-validation-layers/
H A Dreg.py490 # ftype - type of feature, 'type' | 'enum' | 'command'
492 def generateFeature(self, fname, ftype, dictionary):
502 self.gen.logMsg('diag', '*** Skipping', ftype, fname, '(not required)')
505 self.gen.logMsg('diag', '*** Skipping', ftype, fname, '(already declared)')
518 if (ftype == 'type'):
545 elif (ftype == 'command'):
552 elif (ftype == 'enum'):
556 self.gen.logMsg('diag', '*** Emitting', ftype, 'decl for', fname)
559 self.gen.logMsg('diag', '*** Skipping', ftype, fname,
/external/curl/tests/
H A Ddirectories.pm202 my $ftype = $file{'type'} ? $file{'type'} : "-";
215 push(@contentlist, "$ftype$fperm $fhlink $fuser $fgroup $fsize $ftime $file{'name'}$eol");
/external/javassist/src/main/javassist/tools/reflect/
H A DReflection.java364 CtClass ftype = f.getType();
366 = CtNewMethod.wrapped(ftype, readPrefix + name,
374 writeParam[1] = ftype;
/external/selinux/policycoreutils/semanage/
H A Dseobject.py1823 def __add(self, target, type, ftype="", serange="", seuser="system_u"):
1835 (rc, k) = semanage_fcontext_key_create(self.sh, target, file_types[ftype])
1871 semanage_fcontext_set_type(fcontext, file_types[ftype])
1882 def add(self, target, type, ftype="", serange="", seuser="system_u"):
1884 self.__add(target, type, ftype, serange, seuser)
1887 def __modify(self, target, setype, ftype, serange, seuser):
1895 (rc, k) = semanage_fcontext_key_create(self.sh, target, file_types[ftype])
1942 def modify(self, target, setype, ftype, serange, seuser):
1944 self.__modify(target, setype, ftype, serange, seuser)
1956 ftype
[all...]
H A Dsemanage344 fcontext_args = {'list': [('equal', 'ftype', 'seuser', 'type'), ('')], 'add': [('locallist'), ('type', 'file_spec')], 'modify': [('locallist'), ('type', 'file_spec')], 'delete': [('locallist'), ('file_spec')], 'extract': [('locallist', 'equal', 'ftype', 'seuser', 'type'), ('')], 'deleteall': [('locallist'), ('')]}
346 fcontext_equal_args = {'equal': [('list', 'locallist', 'type', 'ftype', 'seuser', 'deleteall', 'extract'), ()]}
363 OBJECT.add(args.file_spec, args.type, args.ftype, args.range, args.seuser)
368 OBJECT.modify(args.file_spec, args.type, args.ftype, args.range, args.seuser)
373 OBJECT.delete(args.file_spec, args.ftype)
412 fcontextParser.add_argument('-f', '--ftype', default="", choices=["a", "f", "d", "c", "b", "s", "l", "p"], help=_(ftype_help))
/external/selinux/policycoreutils/sepolicy/sepolicy/
H A D__init__.py131 mpaths[f] = (fcdict[f]["regex"], file_type_str[fcdict[f]["ftype"]])
168 mpaths[f] = (fcdict[f]["regex"], file_type_str[fcdict[f]["ftype"]])
280 ftype = trans_file_type_str[rec[1]]
282 ftype = "a"
284 local_files.append((rec[0], ftype))
311 ftype = trans_file_type_str[rec[1]]
313 ftype = "a"
319 fcdict[t] = {"regex": [rec[0]], "ftype": ftype}
423 mpaths[f] = (fcdict[f]["regex"], file_type_str[fcdict[f]["ftype"]])
[all...]
H A Dgui.py1541 ftype = self.executable_files_liststore.get_value(iter, 1)
1543 self.combo_set_active_text(self.files_type_combobox, ftype)
1606 ftype = self.more_types_files_liststore.get_value(iter, 0)
1607 self.combo_set_active_text(self.files_type_combobox, ftype)
1886 def init_modified_files_liststore(self, tree, app, ipage, operation, path, fclass, ftype):
1889 tree.set_value(iter, 1, ftype)
2715 def init_dictionary(self, dic, app, ipage, operation, p, q, ftype, mls, changed, old):
2719 dic[app, ipage, operation][p, q] = {'type': ftype, 'mls': mls, 'changed': changed, 'old': old}
/external/opencv3/modules/imgproc/test/
H A Dtest_filter.cpp1307 int ftype = CV_32FC1;
1308 double kernel_scale = type != ftype ? 1./255 : 1;
1313 cvtest::filter2D( src, dx2, ftype, kernel*kernel_scale, anchor, 0, BORDER_REPLICATE );
1315 cvtest::filter2D( src, dy2, ftype, kernel*kernel_scale, anchor, 0, BORDER_REPLICATE );
1341 cvtest::filter2D( dx2, dx2, ftype, kernel, anchor, 0, BORDER_REPLICATE );
1342 cvtest::filter2D( dy2, dy2, ftype, kernel, anchor, 0, BORDER_REPLICATE );
1343 cvtest::filter2D( dxdy, dxdy, ftype, kernel, anchor, 0, BORDER_REPLICATE );
1518 int type = src.type(), ftype = CV_32FC1;
1521 double kernel_scale = type != ftype ? 1./255 : 1.;
1526 cvtest::filter2D(src, dx, ftype, kerne
[all...]
H A Dtest_imgwarp.cpp1232 int ftype = CV_MAKETYPE(CV_32F,src0.channels()); local
1239 dst.create(dst0.size(), ftype);
1356 int ftype = CV_MAKETYPE(CV_32F,src0.channels()); local
1364 dst.create(dst0.size(), ftype);
/external/valgrind/include/vki/
H A Dvki-arm-linux.h557 unsigned char ftype[8]; member in struct:vki_user_fp
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DCodeEmitter.java468 void emit_field(int opcode, Type ctype, String name, Type ftype) { argument
472 ftype.getDescriptor());
/external/selinux/libsemanage/src/
H A Dpywrap-test.py622 ftype = semanage.semanage_fcontext_get_type(fcon)
623 print "SEFContext type set: ", semanage.semanage_fcontext_get_type_str(ftype)
/external/guice/extensions/persist/lib/
H A Dcglib-nodep-3.0.jarMETA-INF/MANIFEST.MF LICENSE NOTICE net/sf/cglib/beans/BeanCopier$BeanCopierKey.class BeanCopier. ...
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/guice/lib/build/
H A Dcglib-3.1.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/cglib/ net/sf/cglib/beans/ ...

Completed in 1763 milliseconds

12