HomeSort by relevance Sort by last modified time
    Searched full:slash (Results 426 - 450 of 1294) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/fips181/
convert.cc 208 {47, "SLASH"},
342 {47, "SLASH" },
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckMethodAdapter.java 880 int slash; local
882 slash = name.indexOf('/', begin + 1);
883 if (slash == -1 || slash > max) {
884 slash = max;
886 checkIdentifier(name, begin, slash, null);
887 begin = slash + 1;
888 } while (slash != max);
    [all...]
  /frameworks/base/docs/html/training/wearables/data-layer/
data-items.jd 26 <li><b>Path</b> - A unique string that must start with a forward slash (for instance,
69 with a forward slash. If you're using hierarchical data in your
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 183 /* Disable it for making sure trailing slash issue is fixed. */
223 /* Disable it for making sure trailing slash issue is fixed. */
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
update_nacl_manifest_test.py 226 # Find the first slash after the prefix (path).
227 # +1, because if the slash is directly after path, then we want to find
228 # the following slash anyway.
229 slash = filename.find('/', len(path) + 1)
231 if slash != -1:
232 filename = filename[:slash]
  /external/chromium_org/third_party/codesighs/
msdump2symdb.c 239 ** Change any forward slash to a backslash.
242 char* slash = inString; local
244 while(NULL != (slash = strchr(slash, '/')))
246 *slash = '\\';
247 slash++;
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkgitems.cpp 217 static const UChar SLASH=0x2f;
239 // search for the first slash
240 for(i=0; i<length && alias[i]!=SLASH; ++i) {}
243 // ignore aliases with an initial slash:
247 return; // initial slash ('/')
250 // ignore the intra-bundle path starting from the first slash ('/')
  /external/icu/icu4c/source/tools/toolutil/
pkgitems.cpp 217 static const UChar SLASH=0x2f;
239 // search for the first slash
240 for(i=0; i<length && alias[i]!=SLASH; ++i) {}
243 // ignore aliases with an initial slash:
247 return; // initial slash ('/')
250 // ignore the intra-bundle path starting from the first slash ('/')
  /libcore/luni/src/main/java/java/io/
StreamTokenizer.java 463 // Was just a slash by itself
571 * Specifies whether "slash-slash" (C++-style) comments shall be recognized.
583 * Specifies whether "slash-star" (C-style) comments shall be recognized.
584 * Slash-star comments cannot be nested and end when a star-slash
  /ndk/sources/host-tools/make-3.81/
dir.c 752 char *slash;
786 slash = dirend;
801 return dir_file_exists_p (dirname, slash + 1);
847 char *slash = dirend;
863 filename = p = slash + 1;
929 char *slash = dirend;
945 p = filename = slash + 1;
747 char *slash; local
841 char *slash = dirend; local
922 char *slash = dirend; local
  /external/chromium_org/net/base/
net_util_icu_unittest.cc 644 // -------- omit trailing slash on bare hostname --------
645 {"omit slash when it's the entire path",
649 {"omit slash when there's a ref",
653 {"omit slash when there's a query",
657 {"omit slash when it's not the entire path",
661 {"omit slash for nonstandard URLs",
664 {"omit slash for file URLs",
679 // view-source should omit http and trailing slash where non-view-source
689 {"view-source omit slash when it's the entire path",
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
file.c 304 /* Get path component; note this strips trailing slash */
317 /* Add trailing slash back in */
393 /* Get path component; note this strips trailing slash */
410 /* Add trailing slash back in, unless it's only a raw drive letter */
617 /* Add trailing slash if it is missing */
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascripttokenizer.py 116 / # opening slash
121 / # closing slash
191 # Star followed by non-slash, i.e a star that does not end a comment.
  /external/chromium_org/base/
command_line.cc 35 // By putting slash last, we can control whether it is treaded as a switch
40 // Unixes don't use slash as a switch.
182 // The last switch prefix should be slash, so adjust the size to skip it.
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
abstract_tts.js 478 '/': 'slash',
537 '://': 'colon slash slash',
  /external/chromium_org/third_party/closure_linter/closure_linter/
javascripttokenizer.py 116 / # opening slash
121 / # closing slash
191 # Star followed by non-slash, i.e a star that does not end a comment.
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_regions.c 91 char *p = strings[i], *slash = strings[i]; local
94 slash = p;
98 DBG("%s:", slash);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
importer.cc 213 // - Any consecutive '/'s are collapsed into a single slash.
254 // Restore leading slash.
259 // Restore trailing slash.
  /external/chromium_org/tools/gn/
file_template.cc 66 " directory, with no trailing slash.\n"
72 " system-absolute, (beginning in a single slash) this will just\n"
73 " return the path with no trailing slash.\n"
  /external/chromium_org/url/third_party/mozilla/
url_parse.h 164 // the preceeding slash, so the path on http://www.google.com/asdf" is
332 // defined as being everything from the last slash/backslash of the path
336 // following the last slash.
  /external/clang/lib/Lex/
TokenConcatenation.cpp 80 TokenInfo[tok::slash ] |= aci_custom_firstchar;
106 TokenInfo[tok::slash ] |= aci_avoid_equal; // /=
255 case tok::slash: //, /*, //
  /external/libedit/src/
filecomplete.c 91 /* text until string after slash */
124 /* first slash */
168 len = (size_t)(temp - text); /* including last slash */
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_regions.c 91 char *p = strings[i], *slash = strings[i]; local
94 slash = p;
98 DBG("%s:", slash);
  /external/protobuf/src/google/protobuf/compiler/
importer.cc 213 // - Any consecutive '/'s are collapsed into a single slash.
249 // Restore leading slash.
254 // Restore trailing slash.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
filelist.py 193 is platform-dependent: slash on Unix; colon, slash, and backslash on
298 # IMHO is wrong -- '?' and '*' aren't supposed to match slash in Unix,

Completed in 755 milliseconds

<<11121314151617181920>>