HomeSort by relevance Sort by last modified time
    Searched full:escaped (Results 151 - 175 of 1174) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/net/http/
http_util.cc 32 // escaped char (the char following a '\\')
39 // Hit a backslash-escaped char. Need to skip over it.
416 std::string escaped; local
417 escaped.reserve(2 + str.size());
424 escaped.push_back('"');
428 escaped.push_back('\\');
429 escaped.push_back(c);
431 escaped.push_back('"');
432 return escaped;
776 // * Does not detect when the final quote is escaped
    [all...]
  /external/chromium/testing/gtest/src/
gtest-port.cc 201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
204 if (escaped) { // "\\p" where p is pattern_char.
289 // expression. The regex atom is defined as c if escaped is false,
296 bool escaped, char c, char repeat, const char* regex,
313 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
332 const bool escaped = *regex == '\\'; local
333 if (escaped)
340 escaped, regex[0], regex[1], regex + 2, str);
345 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 226 // Returns true iff the given atom (specified by escaped and pattern)
228 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
229 if (escaped) { // "\\p" where p is pattern_char.
314 // expression. The regex atom is defined as c if escaped is false,
321 bool escaped, char c, char repeat, const char* regex,
338 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
357 const bool escaped = *regex == '\\'; local
358 if (escaped)
365 escaped, regex[0], regex[1], regex + 2, str);
370 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-port.cc 201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
204 if (escaped) { // "\\p" where p is pattern_char.
289 // expression. The regex atom is defined as c if escaped is false,
296 bool escaped, char c, char repeat, const char* regex,
313 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
332 const bool escaped = *regex == '\\'; local
333 if (escaped)
340 escaped, regex[0], regex[1], regex + 2, str);
345 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/gtest/src/
gtest-port.cc 201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
204 if (escaped) { // "\\p" where p is pattern_char.
289 // expression. The regex atom is defined as c if escaped is false,
296 bool escaped, char c, char repeat, const char* regex,
313 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
332 const bool escaped = *regex == '\\'; local
333 if (escaped)
340 escaped, regex[0], regex[1], regex + 2, str);
345 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-port.cc 201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
204 if (escaped) { // "\\p" where p is pattern_char.
289 // expression. The regex atom is defined as c if escaped is false,
296 bool escaped, char c, char repeat, const char* regex,
313 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
332 const bool escaped = *regex == '\\'; local
333 if (escaped)
340 escaped, regex[0], regex[1], regex + 2, str);
345 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-port.cc 201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
204 if (escaped) { // "\\p" where p is pattern_char.
289 // expression. The regex atom is defined as c if escaped is false,
296 bool escaped, char c, char repeat, const char* regex,
313 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
332 const bool escaped = *regex == '\\'; local
333 if (escaped)
340 escaped, regex[0], regex[1], regex + 2, str);
345 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-port.cc 190 // Returns true iff the given atom (specified by escaped and pattern)
192 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
193 if (escaped) { // "\\p" where p is pattern_char.
278 // expression. The regex atom is defined as c if escaped is false,
285 bool escaped, char c, char repeat, const char* regex,
302 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
321 const bool escaped = *regex == '\\'; local
322 if (escaped)
329 escaped, regex[0], regex[1], regex + 2, str);
334 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/protobuf/gtest/src/
gtest-port.cc 190 // Returns true iff the given atom (specified by escaped and pattern)
192 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
193 if (escaped) { // "\\p" where p is pattern_char.
278 // expression. The regex atom is defined as c if escaped is false,
285 bool escaped, char c, char repeat, const char* regex,
302 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
321 const bool escaped = *regex == '\\'; local
322 if (escaped)
329 escaped, regex[0], regex[1], regex + 2, str);
334 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 226 // Returns true iff the given atom (specified by escaped and pattern)
228 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
229 if (escaped) { // "\\p" where p is pattern_char.
314 // expression. The regex atom is defined as c if escaped is false,
321 bool escaped, char c, char repeat, const char* regex,
338 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
357 const bool escaped = *regex == '\\'; local
358 if (escaped)
365 escaped, regex[0], regex[1], regex + 2, str);
370 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/autoescape/
AutoEscapeContext.java 111 * Name of resource being auto escaped. Will be used in error and display messages.
133 * @param resourceName Name of the resource being auto escaped.
153 * Sets the current position in the resource being auto escaped. Useful for generating detailed
165 * Returns the name of the resource currently being auto escaped.
172 * Returns the current line number within the resource being auto escaped.
179 * Returns the current column number within the resource being auto escaped.
  /external/chromium/chrome/browser/autocomplete/
keyword_provider_unittest.cc 91 // no-query-input cases have a space appended, and action is not escaped.
136 // and query input, but not rest of URL, is escaped.
163 // and contents are not escaped or unescaped.
  /external/chromium_org/net/base/
escape.h 34 // Space is escaped as + (if use_plus is true) and other special characters
71 // addition to their special meaning. Things like escaped letters, digits,
116 // will be returned as converted. If it is not, the original escaped string will
  /external/chromium_org/tools/site_compare/drivers/win32/
keyboard.py 121 # If this is an explicitly-escaped character, replace it with the
138 # If this is the backslash, the next character is escaped
144 # escaped special character which should be treated as a literal
  /external/chromium_org/url/
url_canon_icu.cc 23 // append an escaped version of the numerical character reference for that code
37 const static char prefix[prefix_len + 1] = "%26%23"; // "&#" percent-escaped
47 const static char postfix[postfix_len + 1] = "%3B"; // ";" percent-escaped
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
Value.java 77 * True if either the {@code Value} was escaped, or it was created from a combination of escaped
256 * function, even if the entire expression has not been escaped. Both methods are required,
  /libcore/luni/src/main/java/libcore/net/
UriCodec.java 29 * <p>By default, UTF-8 is used to encode escaped characters. A single input
35 * Returns true if {@code c} does not need to be escaped.
91 * unchanged with isPartiallyEncoded=true but would be double-escaped to
  /packages/apps/Exchange/src/com/android/exchange/utility/
UriCodec.java 48 * <p>By default, UTF-8 is used to encode escaped characters. A single input
54 * Returns true if {@code c} does not need to be escaped.
110 * unchanged with isPartiallyEncoded=true but would be double-escaped to
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
MoreKeysResources.java 201 final String escaped = escapeNonAscii(res.mValue); local
202 if (escaped.length() == 0) {
205 formatter.outElement(String.format("\"%s\",", escaped));
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRToken+DebuggerSupport.m 50 // format is tokenIndex, type, channel, line, col, (escaped)text
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
output_html.properties 39 # Note that the colon after the protocol needs to be escaped.
output_unknown.properties 43 # Note that the colon after the protocol needs to be escaped.
output_xml.properties 42 # Note that the colon after the protocol needs to be escaped.
  /external/chromium_org/base/
location.h 52 // string with HTML characters in the function names escaped, and append that
  /external/chromium_org/third_party/icu/source/test/intltest/
tokiter.cpp 58 * is ignored, unless it is backslash-escaped or within quotes.

Completed in 701 milliseconds

1 2 3 4 5 67 8 91011>>