/external/javapoet/src/test/java/com/squareup/javapoet/ |
D | UtilTest.java | 59 @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/ |
D | traffic_annotation_extractor.cpp | 309 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/ |
D | StringLiteral.java | 26 return new StringLiteral(value, stringLiteral(value)); in forValue() 30 private static String stringLiteral(String value) { in stringLiteral() method in StringLiteral
|
/external/libxkbcommon/xkbcommon/src/ |
D | darray.h | 121 #define darray_append_lit(arr, stringLiteral) do { \ argument 122 darray_append_items(arr, stringLiteral, sizeof(stringLiteral)); \
|
/external/clang/unittests/AST/ |
D | ASTImporterTest.cpp | 112 stringLiteral( in TEST() 121 stringLiteral( in TEST() 130 stringLiteral( in TEST() 418 stringLiteral( in TEST()
|
/external/v8/tools/clang/rewrite_scoped_refptr/ |
D | RewriteScopedRefptr.cpp | 393 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/ |
D | AddAnnotation.java | 339 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/ |
D | EmptyStringConverter.cpp | 87 argumentCountIs(2), hasArgument(0, id("literal", stringLiteral())), in SetupMatchers()
|
/external/javapoet/ |
D | CHANGELOG.md | 185 * New: `StringLiteral` type which encapsulates the behavior of `stringLiteral`. 244 * Fix: `stringLiteral` now correctly handles escapes and control characters.
|
/external/v8/src/torque/ |
D | torque-parser.cc | 903 Symbol stringLiteral = { member 907 Symbol externalString = {Rule({&stringLiteral}, StringLiteralUnquoteAction)}; 1044 Rule({&stringLiteral}, MakeStringLiteralExpression),
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersNodeTest.cpp | 630 StatementMatcher Literal = stringLiteral(); in TEST() 766 has(stringLiteral())))); in TEST()
|
D | ASTMatchersNarrowingTest.cpp | 1143 StatementMatcher Literal = stringLiteral(hasSize(4)); in TEST()
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | Registry.cpp | 388 REGISTER_MATCHER(stringLiteral); in RegistryMaps()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1660 StringLiteral> stringLiteral; variable
|