/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/ |
pp.c | 107 const char *backslash = NULL; local 114 backslash = newline - 1; 116 backslash = newline - 2; 118 /* Double backslashes don't count (the backslash is escaped) */ 119 if (backslash != NULL && backslash[-1] == '\\') { 120 backslash = NULL; 123 if (backslash != NULL) { 126 if (in_directive(shader, backslash)) { 133 ralloc_strncat(&clean, shader, backslash - shader) [all...] |
/external/mesa3d/src/glsl/glcpp/ |
pp.c | 107 const char *backslash = NULL; local 114 backslash = newline - 1; 116 backslash = newline - 2; 118 /* Double backslashes don't count (the backslash is escaped) */ 119 if (backslash != NULL && backslash[-1] == '\\') { 120 backslash = NULL; 123 if (backslash != NULL) { 126 if (in_directive(shader, backslash)) { 133 ralloc_strncat(&clean, shader, backslash - shader) [all...] |
/system/core/sh/ |
show.c | 328 case '\n': c = 'n'; goto backslash; 329 case '\t': c = 't'; goto backslash; 330 case '\r': c = 'r'; goto backslash; 331 case '"': c = '"'; goto backslash; 332 case '\\': c = '\\'; goto backslash; 333 case CTLESC: c = 'e'; goto backslash; 334 case CTLVAR: c = 'v'; goto backslash; 335 case CTLVAR+CTLQUOTE: c = 'V'; goto backslash; 336 case CTLBACKQ: c = 'q'; goto backslash; 337 case CTLBACKQ+CTLQUOTE: c = 'Q'; goto backslash; [all...] |
mkinit.sh | 39 backslash='\' 95 [ "$line" = "${line%$backslash}" ] || continue
|
/external/chromium/net/tools/dump_cache/ |
url_to_filename_encoder.h | 139 const std::string backslash("\\"); 140 ReplaceAll(&filename, backslash, slash); 198 const std::string backslash("\\"); 199 ReplaceAll(path, slash, backslash);
|
cache_dumper.cc | 45 std::wstring backslash(L"\\"); 54 while ((pos = path.find(backslash, pos)) != std::wstring::npos) {
|
/external/chromium_org/net/tools/dump_cache/ |
url_to_filename_encoder.h | 138 const std::string backslash("\\"); 139 ReplaceAll(&filename, backslash, slash); 197 const std::string backslash("\\"); 198 ReplaceAll(path, slash, backslash);
|
cache_dumper.cc | 50 std::wstring backslash(L"\\"); 59 while ((pos = path.value().find(backslash, pos)) != std::wstring::npos) {
|
/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...] |
commands.c | 300 int backslash = 1; 303 backslash = !backslash; 304 if (backslash) 298 int backslash = 1; local
|
read.c | 1105 register int backslash = 0; local 2512 int backslash = 0; local 2564 int backslash; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
text_file.py | 18 escaping the newline (ie. backslash at end of line), strip 42 leading up to the "#" -- unless it is escaped by a backslash 54 if a backslash is the last non-newline character on a line 57 with a backslash, then N+1 physical lines will be joined to 228 # did previous line end with a backslash? then accumulate
|
util.py | 255 spaces are not escaped by a backslash, or inside a quoted string. 257 be backslash-escaped. The backslash is stripped from any two-character
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
ntpath.py | 51 # For DOS it is absolute if it starts with a slash or backslash (current 53 # starts with a slash or backslash. 110 # path is not empty and does not end with a backslash, 112 # ('a', ''), it's best if join() adds a backslash in 401 backslash, dot = (u'\\', u'.') if isinstance(path, unicode) else ('\\', '.') 411 # with a backslash, it could either be an absolute path on the current 422 prefix = prefix + backslash 427 prefix = prefix + backslash 447 return prefix + backslash.join(comps)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
text_file.py | 18 escaping the newline (ie. backslash at end of line), strip 42 leading up to the "#" -- unless it is escaped by a backslash 54 if a backslash is the last non-newline character on a line 57 with a backslash, then N+1 physical lines will be joined to 228 # did previous line end with a backslash? then accumulate
|
util.py | 255 spaces are not escaped by a backslash, or inside a quoted string. 257 be backslash-escaped. The backslash is stripped from any two-character
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
ntpath.py | 51 # For DOS it is absolute if it starts with a slash or backslash (current 53 # starts with a slash or backslash. 110 # path is not empty and does not end with a backslash, 112 # ('a', ''), it's best if join() adds a backslash in 401 backslash, dot = (u'\\', u'.') if isinstance(path, unicode) else ('\\', '.') 411 # with a backslash, it could either be an absolute path on the current 422 prefix = prefix + backslash 427 prefix = prefix + backslash 447 return prefix + backslash.join(comps)
|
/external/chromium/googleurl/base/ |
logging.cc | 91 last_backslash[1] = 0; // name now ends with the backslash 197 wchar_t* backslash = wcsrchr(prog_name, '\\'); local 198 if (backslash) 199 backslash[1] = 0;
|
/cts/tools/dasm/src/dasm/ |
Scanner.java | 419 throw new DasmError("Incorrect backslash escape sequence");
|
/external/llvm/lib/AsmParser/ |
LLToken.h | 31 backslash, // \ (not /) enumerator in enum:llvm::lltok::Kind
|
/external/qemu/ |
curses_keys.h | 92 ['\\'] = 43, /* Backslash */ 308 { "backslash", 0x05c },
|
/external/chromium/base/ |
logging.cc | 487 wchar_t* backslash = wcsrchr(prog_name, '\\'); local 488 if (backslash) 489 backslash[1] = 0;
|
/external/chromium_org/base/ |
logging.cc | 492 wchar_t* backslash = wcsrchr(prog_name, '\\'); local 493 if (backslash) 494 backslash[1] = 0;
|
/external/chromium/chrome/browser/resources/shared/js/ |
util.js | 50 // quotes (") appearing in a URI must be escaped with a backslash
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/ |
util.js | 47 // quotes (") appearing in a URI must be escaped with a backslash
|