HomeSort by relevance Sort by last modified time
    Searched full:backslash (Results 26 - 50 of 1002) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
SearchConfig.js 67 var filePattern = "(?:-)?file:(([^\\\\ ]|\\\\.)+)"; // After file: prefix: any symbol except space and backslash or any symbol escaped with a backslash.
68 var quotedPattern = "\"(([^\\\\\"]|\\\\.)+)\""; // Inside double quotes: any symbol except double quote and backslash or any symbol escaped with a backslash.
69 var unquotedPattern = "(([^\\\\ ]|\\\\.)+)"; // any symbol except space and backslash or any symbol escaped with a backslash.
  /external/chromium_org/tools/gn/
escape.cc 57 // quote the string, and backslash-escape all quotes and backslashes.
84 // Backslashes at end of string. Backslash-escape all of them since
88 // 0 or more backslashes followed by a quote. Backslash-escape the
89 // backslashes, then backslash-escape the quote.
115 // Ninja, then backslash-escape for the shell.
126 // All other invalid shell chars get backslash-escaped.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeySpecParser.java 41 * Special character, comma ',' backslash '\', and bar '|' can be escaped by '\' character.
48 private static final char BACKSLASH = Constants.CODE_BACKSLASH;
76 if (text.indexOf(BACKSLASH) < 0) {
83 if (c == BACKSLASH && pos + 1 < length) {
96 if (keySpec.indexOf(BACKSLASH) < 0) {
109 if (c == BACKSLASH && pos + 1 < length) {
  /external/qemu/pc-bios/keymaps/
ar 45 backslash 0x1e shift altgr
71 backslash 0x2b
et 42 backslash 0xc altgr
fo 70 backslash 0x56 altgr
fr-ca 6 backslash 0x29 altgr
lt 48 backslash 0x2b
nl 26 backslash 0x0c altgr
sv 42 backslash 0xc altgr
en-gb 34 backslash 0x0c altgr
118 backslash 0x56
fr-be 46 backslash 0x0c altgr
134 backslash 0x56 altgr
lv 36 backslash 0x0c altgr
98 backslash 0x2b
pl 35 backslash 0x0c altgr
94 backslash 0x2b
pt 34 backslash 0x0c altgr
88 backslash 0x29
tr 35 backslash 0x0c altgr
93 backslash 0x29
  /ndk/sources/host-tools/make-3.81/
misc.c 71 /* Discard each backslash-newline combination from LINE.
72 Backslash-backslash-newline combinations become backslash-newlines.
79 register int backslash;
93 the end just before IN, and BACKSLASH gets nonzero
95 backslash = 0;
99 if (backslash)
101 backslash = !backslash;
78 register int backslash; local
432 register int backslash = 0; local
    [all...]
  /external/chromium_org/build/config/mac/
mac_sdk.gni 9 # Path to a specific version of the Mac SDKJ, not including a backslash at
  /external/chromium_org/build/config/win/
visual_studio_version.gni 19 # Full path to the Windows SDK, not including a backslash at the end.
  /external/chromium_org/sandbox/win/src/
window.h 34 // followed by a backslash. This name can be used as the lpDesktop parameter
  /external/chromium_org/v8/test/webkit/
slash-lineterminator-parse.js 25 "This test checks for correct handling ofr backslash-newline in JS strings."
  /external/clang/test/Lexer/
ms-extensions.c 48 /*expected-warning {{backslash and newline separated by space}} */ 0\
  /external/chromium_org/third_party/icu/source/common/
util.cpp 17 static const UChar BACKSLASH = 0x005C; /*\*/
80 result.append(BACKSLASH);
111 if (c == BACKSLASH) {
310 // We prefer backslash APOSTROPHE to double APOSTROPHE
320 rule.append(BACKSLASH).append(APOSTROPHE);
339 rule.append(BACKSLASH).append(APOSTROPHE);
361 (c == APOSTROPHE || c == BACKSLASH)) {
362 rule.append(BACKSLASH);
  /external/chromium_org/tools/grit/grit/format/
c_format.py 71 # backslash is not escaped.
72 not_a_backslash = r"(^|[^\\])" # beginning of line or a non-backslash char
  /external/icu/icu4c/source/common/
util.cpp 18 static const UChar BACKSLASH = 0x005C; /*\*/
81 result.append(BACKSLASH);
112 if (c == BACKSLASH) {
306 // We prefer backslash APOSTROPHE to double APOSTROPHE
316 rule.append(BACKSLASH).append(APOSTROPHE);
335 rule.append(BACKSLASH).append(APOSTROPHE);
357 (c == APOSTROPHE || c == BACKSLASH)) {
358 rule.append(BACKSLASH);

Completed in 1643 milliseconds

12 3 4 5 6 7 8 91011>>