/ndk/sources/host-tools/nawk-20071023/ |
awkgram.y | 27 #include <string.h> 62 %token <cp> VAR IVAR VARNF CALL NUMBER STRING 84 %left PRINT PRINTF RETURN SPLIT SPRINTF STRING SUB SUBSTR 390 | SPLIT '(' pattern comma varname comma pattern ')' /* string */ 391 { $$ = op4(SPLIT, $3, makearr($5), $7, (Node*)STRING); } 395 { $$ = op4(SPLIT, $3, makearr($5), NIL, (Node*)STRING); } /* default */ 397 | STRING { $$ = celltonode($1, CCON); }
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
extension_set.cc | 377 const string& ExtensionSet::GetString(int number, 378 const string& default_value) const { 384 GOOGLE_DCHECK_TYPE(iter->second, OPTIONAL, STRING); 389 string* ExtensionSet::MutableString(int number, FieldType type, 396 extension->string_value = new string; 398 GOOGLE_DCHECK_TYPE(*extension, OPTIONAL, STRING); 404 const string& ExtensionSet::GetRepeatedString(int number, int index) const { 407 GOOGLE_DCHECK_TYPE(iter->second, REPEATED, STRING); 411 string* ExtensionSet::MutableRepeatedString(int number, int index) { 414 GOOGLE_DCHECK_TYPE(iter->second, REPEATED, STRING); [all...] |
/external/protobuf/src/google/protobuf/ |
extension_set.cc | 346 const string& ExtensionSet::GetString(int number, 347 const string& default_value) const { 353 GOOGLE_DCHECK_TYPE(iter->second, OPTIONAL, STRING); 358 string* ExtensionSet::MutableString(int number, FieldType type, 365 extension->string_value = new string; 367 GOOGLE_DCHECK_TYPE(*extension, OPTIONAL, STRING); 373 const string& ExtensionSet::GetRepeatedString(int number, int index) const { 376 GOOGLE_DCHECK_TYPE(iter->second, REPEATED, STRING); 380 string* ExtensionSet::MutableRepeatedString(int number, int index) { 383 GOOGLE_DCHECK_TYPE(iter->second, REPEATED, STRING); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
JavaScriptFormatter.js | 52 * @return {string} 60 * @return {string} 75 * @param {string} token 85 * @param {string} token 109 * @param {string} endToken 600 case FormatterWorker.JavaScriptTokens.STRING: 601 return this._consume(FormatterWorker.JavaScriptTokens.STRING); 639 if (token === FormatterWorker.JavaScriptTokens.IDENTIFIER || token === FormatterWorker.JavaScriptTokens.NUMBER || token === FormatterWorker.JavaScriptTokens.STRING || 667 case FormatterWorker.JavaScriptTokens.STRING: 668 this._consume(FormatterWorker.JavaScriptTokens.STRING); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/ |
gas-parse.c | 111 case STRING: 153 case STRING: str = "string"; break; 262 We expect a positive integer (line) followed by a string (filename). If we 311 if (curtok != STRING) { 365 another positive integer, followed by a string (filename). 423 if (!expect(STRING)) { 734 /* DIR_SECTION ID ',' STRING ',' '@' ID ',' dirvals */ 745 if (!expect(STRING)) { 747 N_("flag string expected")) [all...] |
/external/chromium/base/json/ |
json_reader.cc | 90 Value* JSONReader::Read(const std::string& json, 96 Value* JSONReader::ReadAndReturnError(const std::string& json, 99 std::string* error_msg_out) { 114 std::string JSONReader::ErrorCodeToString(JsonParseError error_code) { 117 return std::string(); 136 return std::string(); 140 std::string JSONReader::GetErrorMessage() const { 145 Value* JSONReader::JsonToValue(const std::string& json, bool check_root, 158 // When the input JSON string starts with a UTF-8 Byte-Order-Mark 189 std::string JSONReader::FormatErrorMessage(int line, int column [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
tokenize.py | 12 the token (a string) 15 the original line (string) 32 import string, re namespace 69 # Tail end of ' string. 71 # Tail end of " string. 73 # Tail end of ''' string. 75 # Tail end of """ string. 78 # Single-line ' or " string. 79 String = group(r"[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*'", 94 PlainToken = group(Number, Funny, String, Name [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
tokenize.py | 12 the token (a string) 15 the original line (string) 32 import string, re namespace 69 # Tail end of ' string. 71 # Tail end of " string. 73 # Tail end of ''' string. 75 # Tail end of """ string. 78 # Single-line ' or " string. 79 String = group(r"[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*'", 94 PlainToken = group(Number, Funny, String, Name [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
Python.g | 323 | (STRING)+ 512 /** Match various string types. Note that greedy=false implies ''' 515 STRING 564 // make a string of n spaces where n is column number - 1
|
/external/chromium/chrome/browser/ui/views/frame/ |
browser_root_view.cc | 32 *formats = ui::OSExchangeData::URL | ui::OSExchangeData::STRING;
|
/external/chromium_org/mojo/public/bindings/generators/ |
mojom_pack.py | 29 mojom.STRING: 8
|
/external/chromium_org/third_party/icu/source/test/perf/ubrkperf/ |
ubrkperfold.cpp | 35 "-uselen Use API with string lengths. Default is null-terminated strings\n" 52 #include <string.h> 125 enum {FLAG, NUM, STRING} type; 130 {"-file", OptSpec::STRING, &opt_fName}, 131 {"-locale", OptSpec::STRING, &opt_locale}, 244 case OptSpec::STRING:
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
s_expression.cpp | 31 /* Assume the given string is already nul-terminated and in memory that 134 * the string. However, ralloc_strndup'ing every individual Symbol is 140 * original source string unmodified, and altering the copy to contain the 186 case STRING:
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
FieldSet.java | 378 case STRING: isValid = value instanceof String ; break; 549 case STRING : return input.readString (); 663 case STRING : output.writeStringNoTag ((String ) value); break; 809 case STRING : return CodedOutputStream.computeStringSizeNoTag ((String )value);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
parser.c | 3 #include <string.h> 175 case STRING:
|
/external/chromium_org/tools/gn/ |
function_rebase_path_unittest.cc | 13 std::string RebaseOne(Scope* scope, 28 bool is_string = result.type() == Value::STRING; 137 // Two arg string input.
|
setup.cc | 179 empty_settings_(&empty_build_settings_, std::string()), 215 std::string build_path_8 = FilePathToUTF8(build_path); 243 std::string args = cmdline.GetSwitchValueASCII(kSwitchArgs); 313 std::string python_path; 377 if (!secondary_value->VerifyTypeIs(Value::STRING, &err)) { 394 } else if (!build_config_value->VerifyTypeIs(Value::STRING, &err)) {
|
/external/chromium_org/ui/base/dragdrop/ |
os_exchange_data.h | 11 #include <string> 59 STRING = 1 << 0, 130 const std::string& file_contents) = 0; 132 std::string* file_contents) const = 0; 221 const std::string& file_contents); 223 std::string* file_contents) const;
|
/external/icu4c/test/perf/ubrkperf/ |
ubrkperfold.cpp | 35 "-uselen Use API with string lengths. Default is null-terminated strings\n" 52 #include <string.h> 125 enum {FLAG, NUM, STRING} type; 130 {"-file", OptSpec::STRING, &opt_fName}, 131 {"-locale", OptSpec::STRING, &opt_locale}, 244 case OptSpec::STRING:
|
/external/mesa3d/src/glsl/ |
s_expression.cpp | 31 /* Assume the given string is already nul-terminated and in memory that 134 * the string. However, ralloc_strndup'ing every individual Symbol is 140 * original source string unmodified, and altering the copy to contain the 186 case STRING:
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
FieldSet.java | 305 case STRING: isValid = value instanceof String ; break; 443 case STRING : return input.readString (); 543 case STRING : output.writeStringNoTag ((String ) value); break; 666 case STRING : return CodedOutputStream.computeStringSizeNoTag ((String )value);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
tic.h | 62 ** String Section, containing short integer offsets into the 63 ** String Table, one per string capability 64 ** String Table, containing the actual characters of the string 144 #define STRING 2 /* String-valued capability */ 161 char *tk_valstring; /* value of capability (if a string) */ 167 * Offsets to string capabilities, with the corresponding functionkey 195 int nte_type; /* BOOLEAN, NUMBER or STRING */ [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
tic.h | 62 ** String Section, containing short integer offsets into the 63 ** String Table, one per string capability 64 ** String Table, containing the actual characters of the string 144 #define STRING 2 /* String-valued capability */ 161 char *tk_valstring; /* value of capability (if a string) */ 167 * Offsets to string capabilities, with the corresponding functionkey 195 int nte_type; /* BOOLEAN, NUMBER or STRING */ [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
tic.h | 62 ** String Section, containing short integer offsets into the 63 ** String Table, one per string capability 64 ** String Table, containing the actual characters of the string 144 #define STRING 2 /* String-valued capability */ 161 char *tk_valstring; /* value of capability (if a string) */ 167 * Offsets to string capabilities, with the corresponding functionkey 195 int nte_type; /* BOOLEAN, NUMBER or STRING */ [all...] |
/external/chromium_org/chrome/browser/password_manager/ |
native_backend_gnome_x_unittest.cc | 34 const std::string& display_name, 35 const std::string& password) 44 explicit ItemAttribute(const std::string& value) 45 : type(STRING), value_string(value) {} 49 return (type == STRING) ? value_string == x.value_string 53 enum Type { UINT32, STRING } type; 55 std::string value_string; 58 typedef std::map<std::string, ItemAttribute> attribute_map; 59 typedef std::vector<std::pair<std::string, ItemAttribute> > attribute_query; 72 std::string keyring [all...] |