/external/chromium_org/third_party/sqlite/src/src/ |
util.c | 169 ** the quote characters. The conversion is done in-place. If the 170 ** input does not begin with a quote character, then this routine 185 char quote; local 188 quote = z[0]; 189 switch( quote ){ 193 case '[': quote = ']'; break; /* For MS SqlServer compatibility */ 197 if( z[i]==quote ){ 198 if( z[i+1]==quote ){ 199 z[j++] = quote;
|
test8.c | 107 ** the quote characters. The conversion is done in-place. If the 108 ** input does not begin with a quote character, then this routine 119 int quote; local 122 quote = z[0]; 123 switch( quote ){ 127 case '[': quote = ']'; break; /* For MS SqlServer compatibility */ 131 if( z[i]==quote ){ 132 if( z[i+1]==quote ){ 133 z[j++] = quote; [all...] |
/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/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
StringIdItem.java | 77 public static String getReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int stringIndex, boolean quote) { 80 if (quote) { 98 boolean quote) { 102 return getReferenceAnnotation(dexFile, stringIndex, quote);
|
/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;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pipes.py | 233 cmd = 'OUT=' + quote(outf) + '; ' + cmd 235 cmd = 'IN=' + quote(inf) + '; ' + cmd 237 cmd = cmd + ' <' + quote(inf) 239 cmd = cmd + ' >' + quote(outf) 255 rmcmd = rmcmd + ' ' + quote(file) 256 trapcmd = 'trap ' + quote(rmcmd + '; exit') + ' 1 2 3 13 14 15' 262 # Reliably quote a string as a single argument for /bin/sh 267 def quote(file): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pipes.py | 233 cmd = 'OUT=' + quote(outf) + '; ' + cmd 235 cmd = 'IN=' + quote(inf) + '; ' + cmd 237 cmd = cmd + ' <' + quote(inf) 239 cmd = cmd + ' >' + quote(outf) 255 rmcmd = rmcmd + ' ' + quote(file) 256 trapcmd = 'trap ' + quote(rmcmd + '; exit') + ' 1 2 3 13 14 15' 262 # Reliably quote a string as a single argument for /bin/sh 267 def quote(file): function
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderQuote.cpp | 34 RenderQuote::RenderQuote(Document* node, QuoteType quote) 36 , m_type(quote) 80 // Table of quotes from http://www.whatwg.org/specs/web-apps/current-work/multipage/rendering.html#quote 334 for (RenderQuote* quote = this; quote; quote = quote->m_next) 335 quote->updateDepth(); 356 for (RenderQuote* quote = m_next; quote; quote = quote->m_next [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
quote.hpp | 17 // $Id: quote.hpp 49272 2008-10-11 06:50:46Z agurtovoy $ 44 # define BOOST_MPL_PREPROCESSED_HEADER quote.hpp 106 (3,(1, BOOST_MPL_LIMIT_METAFUNCTION_ARITY, <boost/mpl/quote.hpp>)) 125 struct BOOST_PP_CAT(quote,i_)
|
/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/WebKit/Source/core/css/ |
CSSTokenizer.h | 107 static size_t peekMaxStringLen(SrcCharacterType*, UChar quote); 114 inline bool findURI(CharacterType*& start, CharacterType*& end, UChar& quote); 116 static size_t peekMaxURILen(SrcCharacterType*, UChar quote); 118 static inline bool parseURIInternal(SrcCharacterType*&, DestCharacterType*&, UChar quote);
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
alias.c | 73 return error("unclosed quote");
|
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;
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
networkconfig.h | 29 const char *value, bool quote);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
util.py | 46 from urllib import quote namespace 60 url += quote(environ.get('SCRIPT_NAME') or '/') 66 from urllib import quote namespace 67 path_info = quote(environ.get('PATH_INFO',''),safe='/;=,')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
util.py | 46 from urllib import quote namespace 60 url += quote(environ.get('SCRIPT_NAME') or '/') 66 from urllib import quote namespace 67 path_info = quote(environ.get('PATH_INFO',''),safe='/;=,')
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
ContentData.cpp | 50 PassOwnPtr<ContentData> ContentData::create(QuoteType quote) 52 return adoptPtr(new QuoteContentData(quote));
|
/external/chromium_org/v8/src/ |
prettyprinter.h | 49 void PrintLiteral(Handle<Object> value, bool quote); 82 void PrintLiteralIndented(const char* info, Handle<Object> value, bool quote);
|
/libcore/json/src/main/java/org/json/ |
JSONTokener.java | 185 * Returns the string up to but not including {@code quote}, unescaping any 186 * character escape sequences encountered along the way. The opening quote 187 * should have already been read. This consumes the closing quote, but does 190 * @param quote either ' or ". 194 public String nextString(char quote) throws JSONException { 207 if (c == quote) {
|
/external/chromium_org/third_party/icu/source/tools/pkgdata/ |
pkgtypes.c | 27 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quote) 38 if(quote < 0) { /* remove quotes */ 45 } else if(quote > 0) { /* add quotes */ 73 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quote) 88 if(quote < 0) { /* remove quotes */ 95 } else if(quote > 0) { /* add quotes */
|
/external/icu/icu4c/source/tools/pkgdata/ |
pkgtypes.c | 27 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quote) 38 if(quote < 0) { /* remove quotes */ 45 } else if(quote > 0) { /* add quotes */ 73 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quote) 88 if(quote < 0) { /* remove quotes */ 95 } else if(quote > 0) { /* add quotes */
|
/external/chromium_org/cc/ |
PRESUBMIT.py | 149 match = re.search(r"(?<!\\)(?P<quote>\")", contents[pos:]) 150 return -1 if not match else match.start("quote") + pos 168 quote = -1 175 if quote < pos: quote = FindUnquotedQuote(contents, pos) 184 if quote < 0: 185 quote = len(contents) 187 next = min(open_brace, min(close_brace, min(quote, name))) 193 elif next == quote:
|
/external/chromium_org/tools/grit/grit/gather/ |
chrome_html.py | 35 _CSS_URL_PATTERN = 'url\((?P<quote>"|\'|)(?P<filename>[^"\'()]*)(?P=quote)\)' 46 '(\s*,?\s*url\((?P<quote>"|\'|)[^"\'()]*(?P=quote)\)[ ]*[0-9.]*x)*)\)', 50 'url\((?P<quote>"|\'|)[^"\'()]*(?P=quote)\)[ ]*(?P<scale>[0-9.]*x)', 110 def GenerateImageSet(images, quote): 116 quote: a string giving the quotation character to use (i.e. "'") 124 imageset.append("url(%s%s%s) %s" % (quote, filename, quote, scale_factor) [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
http_header_util.py | 198 quote = False 205 quote = True 212 if quote:
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
http_header_util.py | 198 quote = False 205 quote = True 212 if quote:
|