/external/qemu/ |
envlist.c | 62 * Parses comma separated list of set/modify environment 79 * Parses comma separated list of unset environment variable 91 * Parses comma separated list of set, modify or unset entries
|
/external/clang/lib/Lex/ |
TokenLexer.cpp | 122 /// Remove comma ahead of __VA_ARGS__, if present, according to compiler dialect 123 /// settings. Returns true if the comma is removed. 133 // In Microsoft-compatibility mode, a comma is removed in the expansion 139 // GCC removes the comma in the expansion of " ... , ## __VA_ARGS__ " if 148 // Is a comma available to be removed? 149 if (ResultToks.empty() || !ResultToks.back().is(tok::comma)) 156 // Remove the comma. 159 // If the comma was right after another paste (e.g. "X##,##__VA_ARGS__"), 160 // then removal of the comma should produce a placemarker token (in C99 166 // Never add a space, even if the comma, ##, or arg had a space [all...] |
/external/netperf/ |
netsh.c | 281 specifying one value without a comma will set both parms to that\n\ 282 value, specifying a value with a leading comma will set just the second\n\ 283 parm, a value with a trailing comma will set just the first. To set\n\ 285 comma.\n\ 287 "* For these options taking two parms, specifying one value with no comma\n\ 289 value. To set the second value it must be preceded with a comma or be a\n\ 290 comma-separated pair. This is to retain previous netperf behaviour.\n"; 295 /* If the second argument is not specified, and there is no comma, */ 297 /* value of the first. If there is a comma, then the value of the */ 306 /* there was a comma arg2 should be the second arg* [all...] |
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
gl_apitemp.py | 58 comma = "" 78 t_string = t_string + comma + p.format_string() 79 p_string = p_string + comma + p.name 80 o_string = o_string + comma + cast + p.name 81 comma = ", "
|
/external/mesa3d/src/mapi/glapi/gen/ |
gl_apitemp.py | 58 comma = "" 78 t_string = t_string + comma + p.format_string() 79 p_string = p_string + comma + p.name 80 o_string = o_string + comma + cast + p.name 81 comma = ", "
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
JavaScriptFormatter.js | 171 ["COMMA", ","], ["OR", "||"], ["AND", "&&"], ["BIT_OR", "|"], ["BIT_XOR", "^"], ["BIT_AND", "&"], ["SHL", "<<"], ["SAR", ">>"], ["SHR", ">>>"], 389 this._consume(Tokens.COMMA); 400 } while (this._peek() === Tokens.COMMA); 614 while (this._peek() === Tokens.COMMA) { 615 this._expect(Tokens.COMMA); 802 if (this._peek() !== Tokens.COMMA) 805 this._expect(Tokens.COMMA); 838 this._expect(Tokens.COMMA); 860 this._expect(Tokens.COMMA); 886 this._expect(Tokens.COMMA); [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
KeySpecParserTests.java | 120 assertParser("Single comma", ",", 122 assertParser("Single escaped comma", "\\,", 147 assertParser("Single letter with comma outputText", "a|a,b", 149 assertParser("Single letter with escaped comma outputText", "a|a\\,b", 179 assertParser("Label with comma", "a,c", 181 assertParser("Label with escaped comma", "a\\,c", 195 assertParser("Label with comma and outputText", "a,c|def", 197 assertParser("Escaped comma label with outputText", "a\\,c|def", 211 assertParser("Label with comma outputText", "abc|a,b", 213 assertParser("Label with escaped comma outputText", "abc|a\\,b" [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8PerContextData.cpp | 207 char* comma = strnstr(*ascii, ",", ascii.length()); local 208 if (!comma) 210 return atoi(comma + 1);
|
DebuggerScript.js | 119 var comma = contextData.indexOf(","); 120 if (comma === -1) 124 var idSuffix = contextData.substring(comma); // including the comma
|
/external/oprofile/pp/ |
opreport_options.cpp | 80 "comma separated list", "cpu,lib,tid,tgid,unitmask,all"), 84 "exclude these comma separated symbols", "symbols"), 86 "include these comma separated symbols", "symbols"),
|
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/ |
DirectiveList.java | 67 * This function takes a US-ASCII character string containing a list of comma 213 throw new SaslException("Parse error: Expected a comma."); 238 throw new SaslException("Parse error: Trailing comma.");
|
/external/smack/src/com/novell/sasl/client/ |
DirectiveList.java | 67 * This function takes a US-ASCII character string containing a list of comma 213 throw new SaslException("Parse error: Expected a comma."); 238 throw new SaslException("Parse error: Trailing comma.");
|
/packages/inputmethods/LatinIME/tools/make-keyboard-text/res/values-ar/ |
donottranslate-more-keys.xml | 65 <!-- U+060C: "?" ARABIC COMMA --> 76 <!-- U+060C: "?" ARABIC COMMA 82 U+060C: "?" ARABIC COMMA
|
/packages/inputmethods/LatinIME/tools/make-keyboard-text/res/values-fa/ |
donottranslate-more-keys.xml | 65 <!-- U+060C: "?" ARABIC COMMA --> 76 <!-- U+060C: "?" ARABIC COMMA 92 U+060C: "?" ARABIC COMMA
|
/build/core/combo/ |
TARGET_linux-mips.mk | 235 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \ 237 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \ 260 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \ 262 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
|
TARGET_linux-x86.mk | 190 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \ 192 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \ 215 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \ 217 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
|
/external/chromium_org/base/json/ |
json_reader.cc | 19 "Trailing comma not allowed.";
|
/external/chromium_org/chrome/common/extensions/docs/templates/intros/ |
commands.html | 13 <p>Supported keys: A-Z, 0-9, Comma, Period, Home, End, PageUp, PageDown, Insert,
|
/external/chromium_org/chromeos/ime/ |
input_method_descriptor.h | 53 // "us(dvorak)", "jp"). Comma separated layout names do NOT appear.
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
window-open-features-parsing.html | 10 - the trailing comma catches a previous mistake i made reading past the end of the string
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSKeyframeRule.h | 69 // comma separated list of keys
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/ |
deps.py | 60 # Trailing comma suppresses printing newline
|
/external/chromium_org/third_party/icu/source/common/ |
ucnv_io.h | 90 * @param containsOption A return value stating whether the returned converter name contains an option (a comma)
|
/external/chromium_org/third_party/icu/source/i18n/ |
selfmtimpl.h | 41 #define COMMA ((UChar)0x002C)
|
/external/chromium_org/third_party/icu/source/tools/genrb/ |
read.c | 25 #define COMMA 0x002C 90 case COMMA: 272 || c == COMMA 308 if (c == OPENBRACE || c == CLOSEBRACE || c == COMMA || c == COLON) {
|