HomeSort by relevance Sort by last modified time
    Searched refs:after_dot (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/tools/gn/
filesystem_utils.cc 34 size_t after_dot,
36 if (after_dot == path.size()) {
41 if (path[after_dot] == '/') {
47 if (path[after_dot] == '.') {
49 if (after_dot + 1 == path.size()) {
54 if (path[after_dot + 1] == '/') {
  /external/chromium/googleurl/src/
url_canon_path.cc 123 // If the input is "../foo", |after_dot| = 1, |end| = 6, and
127 DotDisposition ClassifyAfterDot(const CHAR* spec, int after_dot,
129 if (after_dot == end) {
134 if (url_parse::IsURLSlash(spec[after_dot])) {
140 int second_dot_len = IsDot(spec, after_dot, end);
142 int after_second_dot = after_dot + second_dot_len;
  /external/chromium_org/url/
url_canon_path.cc 97 // If the input is "../foo", |after_dot| = 1, |end| = 6, and
101 DotDisposition ClassifyAfterDot(const CHAR* spec, int after_dot,
103 if (after_dot == end) {
108 if (url_parse::IsURLSlash(spec[after_dot])) {
114 int second_dot_len = IsDot(spec, after_dot, end);
116 int after_second_dot = after_dot + second_dot_len;
  /cts/tools/dasm/src/java_cup/
lr_item_core.java 35 symbol after_dot = null; local

Completed in 145 milliseconds