Home
last modified time | relevance | path

Searched refs:stringLiteral (Results 1 – 14 of 14) sorted by relevance

/external/javapoet/src/test/java/com/squareup/javapoet/
DUtilTest.java59 @Test public void stringLiteral() { in stringLiteral() method in UtilTest
60 stringLiteral("abc"); in stringLiteral()
61 stringLiteral("♦♥♠♣"); in stringLiteral()
62 stringLiteral("€\\t@\\t$", "€\t@\t$", " "); in stringLiteral()
63 stringLiteral("abc();\\n\"\n + \"def();", "abc();\ndef();", " "); in stringLiteral()
64 stringLiteral("This is \\\"quoted\\\"!", "This is \"quoted\"!", " "); in stringLiteral()
65 stringLiteral("e^{i\\\\pi}+1=0", "e^{i\\pi}+1=0", " "); in stringLiteral()
68 void stringLiteral(String string) { in stringLiteral() method in UtilTest
69 stringLiteral(string, string, " "); in stringLiteral()
72 void stringLiteral(String expected, String value, String indent) { in stringLiteral() method in UtilTest
/external/v8/tools/clang/traffic_annotation_extractor/
Dtraffic_annotation_extractor.cpp309 hasArgument(0, stringLiteral().bind("unique_id")), in RunMatchers()
310 hasArgument(1, stringLiteral().bind("annotation_text")), in RunMatchers()
318 hasArgument(0, stringLiteral().bind("unique_id")), in RunMatchers()
319 hasArgument(1, stringLiteral().bind("completing_id")), in RunMatchers()
320 hasArgument(2, stringLiteral().bind("annotation_text")), in RunMatchers()
328 hasArgument(0, stringLiteral().bind("unique_id")), in RunMatchers()
329 hasArgument(2, stringLiteral().bind("annotation_text")), in RunMatchers()
337 hasArgument(0, stringLiteral().bind("unique_id")), in RunMatchers()
338 hasArgument(1, stringLiteral().bind("group_id")), in RunMatchers()
339 hasArgument(3, stringLiteral().bind("annotation_text")), in RunMatchers()
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
DStringLiteral.java26 return new StringLiteral(value, stringLiteral(value)); in forValue()
30 private static String stringLiteral(String value) { in stringLiteral() method in StringLiteral
/external/libxkbcommon/xkbcommon/src/
Ddarray.h121 #define darray_append_lit(arr, stringLiteral) do { \ argument
122 darray_append_items(arr, stringLiteral, sizeof(stringLiteral)); \
/external/clang/unittests/AST/
DASTImporterTest.cpp112 stringLiteral( in TEST()
121 stringLiteral( in TEST()
130 stringLiteral( in TEST()
418 stringLiteral( in TEST()
/external/v8/tools/clang/rewrite_scoped_refptr/
DRewriteScopedRefptr.cpp393 hasArgument(2, stringLiteral())), in main()
402 hasArgument(0, stringLiteral()), in main()
403 hasArgument(1, stringLiteral()), in main()
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
DAddAnnotation.java339 StringLiteral stringLiteral = rewrite.getAST().newStringLiteral(); in createAnnotationValue() local
340 stringLiteral.setLiteralValue((String) value); in createAnnotationValue()
341 return stringLiteral; in createAnnotationValue()
/external/v8/tools/clang/empty_string/
DEmptyStringConverter.cpp87 argumentCountIs(2), hasArgument(0, id("literal", stringLiteral())), in SetupMatchers()
/external/javapoet/
DCHANGELOG.md185 * New: `StringLiteral` type which encapsulates the behavior of `stringLiteral`.
244 * Fix: `stringLiteral` now correctly handles escapes and control characters.
/external/v8/src/torque/
Dtorque-parser.cc903 Symbol stringLiteral = { member
907 Symbol externalString = {Rule({&stringLiteral}, StringLiteralUnquoteAction)};
1044 Rule({&stringLiteral}, MakeStringLiteralExpression),
/external/clang/unittests/ASTMatchers/
DASTMatchersNodeTest.cpp630 StatementMatcher Literal = stringLiteral(); in TEST()
766 has(stringLiteral())))); in TEST()
DASTMatchersNarrowingTest.cpp1143 StatementMatcher Literal = stringLiteral(hasSize(4)); in TEST()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp388 REGISTER_MATCHER(stringLiteral); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1660 StringLiteral> stringLiteral; variable