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

1 2 3 4 5

  /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 };
  /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/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/nist-sip/java/gov/nist/core/
Separators.java 57 public static final String QUOTE = "\'";
LexerCore.java 51 public static final int QUOTE = (int) '\'';
523 * closing quote.
533 // Got to the terminating quote.
GenericObjectList.java 88 protected static final String QUOTE = Separators.QUOTE;
  /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)
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
Tokenizer.java 36 QUOTE = '\'',
38 private static final UnicodeSet QUOTERS = new UnicodeSet().add(QUOTE).add(BSLASH);
107 return s+"Unterminated Quote=" + getString() + s;
188 if (cp == QUOTE) {
189 UTF16.append(buffer, QUOTE);
195 if (cp == QUOTE) status = IN_QUOTE;
203 if (cp == QUOTE) status = AFTER_QUOTE;
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
Tokenizer.java 35 QUOTE = '\'',
37 private static final UnicodeSet QUOTERS = new UnicodeSet().add(QUOTE).add(BSLASH);
106 return s+"Unterminated Quote=" + getString() + s;
187 if (cp == QUOTE) {
188 UTF16.append(buffer, QUOTE);
194 if (cp == QUOTE) status = IN_QUOTE;
202 if (cp == QUOTE) status = AFTER_QUOTE;
  /frameworks/base/core/java/android/text/format/
DateFormat.java 67 public static final char QUOTE = '\'';
392 if (c == QUOTE) {
403 if (i + 1 < len && s.charAt(i + 1) == QUOTE) {
408 // skip leading quote
414 if (c == QUOTE) {
416 // QUOTEQUOTE -> QUOTE
417 if (i + 1 < len && s.charAt(i + 1) == QUOTE) {
450 if (c == QUOTE) {
595 if (i + 1 < len && s.charAt(i + 1) == QUOTE) {
602 // delete leading quote
    [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/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java 175 public static final int QUOTE = LexerCore.QUOTE;
  /external/parameter-framework/upstream/parameter/
SystemClass.cpp 46 #define QUOTE(X) #X
47 #define MACRO_TO_STR(X) QUOTE(X)
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvContractTest.java 99 private static final String QUOTE = "\"";
    [all...]
  /external/icu/icu4c/source/i18n/
dtitv_impl.h 26 #define QUOTE ((UChar)0x0027)
rbt_pars.cpp 50 #define QUOTE ((UChar)0x0027) /*'*/
457 if (c == QUOTE) {
458 int32_t iq = rule.indexOf(QUOTE, pos);
467 * reaches the final quote it breaks.
478 if (pos < limit && rule.charAt(pos) == QUOTE) {
480 iq = rule.indexOf(QUOTE, pos+1);
655 // The */+ follows an isolated character or quote
    [all...]
  /external/icu/icu4c/source/tools/genrb/
read.c 27 #define QUOTE 0x0022
109 not a whitespace character (but may be a QUOTE or ESCAPE). This
150 if (c == QUOTE) {
174 if (c == QUOTE && !isFollowingCharEscaped) {
271 if (c == QUOTE
  /art/runtime/base/
macros.h 152 #define QUOTE(x) #x
153 #define STRINGIFY(x) QUOTE(x)
  /external/apache-http/android/src/com/android/internal/http/multipart/
Part.java 82 protected static final String QUOTE = "\"";
86 EncodingUtils.getAsciiBytes(QUOTE);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
XLIFF2ICUConverter.java 128 private static final String QUOTE = "\"";
695 write(writer,QUOTE+escapeSyntaxChars(val)+QUOTE);
697 write(writer, name+COLON+STRINGS+ OPENBRACE + QUOTE + escapeSyntaxChars(val) + QUOTE+ CLOSEBRACE + LINESEP);
706 String line = ((name==null)? EMPTY: name)+COLON+ALIAS+ OPENBRACE+QUOTE+escapeSyntaxChars(val)+QUOTE+CLOSEBRACE;
740 String line = ((name==null) ? EMPTY : name)+COLON+IMPORT+ OPENBRACE+QUOTE+external+QUOTE+CLOSEBRACE + ((bare==true) ? EMPTY : LINESEP);
    [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);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DecimalFormat.java 145 * Two exceptions are the currency sign and quote, which are not localized.
231 * <td>Used to quote special characters in a prefix or suffix,
233 * <code>"#123"</code>. To create a single quote
293 * padChar := '&#92;u0000'..'&#92;uFFFD' - quote
    [all...]

Completed in 987 milliseconds

1 2 3 4 5