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

1 2 3

  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
xml.rb 15 def quote(text) method in class:XMLLexerTest
65 {say("PCDATA: " << quote($t.text))}
67 {say("CDATA: " << quote($t.text))}
69 {say("Comment: " << quote($t.text))}
  /external/chromium_org/native_client_sdk/src/tools/lib/
quote.py 8 def quote(input_str, specials, escape='\\'): function
  /external/chromium_org/third_party/icu/source/test/intltest/
tokiter.cpp 57 * delimited by double or single quotes. The closing quote must match
58 * the opening quote. If a '#' is encountered, the rest of the line
71 UChar quote = 0; local
75 quote = c;
92 } else if ((quote != 0 && c == quote) ||
93 (quote == 0 && PatternProps::isWhiteSpace(c))) {
96 } else if (quote == 0 && c == '#') {
103 if (quote != 0) {
  /external/chromium_org/v8/test/webkit/resources/
json2-es5-compat.js 204 function quote(string) { function
206 // If the string contains no control characters, no quote characters, and no
257 return quote(value);
324 partial.push(quote(k) + (gap ? ': ' : ':') + v);
336 partial.push(quote(k) + (gap ? ': ' : ':') + v);
  /external/icu/icu4c/source/test/intltest/
tokiter.cpp 57 * delimited by double or single quotes. The closing quote must match
58 * the opening quote. If a '#' is encountered, the rest of the line
71 UChar quote = 0; local
75 quote = c;
92 } else if ((quote != 0 && c == quote) ||
93 (quote == 0 && PatternProps::isWhiteSpace(c))) {
96 } else if (quote == 0 && c == '#') {
103 if (quote != 0) {
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/
json2.js 209 function quote(string) { function
211 // If the string contains no control characters, no quote characters, and no
257 return quote(value);
324 partial.push(quote(k) + (gap ? ': ' : ':') + v);
336 partial.push(quote(k) + (gap ? ': ' : ':') + v);
  /external/chromium_org/third_party/WebKit/Source/platform/
ContentType.cpp 50 size_t quote = strippedType.find('\"', start + 1); local
52 if (quote != kNotFound && end != kNotFound) {
53 start = quote;
  /external/libcxx/test/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 79 std::string quote ( const char *p, char delim='"', char escape='\\' ) { function
83 ss >> s; // no quote
149 std::wstring quote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
153 ss >> s; // no quote
183 assert ( quote ( "Hi", '!' ) == "!Hi!" );
184 assert ( quote ( "Hi!", '!' ) == R"(!Hi\!!)" );
190 assert ( quote ( L"Hi", '!' ) == L"!Hi!" );
191 assert ( quote ( L"Hi!", '!' ) == LR"(!Hi\!!)" );
198 assert ( quote ( "" ) == "\"\"" );
199 assert ( quote ( L"" ) == L"\"\"" )
    [all...]
  /external/oprofile/libop/
op_xml_out.c 179 char *quote; local
199 quote = "&amp;";
202 quote = "&lt;";
205 quote = "&gt;";
208 quote = "&quot;";
219 ret = snprintf(buf, size, "%s", quote);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
chromevox_json.js 83 function quote(string) { function
85 // If the string contains no control characters, no quote characters, and
132 return quote(value);
197 partial.push(quote(k) + (gap ? ': ' : ':') + v);
208 partial.push(quote(k) + (gap ? ': ' : ':') + v);
  /external/chromium_org/native_client_sdk/src/tools/lib/tests/
quote_test.py 16 import quote namespace
26 sys.stdout.write('Invoking quote(%s, %s, %s)\n' %
31 return quote.quote(in_string, specials, *args, **kwargs)
41 return quote.unquote(in_string, specials, *args, **kwargs)
104 help='Special characters to quote (default is ":")')
105 parser.add_option('-q', '--quote', dest='quote', default='\\',
106 help='Quote or escape character (default is "\")')
124 # NB: there are inputs x for which quote(unquote(x) != x, bu
    [all...]
  /external/clang/utils/
FuzzTest 98 def quote(str): function
106 'inputs' : ' '.join(quote(f) for f in input_files) }
  /external/llvm/tools/llvm-symbolizer/
llvm-symbolizer.cpp 90 char quote = *pos; local
92 char *end = strchr(pos, quote);
  /external/bison/src/
graphviz.c 36 quote (char const *name) function
55 quote (grammar_file));
74 fprintf (fout, " label=%s", quote (label));
81 char *q = quote (name);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-shape.cc 119 char quote = 0; local
123 quote = **pp;
136 if (quote)
142 if (*pp == end || **pp != quote)
  /external/harfbuzz_ng/src/
hb-shape.cc 119 char quote = 0; local
123 quote = **pp;
136 if (quote)
142 if (*pp == end || **pp != quote)
  /external/oprofile/libpopt/
poptparse.c 60 char quote = '\0'; local
72 if (quote == *src) {
73 quote = '\0';
74 } else if (quote != '\0') {
81 if (*src != quote) *buf++ = '\\';
97 quote = *src;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ContentData.h 171 QuoteType quote() const { return m_quote; } function in class:blink::FINAL
172 void setQuote(QuoteType quote) { m_quote = quote; }
181 return static_cast<const QuoteContentData&>(data).quote() == quote();
185 QuoteContentData(QuoteType quote)
186 : m_quote(quote)
190 virtual PassOwnPtr<ContentData> cloneInternal() const OVERRIDE { return create(quote()); }
195 DEFINE_CONTENT_DATA_TYPE_CASTS(Quote);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONWriter.java 211 this.writer.write(JSONObject.quote(s));
  /external/libedit/src/
tokenizer.c 81 quote_t quote; /* Quoting state */ local
141 tok->quote = Q_none;
158 tok->quote = Q_none;
185 * 2 Unmatched double quote
186 * 1 Unmatched single quote
214 switch (tok->quote) {
216 tok->quote = Q_single; /* Enter single quote
220 case Q_single: /* Exit single quote mode */
221 tok->quote = Q_none
    [all...]
  /external/lldb/source/Core/
InputReader.cpp 149 char quote = '\0'; local
162 if (isspace(ch) && (!quote || (quote == ch && p[-1] != '\\')))
164 // We have a space character or the terminating quote
166 quote = '\0';
168 else if (quote)
174 quote = ch;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPUnitDebuggeeProcessWrapper.java 172 // check for starting quote
174 char quote = cmd.charAt(p++);
175 // skip all chars until terminating quote or end of line
177 // check for terminating quote
178 if (cmd.charAt(p) == quote)
180 // skip escaped quote
181 if (cmd.charAt(p) == '\\' && (p+1) < len && cmd.charAt(p+1) == quote)
186 // skip escaped quote
212 // check for starting quote
214 char quote = cmd.charAt(p++) local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AVT.java 272 String quote = lookahead; local
274 // Consume stuff 'till next quote
277 while (!lookahead.equals(quote))
  /external/chromium_org/native_client_sdk/src/tools/
create_nmf.py 33 import quote namespace
445 unquoted = quote.unquote(kv, ':')
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
config.c 58 int quote = 0, comment = 0, space = 0; local
67 if (quote)
74 if (isspace(c) && !quote) {
78 if (!quote) {
114 quote = 1-quote;

Completed in 1281 milliseconds

1 2 3