HomeSort by relevance Sort by last modified time
    Searched defs:QUOTE (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
incpath.h 34 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ksdebug.h 27 #define QUOTE(x) #x
28 #define QQUOTE(y) QUOTE(y)
  /developers/samples/android/ui/text/TextStyling-Java/app/src/main/java/com/android/example/text/styling/parser/
Element.java 27 public enum Type {TEXT, QUOTE, BULLET_POINT, CODE_BLOCK}
  /art/libartbase/base/
macros.h 59 #define QUOTE(x) #x
60 #define STRINGIFY(x) QUOTE(x)
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
CommandLineSupport.java 23 private static final char QUOTE = '"';
33 static String quote(final String arg) { method in class:CommandLineSupport
36 if (c == QUOTE || c == SLASH) {
41 if (arg.indexOf(BLANK) != -1 || arg.indexOf(QUOTE) != -1) {
42 escaped.insert(0, QUOTE).append(QUOTE);
55 static String quote(final List<String> args) { method in class:CommandLineSupport
62 result.append(quote(arg)); method
88 if (c == QUOTE) {
89 endChar = QUOTE;
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
DelimitedWriter.java 35 private static final String QUOTE = "\"";
150 * Escapes any occurrences of the quote character in value by replacing it
151 * with a double quote. Also Quotes the value if a quote or delimiter value
161 // Escape and quote if the source value contains the delimiter
162 // or the quote character
163 if (value.indexOf(QUOTE) != -1 || value.indexOf(delimiter) != -1) {
164 escapedValue = value.replace(QUOTE, ESCAPED_QUOTE);
165 escapedValue = QUOTE + escapedValue + QUOTE;
    [all...]
  /external/nist-sip/java/gov/nist/core/
Separators.java 57 public static final String QUOTE = "\'";
GenericObjectList.java 88 protected static final String QUOTE = Separators.QUOTE;
GenericObject.java 69 protected static final String QUOTE = Separators.QUOTE;
LexerCore.java 51 public static final int QUOTE = (int) '\'';
523 * closing quote.
533 // Got to the terminating quote.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
mimify.py 27 QUOTE = '> ' # string replies are quoted with
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
129 prefix = QUOTE
174 ## if is_repl and len(line) >= 4 and line[:4] == QUOTE+'--' and line[-3:] != '--\n':
197 if newline[:len(QUOTE)] == QUOTE:
198 newline = newline[len(QUOTE):]
225 mime_char = re.compile('[=\177-\377]') # quote these chars in body
226 mime_header_char = re.compile('[=?\177-\377]') # quote these in header
230 If header is set, quote some extra characters."""
    [all...]
  /external/icu/icu4c/source/tools/genrb/
read.c 29 #define QUOTE 0x0022
111 not a whitespace character (but may be a QUOTE or ESCAPE). This
152 if (c == QUOTE) {
176 if (c == QUOTE && !isFollowingCharEscaped) {
273 if (c == QUOTE
  /external/parameter-framework/upstream/parameter/
SystemClass.cpp 46 #define QUOTE(X) #X
47 #define MACRO_TO_STR(X) QUOTE(X)
  /external/python/cpython2/Lib/
mimify.py 27 QUOTE = '> ' # string replies are quoted with
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
129 prefix = QUOTE
174 ## if is_repl and len(line) >= 4 and line[:4] == QUOTE+'--' and line[-3:] != '--\n':
197 if newline[:len(QUOTE)] == QUOTE:
198 newline = newline[len(QUOTE):]
225 mime_char = re.compile('[=\177-\377]') # quote these chars in body
226 mime_header_char = re.compile('[=?\177-\377]') # quote these in header
230 If header is set, quote some extra characters.""
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mimify.py 27 QUOTE = '> ' # string replies are quoted with
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
129 prefix = QUOTE
174 ## if is_repl and len(line) >= 4 and line[:4] == QUOTE+'--' and line[-3:] != '--\n':
197 if newline[:len(QUOTE)] == QUOTE:
198 newline = newline[len(QUOTE):]
225 mime_char = re.compile('[=\177-\377]') # quote these chars in body
226 mime_header_char = re.compile('[=?\177-\377]') # quote these in header
230 If header is set, quote some extra characters.""
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
mimify.py 27 QUOTE = '> ' # string replies are quoted with
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
129 prefix = QUOTE
174 ## if is_repl and len(line) >= 4 and line[:4] == QUOTE+'--' and line[-3:] != '--\n':
197 if newline[:len(QUOTE)] == QUOTE:
198 newline = newline[len(QUOTE):]
225 mime_char = re.compile('[=\177-\377]') # quote these chars in body
226 mime_header_char = re.compile('[=?\177-\377]') # quote these in header
230 If header is set, quote some extra characters.""
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimify.py 27 QUOTE = '> ' # string replies are quoted with
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
129 prefix = QUOTE
174 ## if is_repl and len(line) >= 4 and line[:4] == QUOTE+'--' and line[-3:] != '--\n':
197 if newline[:len(QUOTE)] == QUOTE:
198 newline = newline[len(QUOTE):]
225 mime_char = re.compile('[=\177-\377]') # quote these chars in body
226 mime_header_char = re.compile('[=?\177-\377]') # quote these in header
230 If header is set, quote some extra characters.""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimify.py 27 QUOTE = '> ' # string replies are quoted with
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
129 prefix = QUOTE
174 ## if is_repl and len(line) >= 4 and line[:4] == QUOTE+'--' and line[-3:] != '--\n':
197 if newline[:len(QUOTE)] == QUOTE:
198 newline = newline[len(QUOTE):]
225 mime_char = re.compile('[=\177-\377]') # quote these chars in body
226 mime_header_char = re.compile('[=?\177-\377]') # quote these in header
230 If header is set, quote some extra characters.""
    [all...]
  /external/apache-http/android/src/com/android/internal/http/multipart/
Part.java 82 protected static final String QUOTE = "\"";
86 EncodingUtils.getAsciiBytes(QUOTE);
  /external/icu/icu4c/source/i18n/
dt_impl.h 28 #define QUOTE ((UChar)0x0027)
dtitv_impl.h 28 #define QUOTE ((UChar)0x0027)
  /frameworks/base/core/java/android/text/format/
DateFormat.java 68 public static final char QUOTE = '\'';
391 * characters. So searching for a literal single quote would not work correctly.
403 if (c == QUOTE) {
434 if (c == QUOTE) {
585 * @param index index of the first quote
591 if (index + 1 < length && formatString.charAt(index + 1) == QUOTE) {
598 // delete leading quote
605 if (c == QUOTE) {
606 // QUOTEQUOTE -> QUOTE
607 if (index + 1 < length && formatString.charAt(index + 1) == QUOTE) {
    [all...]
  /external/testng/src/main/java/org/testng/reporters/
JUnitXMLReporter.java 35 private static final Pattern QUOTE = Pattern.compile("\"");
42 ATTR_ESCAPES.put("&quot;", QUOTE);
  /device/linaro/bootloader/edk2/StdLib/PosixLib/Glob/
glob.c 118 #define QUOTE '\\'
215 if (c == QUOTE) {
217 c = QUOTE;
  /bionic/libc/upstream-freebsd/lib/libc/gen/
glob.c 121 #define QUOTE L'\\'
236 *bufnext++ = QUOTE;

Completed in 902 milliseconds

1 2 3 4 5 6