/external/clang/test/Lexer/ |
pragma-message.c | 4 // message: Sends a string literal to the standard output without terminating 12 #define STRING(x) STRING2(x) 13 #pragma message(":O I'm a message! " STRING(__LINE__)) // expected-warning {{:O I'm a message! 13}} 14 #pragma message ":O gcc accepts this! " STRING(__LINE__) // expected-warning {{:O gcc accepts this! 14}} 16 #pragma message(invalid) // expected-error {{expected string literal in pragma message}} 21 #pragma GCC warning(":O I'm a message! " STRING(__LINE__)) // expected-warning {{:O I'm a message! 21}} 22 #pragma GCC warning ":O gcc accepts this! " STRING(__LINE__) // expected-warning {{:O gcc accepts this! 22}} 24 #pragma GCC error(":O I'm a message! " STRING(__LINE__)) // expected-error {{:O I'm a message! 24}} 25 #pragma GCC error ":O gcc accepts this! " STRING(__LINE__) // expected-error {{:O gcc accepts this! 25}} 28 COMPILE_ERROR("Compile error at line " STRING(__LINE__) "!"); // expected-error {{Compile error at line 28!} [all...] |
/frameworks/base/core/java/android/util/ |
JsonToken.java | 20 * A structure, name or value type in a JSON-encoded string. 56 * A JSON string. 58 STRING,
|
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/gl-matrix/ |
version.rb | 24 STRING = [MAJOR, MINOR, PATCH, REL].compact.join '.' 27 VERSION = Version::STRING
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
parser.h | 11 STRING = 263, 20 #define STRING 263
|
/cts/libs/json/src/com/android/json/stream/ |
JsonToken.java | 20 * A structure, name or value type in a JSON-encoded string. 56 * A JSON string. 58 STRING,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
stab.h | 7 #define __define_stab(NAME, CODE, STRING) NAME=CODE,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
stab.h | 7 #define __define_stab(NAME, CODE, STRING) NAME=CODE,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
stab.h | 7 #define __define_stab(NAME, CODE, STRING) NAME=CODE,
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
TestTypedefs.idl | 35 Constructor(STRING hello, TEST_CALLBACK_INTERFACE testCallbackInterface) 45 void setShadow(DOUBLE width, DOUBLE height, float blur, [StrictTypeChecking] optional STRING color, optional DOUBLE alpha); 54 [RaisesException] STRING[] stringArrayFunction2(STRING[] values); 69 typedef DOMString STRING;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RenameResourceXmlTextActionTest.java | 34 checkWord(" @string/nam^e ", Pair.of(ResourceType.STRING, "name")); 35 checkWord("@string/nam^e ", Pair.of(ResourceType.STRING, "name")); 36 checkWord("\"^@string/name ", Pair.of(ResourceType.STRING, "name")); 37 checkWord("^@string/name ", Pair.of(ResourceType.STRING, "name")); 38 checkWord("\n^@string/name ", Pair.of(ResourceType.STRING, "name")) [all...] |
/external/dhcpcd/ |
showlease.c | 20 #define STRING (1 << 7) 45 { 12, STRING, "host_name" }, 47 { 14, STRING, "merit_dump" }, 48 { 15, STRING, "domain_name" }, 50 { 17, STRING, "root_path" }, 51 { 18, STRING, "extensions_path" }, 73 { 40, STRING, "nis_domain" }, 76 { 43, STRING, "vendor_encapsulated_options" }, 80 { 47, STRING, "netbios_scope" }, 89 { 56, STRING, "dhcp_message" } [all...] |
/libcore/crypto/src/main/java/org/conscrypt/util/ |
EmptyArray.java | 32 public static final String[] STRING = new String[0];
|
/libcore/luni/src/main/java/javax/xml/xpath/ |
XPathConstants.java | 47 * <p>The XPath 1.0 string data type.</p> 49 * <p>Maps to Java {@link String}.</p> 51 public static final QName STRING = new QName("http://www.w3.org/1999/XSL/Transform", "STRING"); 77 public static final String DOM_OBJECT_MODEL = "http://java.sun.com/jaxp/xpath/dom";
|
/external/chromium_org/tools/gn/ |
token.cc | 11 std::string UnescapeString(const base::StringPiece& input) { 12 std::string result; 44 return type_ == STRING && value_ == v; 47 std::string Token::StringValue() const { 48 DCHECK(type() == STRING); 50 // Trim off the string terminators at the end.
|
value.cc | 35 Value::Value(const ParseNode* origin, std::string str_val) 36 : type_(STRING), 44 : type_(STRING), 70 case STRING: 71 return "string"; 80 std::string Value::ToString(bool quote_string) const { 88 case STRING: 93 std::string result = "["; 103 return std::string(); 110 *err = Err(origin(), std::string("This is not a ") + DescribeType(t) + ".") [all...] |
value.h | 22 STRING, 30 Value(const ParseNode* origin, std::string str_val); 36 // Returns a string describing the given type. 65 std::string& string_value() { 66 DCHECK(type_ == STRING); 69 const std::string& string_value() const { 70 DCHECK(type_ == STRING); 83 // Converts the given value to a string. Returns true if strings should be 84 // quoted or the ToString of a string should be the string itself [all...] |
function_template.cc | 93 "Need exactly one string arg to template."); 96 if (!args[0].VerifyTypeIs(Value::STRING, err)) 98 std::string template_name = args[0].string_value();
|
/libcore/luni/src/main/java/javax/net/ssl/ |
DefaultSSLServerSocketFactory.java | 31 private final String errMessage; 33 DefaultSSLServerSocketFactory(String mes) { 38 public String[] getDefaultCipherSuites() { 39 return EmptyArray.STRING; 43 public String[] getSupportedCipherSuites() { 44 return EmptyArray.STRING;
|
/external/bison/src/ |
parse-gram.y | 129 %token STRING "string" 203 %type <chars> STRING "%{...%}" EPILOGUE braceless content.opt 206 STRING 262 | "%defines" STRING 270 | "%file-prefix" STRING { spec_file_prefix = $2; } 271 | "%file-prefix" "=" STRING { spec_file_prefix = $3; } /* deprecated */ 286 | "%language" STRING { language_argmatch ($2, grammar_prio, @1); } 289 | "%name-prefix" STRING { spec_name_prefix = $2; } 290 | "%name-prefix" "=" STRING { spec_name_prefix = $3; } /* deprecated * [all...] |
/libcore/luni/src/main/java/libcore/util/ |
EmptyArray.java | 30 public static final String[] STRING = new String[0];
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/ |
aout.h | 235 /* Make an internal label into a string. */ 237 #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM) \ 238 sprintf (STRING, "*%s%s%u", LOCAL_LABEL_PREFIX, PREFIX, (unsigned int)(NUM)) 371 #define ASM_OUTPUT_IDENT(STREAM,STRING) \ 372 asm_fprintf (STREAM, "%@ - - - ident %s\n", STRING)
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/ |
aout.h | 235 /* Make an internal label into a string. */ 237 #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM) \ 238 sprintf (STRING, "*%s%s%u", LOCAL_LABEL_PREFIX, PREFIX, (unsigned int)(NUM)) 371 #define ASM_OUTPUT_IDENT(STREAM,STRING) \ 372 asm_fprintf (STREAM, "%@ - - - ident %s\n", STRING)
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/ |
aout.h | 235 /* Make an internal label into a string. */ 237 #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM) \ 238 sprintf (STRING, "*%s%s%u", LOCAL_LABEL_PREFIX, PREFIX, (unsigned int)(NUM)) 371 #define ASM_OUTPUT_IDENT(STREAM,STRING) \ 372 asm_fprintf (STREAM, "%@ - - - ident %s\n", STRING)
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/ |
aout.h | 235 /* Make an internal label into a string. */ 237 #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM) \ 238 sprintf (STRING, "*%s%s%u", LOCAL_LABEL_PREFIX, PREFIX, (unsigned int)(NUM)) 371 #define ASM_OUTPUT_IDENT(STREAM,STRING) \ 372 asm_fprintf (STREAM, "%@ - - - ident %s\n", STRING)
|
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/ |
StGUnit.g | 87 : STRING {$in = adapter.createStringInput($STRING.text);} 93 : STRING 98 fileInput returns [String path] 116 STRING
|