HomeSort by relevance Sort by last modified time
    Searched full:dotdot (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/smali/smali/src/test/resources/LexerTest/
SymbolTest.tokens 0 DOTDOT("..") WHITE_SPACE("\n")
  /external/e2fsprogs/e2fsck/
dirinfo.c 38 ext2_ino_t dotdot; /* Parent according to '..' */ member in struct:dir_info_ent
168 ent.dotdot = parent;
196 dir->dotdot = parent;
235 ret_dir_info.dotdot = buf->dotdot;
238 printf("(%d,%d,%d)\n", ino, buf->dotdot, buf->parent);
253 ctx->dir_info->array[low].dotdot,
261 ctx->dir_info->array[high].dotdot,
274 ctx->dir_info->array[mid].dotdot,
297 printf("e2fsck_put_dir_info (%d, %d, %d)...", dir->ino, dir->dotdot,
    [all...]
e2fsck.h 97 ext2_ino_t dotdot; /* Parent according to '..' */ member in struct:dir_info
452 ext2_ino_t dotdot);
456 ext2_ino_t *dotdot);
  /external/curl/tests/data/
test1231 6 dotdot removal
37 HTTP URL with dotdot removal from path
test1232 8 dotdot removal
39 HTTP URL with dotdot removal from path using an HTTP proxy
test1241 3 # verify that dotdot removal can be disabled!
38 HTTP _without_ dotdot removal
  /external/curl/tests/unit/
