Home
last modified time | relevance | path

Searched refs:dotdot (Results 1 – 7 of 7) sorted by relevance

/external/e2fsprogs/e2fsck/
Ddirinfo.c32 ext2_ino_t dotdot; /* Parent according to '..' */ member
138 ent.dotdot = parent; in e2fsck_add_dir_info()
167 dir->dotdot = parent; in e2fsck_add_dir_info()
205 ret_dir_info.dotdot = buf->dotdot; in e2fsck_get_dir_info()
208 printf("(%d,%d,%d)\n", ino, buf->dotdot, buf->parent); in e2fsck_get_dir_info()
222 ctx->dir_info->array[low].dotdot, in e2fsck_get_dir_info()
230 ctx->dir_info->array[high].dotdot, in e2fsck_get_dir_info()
243 ctx->dir_info->array[mid].dotdot, in e2fsck_get_dir_info()
263 printf("e2fsck_put_dir_info (%d, %d, %d)...", dir->ino, dir->dotdot, in e2fsck_put_dir_info()
271 buf.dotdot = dir->dotdot; in e2fsck_put_dir_info()
[all …]
De2fsck.h89 ext2_ino_t dotdot; /* Parent according to '..' */ member
399 ext2_ino_t dotdot);
403 ext2_ino_t *dotdot);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DTreeParser.cs51 static string dotdot = ".*[^.]\\.\\.[^.].*"; field in Antlr.Runtime.Tree.TreeParser
53 static Regex dotdotPattern = new Regex( dotdot, RegexOptions.Compiled );
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeParser.cs49 static string dotdot = ".*[^.]\\.\\.[^.].*"; field in Antlr.Runtime.Tree.TreeParser
51 static Regex dotdotPattern = new Regex(dotdot, RegexOptions.Compiled);
/external/fsck_msdos/
Ddir.c451 int dot, dotdot; in check_dot_dot() local
452 dot = dotdot = 0; in check_dot_dot()
503 dotdot=1; in check_dot_dot()
507 if (!dot || !dotdot) { in check_dot_dot()
511 if (!dotdot) in check_dot_dot()
550 int dot,dotdot; in readDosDirSection() local
551 dot = dotdot = 0; in readDosDirSection()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeParser.java44 static String dotdot = ".*[^.]\\.\\.[^.].*"; field in TreeParser
46 static Pattern dotdotPattern = Pattern.compile(dotdot);
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dtree.py2227 dotdot = ".*[^.]\\.\\.[^.].*" variable in TreeParser
2229 dotdotPattern = re.compile(dotdot)