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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /external/pcre/dist2/src/
pcre2_config.c 56 #define STRING(a) # a
57 #define XSTRING(s) STRING(s)
71 >= 0 if a string value
187 PCRE2_PRERELEASE is set to an empty string (which it is for real releases).
197 of STRING(). The C standard states: "If (before argument substitution) any
199 turns out the gcc treats this case as a single empty string - which is what
pcre2_error.c 48 #define STRING(a) # a
49 #define XSTRING(s) STRING(s)
56 long string. We cannot use a table of offsets, because the lengths of inserts
62 substring, so that the whole string ends with \0\0, which can be detected when
167 "missing terminating delimiter for callout with string argument\0"
168 "unrecognized string delimiter follows (?C\0"
175 "pattern string is longer than the limit set by the application\0"
223 "invalid replacement string\0"
224 "bad offset into UTF string\0"
249 "bad escape sequence in replacement string\0
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
EmptyArray.java 23 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";
  /system/libvintf/include/vintf/
KernelConfigType.h 21 #include <string>
28 STRING,
34 static const std::array<std::string, 4> gKernelConfigTypeStrings = {
36 "string",
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic4x/
data.s 7 STRING: .string "ABCD", 51h, 52h, 53h, 54h, "Houston", 36+12
  /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,
  /external/conscrypt/common/src/main/java/org/conscrypt/
EmptyArray.java 32 static final String[] STRING = new String[0];
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 37 STRING("String") {
43 return call(Type.STRING, "asString", expression);
85 // This is a string that represents the name of a Data path.
86 VAR_NAME("String") {
89 final JavaExpression stringExpr = expression.cast(Type.STRING);
134 public final String symbol;
142 private Type(String symbol) {
180 public String toString() {
189 public static JavaExpression call(final String method, final JavaExpression... params)
    [all...]
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl06.c 66 #define STRING "abcdefghijklmnopqrstuvwxyz\n"
118 char *buf = STRING;
  /external/pdfium/fxjs/
cjs_keyvalue.h 13 enum class JS_GlobalDataType { NUMBER = 0, BOOLEAN, STRING, OBJECT, NULLOBJ };
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
ReferenceType.java 38 public static final int STRING = 0;
45 public static String toString(int referenceType) {
47 case STRING:
48 return "string";
64 return STRING;
97 public InvalidReferenceTypeException(int referenceType, String message, Object... formatArgs) {
ValueType.java 42 public static final int STRING = 0x17;
  /external/tensorflow/tensorflow/contrib/lite/python/
lite.py 56 STRING = _types_pb2.STRING
220 "STRING",
  /external/turbine/java/com/google/turbine/binder/sym/
ClassSymbol.java 24 * <p>Turbine identifies classes by their binary string name. Symbols are immutable and do not hold
33 public static final ClassSymbol STRING = new ClassSymbol("java/lang/String");
37 private final String className;
39 public ClassSymbol(String className) {
49 public String toString() {
59 public String binaryName() {
  /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,
  /hardware/nxp/secure_element/libese-spi/p73/utils/
config.h 19 #include <string>
24 enum Type { UNSIGNED, STRING, BYTES };
27 std::string getString() const;
31 bool parseFromString(std::string in);
35 std::string value_string_;
42 void parseFromFile(const std::string& file_name);
43 void parseFromString(const std::string& config);
45 bool hasKey(const std::string& key);
46 std::string getString(const std::string& key)
    [all...]
  /packages/apps/Settings/tests/unit/src/com/android/settings/wifi/
SavedNetworkSettingsTest.java 42 private static final String STRING = "string";
43 private static final String WIFI_ADD_NETWORK = "wifi_add_network";
44 private static final String WIFI_NETWORK_LABEL = "wifi_ssid";
52 private int resourceId(String type, String name) {
72 onView(withText(resourceId(STRING, WIFI_ADD_NETWORK))).check(matches(isDisplayed()))
74 onView(withText(resourceId(STRING, WIFI_NETWORK_LABEL))).check(matches(isDisplayed()));
  /packages/services/Car/car-lib/src/android/car/
VehiclePropertyType.java 30 public static final int STRING = 0x00100000;
44 STRING,
  /system/nfc/utils/include/
config.h 19 #include <string>
24 enum Type { UNSIGNED, STRING, BYTES };
27 ConfigValue(std::string);
31 std::string getString() const;
35 bool parseFromString(std::string in);
39 std::string value_string_;
46 void parseFromFile(const std::string& file_name);
47 void parseFromString(const std::string& config);
48 void addConfig(const std::string& config, ConfigValue& value);
50 bool hasKey(const std::string& key)
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
pr12365b.c 2 #define ASMNAME2(prefix, cname) STRING (prefix) cname
3 #define STRING(x) #x
  /external/libchrome/base/strings/
safe_sprintf.h 46 // RAW_CHECK() to help diagnose problems when the format string does not
48 // and SafeSPrintf() instead returns an output string that expands only
102 // case of an error, the format string will not be expanded. (i.e. something
138 enum Type { INT, UINT, STRING, POINTER };
182 // A C-style text string.
183 Arg(const char* s) : str(s), type(STRING) { }
184 Arg(char* s) : str(s), type(STRING) { }
196 // A C-style text string.
206 // an snprintf()-style format string.
  /external/libmojo/device/bluetooth/bluez/
bluetooth_service_attribute_value_bluez.h 25 // will be the string representation of the UUID. For a sequence, it
29 enum Type { NULLTYPE = 0, UINT, INT, UUID, STRING, BOOL, SEQUENCE, URL };
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
DataType.java 39 * <p>TensorFlow uses the STRING type for an arbitrary sequence of bytes.
41 STRING(7),
100 typeCodes.put(String.class, DataType.STRING);

Completed in 990 milliseconds

1 2 3 4 5 6 7 8 91011>>