unit1395.c 24 #include "dotdot.h"
38 struct dotdot { struct
47 const struct dotdot pairs[] = {
  /external/smali/smalidea/testData/
MissingDotDot.txt 88 PsiErrorElement:missing DOTDOT at ':'
113 PsiErrorElement:mismatched input '.blah' expecting DOTDOT
  /prebuilts/go/darwin-x86/src/path/
path.go 85 // dotdot is index in buf where .. must stop, either because
88 r, dotdot := 0, 0
91 r, dotdot = 1, 1
106 case out.w > dotdot:
109 for out.w > dotdot && out.index(out.w) != '/' {
119 dotdot = out.w
  /prebuilts/go/linux-x86/src/path/
path.go 85 // dotdot is index in buf where .. must stop, either because
88 r, dotdot := 0, 0
91 r, dotdot = 1, 1
106 case out.w > dotdot:
109 for out.w > dotdot && out.index(out.w) != '/' {
119 dotdot = out.w
  /external/smali/smalidea/src/main/java/org/jf/smalidea/
SmaliHighlightingColors.java 58 public static final TextAttributesKey DOTDOT = createTextAttributesKey(
59 "DOTDOT", DefaultLanguageHighlighterColors.PREDEFINED_SYMBOL);
SmaliTokens.java 67 @SuppressWarnings({"UnusedDeclaration"}) public static IElementType DOTDOT;
185 tokenColors.put("DOTDOT", SmaliHighlightingColors.DOTDOT);
  /external/curl/lib/
dotdot.c 27 #include "dotdot.h"
42 * This function gets a zero-terminated path with dot and dotdot sequences
82 * dotdot-operation and then append it again at the end to the output
Makefile.inc 55 curl_multibyte.c hostcheck.c conncache.c pipeline.c dotdot.c \
74 curl_setup_once.h multihandle.h setup-vms.h pipeline.h dotdot.h \
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
AbstractDirectory.java 329 final FatDirectoryEntry dotDot = FatDirectoryEntry.create(true);
330 dotDot.setShortName(ShortName.DOT_DOT);
331 dotDot.setStartCluster(getStorageCluster());
332 copyDateTimeFields(entry, dotDot);
333 dir.addEntry(dotDot);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 49 static string dotdot = ".*[^.]\\.\\.[^.].*"; field in class:Antlr.Runtime.Tree.TreeParser
51 static Regex dotdotPattern = new Regex(dotdot, RegexOptions.Compiled);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeParser.cs 51 static string dotdot = ".*[^.]\\.\\.[^.].*"; field in class:Antlr.Runtime.Tree.TreeParser
53 static Regex dotdotPattern = new Regex( dotdot, RegexOptions.Compiled );
  /external/python/cpython3/Lib/
posixpath.py 336 dotdot = b'..'
341 dotdot = '..'
355 if (comp != dotdot or (not initial_slashes and not new_comps) or
356 (new_comps and new_comps[-1] == dotdot)):
  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 104 // dotdot is index in buf where .. must stop, either because
108 r, dotdot := 0, 0
111 r, dotdot = 1, 1
126 case out.w > dotdot:
129 for out.w > dotdot && !os.IsPathSeparator(out.index(out.w)) {
139 dotdot = out.w
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 104 // dotdot is index in buf where .. must stop, either because
108 r, dotdot := 0, 0
111 r, dotdot = 1, 1
126 case out.w > dotdot:
129 for out.w > dotdot && !os.IsPathSeparator(out.index(out.w)) {
139 dotdot = out.w
  /prebuilts/go/darwin-x86/src/net/url/
url_test.go 1060 {"http://foo.com/bar/baz", "quux/dotdot/../tail", "http://foo.com/bar/quux/tail"},
1061 {"http://foo.com/bar/baz", "quux/./dotdot/../tail", "http://foo.com/bar/quux/tail"},
1062 {"http://foo.com/bar/baz", "quux/./dotdot/.././tail", "http://foo.com/bar/quux/tail"},
1063 {"http://foo.com/bar/baz", "quux/./dotdot/./../tail", "http://foo.com/bar/quux/tail"},
1064 {"http://foo.com/bar/baz", "quux/./dotdot/dotdot/././../../tail", "http://foo.com/bar/quux/tail"},
1065 {"http://foo.com/bar/baz", "quux/./dotdot/dotdot/./.././../tail", "http://foo.com/bar/quux/tail"},
1066 {"http://foo.com/bar/baz", "quux/./dotdot/dotdot/dotdot/./../../.././././tail", "http://foo.com/bar/quux/tail"}
    [all...]
  /prebuilts/go/linux-x86/src/net/url/
url_test.go 1060 {"http://foo.com/bar/baz", "quux/dotdot/../tail", "http://foo.com/bar/quux/tail"},
1061 {"http://foo.com/bar/baz", "quux/./dotdot/../tail", "http://foo.com/bar/quux/tail"},
1062 {"http://foo.com/bar/baz", "quux/./dotdot/.././tail", "http://foo.com/bar/quux/tail"},
1063 {"http://foo.com/bar/baz", "quux/./dotdot/./../tail", "http://foo.com/bar/quux/tail"},
1064 {"http://foo.com/bar/baz", "quux/./dotdot/dotdot/././../../tail", "http://foo.com/bar/quux/tail"},
1065 {"http://foo.com/bar/baz", "quux/./dotdot/dotdot/./.././../tail", "http://foo.com/bar/quux/tail"},
1066 {"http://foo.com/bar/baz", "quux/./dotdot/dotdot/dotdot/./../../.././././tail", "http://foo.com/bar/quux/tail"}
    [all...]
  /external/fsck_msdos/
dir.c 451 int dot, dotdot; local
452 dot = dotdot = 0;
503 dotdot=1;
507 if (!dot || !dotdot) {
511 if (!dotdot)
550 int dot,dotdot; local
551 dot = dotdot = 0;
  /toolchain/binutils/binutils-2.27/
config-ml.in 690 # Eg: if ${ml_dir} = m68000/m68881, dotdot = ../../
691 dotdot=../`echo ${ml_dir} | sed -e 's|[^/]||g' -e 's|/|../|g'`
702 ../${dotdot}${ml_unsubdir}symlink-tree ../${dotdot}${ml_unsubdir}${ml_libdir} "")
712 multisrctop=${dotdot}
720 ml_newsrcdir=${dotdot}${srcdir}
730 *) ml_recprog=${dotdot}${progname} ;;
  /external/smali/smalidea/src/main/antlr/
smalideaParser.g 479 dotdot
480 : DOTDOT;
906 : open_brace (register (dotdot register)?)? close_brace;
913 : CATCH_DIRECTIVE nonvoid_type_descriptor open_brace label_ref dotdot label_ref close_brace label_ref
922 : CATCHALL_DIRECTIVE open_brace label_ref dotdot label_ref close_brace label_ref
    [all...]

Completed in 1582 milliseconds

1 2 3