Home
last modified time | relevance | path

Searched refs:LITERAL (Results 1 - 25 of 36) sorted by relevance

12

/third_party/nghttp2/src/
H A Dshrpx_config_test.cc84 CU_ASSERT(LogFragmentType::LITERAL == res[1].type); in test_shrpx_config_parse_log_format()
89 CU_ASSERT(LogFragmentType::LITERAL == res[3].type); in test_shrpx_config_parse_log_format()
94 CU_ASSERT(LogFragmentType::LITERAL == res[5].type); in test_shrpx_config_parse_log_format()
99 CU_ASSERT(LogFragmentType::LITERAL == res[7].type); in test_shrpx_config_parse_log_format()
104 CU_ASSERT(LogFragmentType::LITERAL == res[9].type); in test_shrpx_config_parse_log_format()
110 CU_ASSERT(LogFragmentType::LITERAL == res[11].type); in test_shrpx_config_parse_log_format()
115 CU_ASSERT(LogFragmentType::LITERAL == res[13].type); in test_shrpx_config_parse_log_format()
121 CU_ASSERT(LogFragmentType::LITERAL == res[15].type); in test_shrpx_config_parse_log_format()
128 CU_ASSERT(LogFragmentType::LITERAL == res[0].type); in test_shrpx_config_parse_log_format()
135 CU_ASSERT(LogFragmentType::LITERAL in test_shrpx_config_parse_log_format()
[all...]
/third_party/python/Lib/re/
H A D_parser.py29 _UNITCODES = frozenset({ANY, RANGE, IN, LITERAL, NOT_LITERAL, CATEGORY})
32 r"\a": (LITERAL, ord("\a")),
33 r"\b": (LITERAL, ord("\b")),
34 r"\f": (LITERAL, ord("\f")),
35 r"\n": (LITERAL, ord("\n")),
36 r"\r": (LITERAL, ord("\r")),
37 r"\t": (LITERAL, ord("\t")),
38 r"\v": (LITERAL, ord("\v")),
39 r"\\": (LITERAL, ord("\\"))
322 return LITERAL, in
[all...]
H A D_constants.py89 'LITERAL',
155 LITERAL: LITERAL_IGNORE,
160 LITERAL: LITERAL_LOC_IGNORE,
165 LITERAL: LITERAL_UNI_IGNORE,
H A D_compiler.py20 _LITERAL_CODES = {LITERAL, NOT_LITERAL}
81 emit(LITERAL)
221 elif op is LITERAL:
250 if op is LITERAL:
292 # For now, IN_UNI_IGNORE+LITERAL and
325 out.append((LITERAL, p))
441 if op is LITERAL:
478 if op is LITERAL:
489 if op is LITERAL and not (iscased and iscased(av)):
498 if op is LITERAL
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DListFormatterTest.java235 {ListFormatter.Field.LITERAL, 5, 7}, in TestFormattedValue()
238 {ListFormatter.Field.LITERAL, 16, 22}, in TestFormattedValue()
295 {ListFormatter.Field.LITERAL, 1, 3}, in TestFormattedValue()
298 {ListFormatter.Field.LITERAL, 4, 6}, in TestFormattedValue()
301 {ListFormatter.Field.LITERAL, 7, 9}, in TestFormattedValue()
304 {ListFormatter.Field.LITERAL, 10, 12}, in TestFormattedValue()
307 {ListFormatter.Field.LITERAL, 13, 15}, in TestFormattedValue()
310 {ListFormatter.Field.LITERAL, 16, 18}, in TestFormattedValue()
313 {ListFormatter.Field.LITERAL, 19, 21}, in TestFormattedValue()
316 {ListFormatter.Field.LITERAL, 2 in TestFormattedValue()
[all...]
H A DRelativeDateTimeFormatterTest.java1050 {RelativeDateTimeFormatter.Field.LITERAL, 0, 8}}; in TestFields()
1058 {RelativeDateTimeFormatter.Field.LITERAL, 0, 2}, in TestFields()
1061 {RelativeDateTimeFormatter.Field.LITERAL, 5, 9}}; in TestFields()
1069 {RelativeDateTimeFormatter.Field.LITERAL, 0, 11}}; in TestFields()
1077 {RelativeDateTimeFormatter.Field.LITERAL, 0, 2}, in TestFields()
1082 {RelativeDateTimeFormatter.Field.LITERAL, 7, 12}}; in TestFields()
1092 {RelativeDateTimeFormatter.Field.LITERAL, 3, 12}}; in TestFields()
1103 {RelativeDateTimeFormatter.Field.LITERAL, 0, 12}, in TestFields()
1125 {RelativeDateTimeFormatter.Field.LITERAL, 12, 21}}; in TestRBNF()
/third_party/python/Include/internal/
H A Dpycore_runtime_init.h96 #define _PyUnicode_ASCII_BASE_INIT(LITERAL, ASCII) \
99 .length = sizeof(LITERAL) - 1, \
108 #define _PyASCIIObject_INIT(LITERAL) \
110 ._ascii = _PyUnicode_ASCII_BASE_INIT(LITERAL, 1), \
111 ._data = LITERAL \
113 #define INIT_STR(NAME, LITERAL) \
114 ._ ## NAME = _PyASCIIObject_INIT(LITERAL)
117 #define _PyUnicode_LATIN1_INIT(LITERAL) \
120 ._base = _PyUnicode_ASCII_BASE_INIT(LITERAL, 0), \
122 ._data = LITERAL, \
[all...]
H A Dpycore_global_strings.h16 #define STRUCT_FOR_ASCII_STR(LITERAL) \
19 uint8_t _data[sizeof(LITERAL)]; \
21 #define STRUCT_FOR_STR(NAME, LITERAL) \
22 STRUCT_FOR_ASCII_STR(LITERAL) _ ## NAME;
/third_party/gn/src/gn/
H A Dpattern.h21 LITERAL, // Matches exactly the contents of the string. enumerator
32 case LITERAL: in MinSize()
45 // When type == LITERAL this is the text to match.
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_module.c937 #define LITERAL(x) { DXIL_OP_LITERAL, { (x) } } macro
959 { LITERAL(TYPE_CODE_POINTER), TYPE_INDEX, LITERAL(0) }, 3
962 { LITERAL(TYPE_CODE_FUNCTION), FIXED(1), ARRAY, TYPE_INDEX }, 4
965 { LITERAL(TYPE_CODE_STRUCT_ANON), FIXED(1), ARRAY, TYPE_INDEX }, 4
968 { LITERAL(TYPE_CODE_STRUCT_NAME), ARRAY, CHAR6 }, 3
971 { LITERAL(TYPE_CODE_STRUCT_NAMED), FIXED(1), ARRAY, TYPE_INDEX }, 4
974 { LITERAL(TYPE_CODE_ARRAY), VBR(8), TYPE_INDEX }, 3
977 { LITERAL(TYPE_CODE_VECTOR), VBR(8), TYPE_INDEX }, 3
1026 [CONST_ABBREV_SETTYPE] = { { LITERAL(CST_CODE_SETTYP
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/
H A DMf2Serializer.java49 LITERAL, enum constant
74 case "Literal": type = Type.LITERAL; break; in Token()
226 case LITERAL: in parseVariant()
430 case LITERAL: in parseExpression()
470 case LITERAL: in parseOptions()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DListFormatter.java159 public static Field LITERAL = new Field("literal"); field in ListFormatter.Field
180 if (this.getName().equals(LITERAL.getName())) in readResolve()
181 return LITERAL; in readResolve()
601 string.setAppendableField(Field.LITERAL); in FormattedListBuilder()
H A DRelativeDateTimeFormatter.java424 public static final Field LITERAL = new Field("literal"); field in RelativeDateTimeFormatter.Field
446 if (this.getName().equals(LITERAL.getName())) in readResolve()
447 return LITERAL; in readResolve()
704 SimpleFormatterImpl.formatPrefixSuffix(compiledPattern, Field.LITERAL, 0, output.length(), output); in formatImpl()
828 nsb.append(string, Field.LITERAL); in formatToValue()
900 nsb.append(cs, Field.LITERAL); in formatToValue()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DListFormatter.java224 public static Field LITERAL = new Field("literal"); field in ListFormatter.Field
243 if (this.getName().equals(LITERAL.getName())) in readResolve()
244 return LITERAL; in readResolve()
673 string.setAppendableField(Field.LITERAL); in FormattedListBuilder()
H A DRelativeDateTimeFormatter.java371 public static final Field LITERAL = new Field("literal"); field in RelativeDateTimeFormatter.Field
389 if (this.getName().equals(LITERAL.getName())) in readResolve()
390 return LITERAL; in readResolve()
624 SimpleFormatterImpl.formatPrefixSuffix(compiledPattern, Field.LITERAL, 0, output.length(), output); in formatImpl()
744 nsb.append(string, Field.LITERAL); in formatToValue()
814 nsb.append(cs, Field.LITERAL); in formatToValue()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DPatternTokenizer.java253 public static final int DONE = 0, SYNTAX = 1, LITERAL = 2, BROKEN_QUOTE = 3, BROKEN_ESCAPE = 4, UNKNOWN = 5; field in PatternTokenizer
352 } else { // LITERAL, so back up and break in next()
358 status = LITERAL; in next()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DPatternTokenizer.java255 public static final int DONE = 0, SYNTAX = 1, LITERAL = 2, BROKEN_QUOTE = 3, BROKEN_ESCAPE = 4, UNKNOWN = 5; field in PatternTokenizer
354 } else { // LITERAL, so back up and break in next()
360 status = LITERAL; in next()
/third_party/node/deps/v8/src/deoptimizer/
H A Dtranslation-opcode.h37 V(LITERAL, 1) \
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DRelativeDateTimeFormatterTest.java1053 {RelativeDateTimeFormatter.Field.LITERAL, 0, 8}}; in TestFields()
1061 {RelativeDateTimeFormatter.Field.LITERAL, 0, 2}, in TestFields()
1064 {RelativeDateTimeFormatter.Field.LITERAL, 5, 9}}; in TestFields()
1072 {RelativeDateTimeFormatter.Field.LITERAL, 0, 11}}; in TestFields()
1080 {RelativeDateTimeFormatter.Field.LITERAL, 0, 2}, in TestFields()
1085 {RelativeDateTimeFormatter.Field.LITERAL, 7, 12}}; in TestFields()
1095 {RelativeDateTimeFormatter.Field.LITERAL, 3, 12}}; in TestFields()
1106 {RelativeDateTimeFormatter.Field.LITERAL, 0, 12}, in TestFields()
1128 {RelativeDateTimeFormatter.Field.LITERAL, 12, 21}}; in TestRBNF()
H A DListFormatterTest.java238 {ListFormatter.Field.LITERAL, 5, 7}, in TestFormattedValue()
241 {ListFormatter.Field.LITERAL, 16, 22}, in TestFormattedValue()
/third_party/musl/porting/liteos_m/kernel/src/regex/
H A Dregcomp.c65 LITERAL, enumerator
160 node = tre_ast_new_node(mem, LITERAL, lit); in tre_ast_new_literal()
695 n = tre_ast_new_node(ctx->mem, LITERAL, lit); in parse_bracket()
1327 case LITERAL: in tre_add_tags()
1717 case LITERAL: in tre_copy_ast()
1862 case LITERAL: in tre_expand_ast()
2156 case LITERAL: in tre_match_empty()
2263 case LITERAL: in tre_compute_nfl()
2635 case LITERAL: in tre_ast_to_tnfa()
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/
H A Dregcomp.c65 LITERAL, enumerator
160 node = tre_ast_new_node(mem, LITERAL, lit); in tre_ast_new_literal()
695 n = tre_ast_new_node(ctx->mem, LITERAL, lit); in parse_bracket()
1328 case LITERAL: in tre_add_tags()
1718 case LITERAL: in tre_copy_ast()
1863 case LITERAL: in tre_expand_ast()
2157 case LITERAL: in tre_match_empty()
2264 case LITERAL: in tre_compute_nfl()
2636 case LITERAL: in tre_ast_to_tnfa()
/third_party/musl/porting/uniproton/kernel/src/regex/
H A Dregcomp.c65 LITERAL, enumerator
160 node = tre_ast_new_node(mem, LITERAL, lit); in tre_ast_new_literal()
695 n = tre_ast_new_node(ctx->mem, LITERAL, lit); in parse_bracket()
1327 case LITERAL: in tre_add_tags()
1717 case LITERAL: in tre_copy_ast()
1862 case LITERAL: in tre_expand_ast()
2156 case LITERAL: in tre_match_empty()
2263 case LITERAL: in tre_compute_nfl()
2635 case LITERAL: in tre_ast_to_tnfa()
/third_party/musl/src/regex/
H A Dregcomp.c65 LITERAL, enumerator
160 node = tre_ast_new_node(mem, LITERAL, lit); in tre_ast_new_literal()
695 n = tre_ast_new_node(ctx->mem, LITERAL, lit); in parse_bracket()
1327 case LITERAL: in tre_add_tags()
1717 case LITERAL: in tre_copy_ast()
1862 case LITERAL: in tre_expand_ast()
2156 case LITERAL: in tre_match_empty()
2263 case LITERAL: in tre_compute_nfl()
2635 case LITERAL: in tre_ast_to_tnfa()
/third_party/lzma/Asm/arm64/
H A DLzmaDecOpt.S427 # ---------- MATCHED LITERAL ----------
807 # ---------- LITERAL ----------
1151 # ---------- LITERAL MATCHED ----------
1217 # ---------- REP 0 LITERAL ----------

Completed in 36 milliseconds

12