Home
last modified time | relevance | path

Searched refs:INITIAL (Results 1 - 25 of 34) sorted by relevance

12

/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/regex/
H A DTrailingPathOptimizerTest.java20 import static com.google.i18n.phonenumbers.metadata.regex.Node.INITIAL;
34 nfa.addPath(INITIAL, TERMINAL, "12xx"); in testSimple()
35 nfa.addPath(INITIAL, TERMINAL, "34xxxx"); in testSimple()
40 Node join = expected.addPath(INITIAL, "12"); in testSimple()
41 expected.addPath(INITIAL, join, "34xx"); in testSimple()
50 nfa.addPath(INITIAL, TERMINAL, "12xx"); in testTrailingOptionalGroup()
52 Node optStart = nfa.addPath(INITIAL, "34xx"); in testTrailingOptionalGroup()
59 Node join = expected.addPath(INITIAL, "12"); in testTrailingOptionalGroup()
61 optStart = expected.addPath(INITIAL, "34"); in testTrailingOptionalGroup()
72 nfa.addPath(INITIAL, TERMINA in testDoubleRecursion()
[all...]
H A DNodeTest.java20 import static com.google.i18n.phonenumbers.metadata.regex.Node.INITIAL;
31 assertThat(INITIAL.id()).isEqualTo(0); in testConstants()
33 assertThat(TERMINAL).isNotEqualTo(INITIAL); in testConstants()
38 assertThat(INITIAL.createNext()).isSameInstanceAs(TERMINAL); in testNext()
41 Node node = INITIAL; in testNext()
50 Node node = INITIAL; in testToString()
60 assertThat(TERMINAL).isGreaterThan(INITIAL); in testOrdering()
61 Node node = INITIAL; in testOrdering()
H A DNfaFlattenerTest.java20 import static com.google.i18n.phonenumbers.metadata.regex.Node.INITIAL;
43 nfa.addPath(INITIAL, TERMINAL, "12"); in testSimple()
48 nfa.addPath(INITIAL, TERMINAL, "34"); in testSimple()
60 Node split = nfa.addPath(INITIAL, "12"); in testSubgroup()
80 Node groupStart = nfa.addPath(INITIAL, "0"); in testSubgroupWithEarlyJoining()
112 Node groupStart = nfa.addPath(INITIAL, "0"); in testPathDuplication()
161 Node a = nfa.addPath(INITIAL, "1"); in testNodeOrdering_bug_65250963()
163 Node c = nfa.addPath(INITIAL, "3"); in testNodeOrdering_bug_65250963()
164 Node d = nfa.addPath(INITIAL, "4"); in testNodeOrdering_bug_65250963()
174 // The node ordering is now: (INITIAL, in testNodeOrdering_bug_65250963()
[all...]
H A DRangeTreeConverterTest.java24 import static com.google.i18n.phonenumbers.metadata.regex.Node.INITIAL;
47 Node node = assertOutEdge(nfa, INITIAL, edge(1)); in testSimple()
61 Node node = assertOutEdge(nfa, INITIAL, edge(1)); in testWithOptionalEdge()
75 Node node = assertOutEdge(nfa, INITIAL, edge(1)); in testWithEpsilon()
95 assertOutEdges(nfa, INITIAL, edge(1), edge(3)); in testMultiplePathsWithCommonTail()
96 Node lhs = follow(nfa, INITIAL, edge(1)); in testMultiplePathsWithCommonTail()
98 Node rhs = follow(nfa, INITIAL, edge(3)); in testMultiplePathsWithCommonTail()
114 assertThat(follow(nfa, INITIAL, epsilon())).isEqualTo(Node.TERMINAL); in testOptionalTopLevelGroup_bug_69101586()
115 Node node = follow(nfa, INITIAL, any()); in testOptionalTopLevelGroup_bug_69101586()
H A DNfaBuilder.java20 import static com.google.i18n.phonenumbers.metadata.regex.Node.INITIAL;
38 graph.addNode(INITIAL); in NfaBuilder()
/third_party/rust/crates/nix/test/sys/
H A Dtest_aio.rs76 const INITIAL: &[u8] = b"abcdef123456"; in error() consts
80 f.write_all(INITIAL).unwrap(); in error()
94 const INITIAL: &[u8] = b"abcdef123456"; in ok() consts
96 f.write_all(INITIAL).unwrap(); in ok()
141 const INITIAL: &[u8] = b"abcdef123456"; in cancel() consts
144 f.write_all(INITIAL).unwrap(); in cancel()
164 const INITIAL: &[u8] = b"abcdef123456"; in error() consts
167 f.write_all(INITIAL).unwrap(); in error()
183 const INITIAL: &[u8] = b"abcdef123456"; in ok() consts
187 f.write_all(INITIAL) in ok()
210 const INITIAL: &[u8] = b"abcdef123456"; on_stack() consts
265 const INITIAL: &[u8] = b"abcdef123456"; ok() consts
354 const INITIAL: &[u8] = b"abcdef123456"; ok() consts
384 const INITIAL: &[u8] = b"abcdef123456"; on_stack() consts
467 const INITIAL: &[u8] = b"abcdef123456"; ok() consts
517 const INITIAL: &[u8] = b"abcdef123456"; sigev_signal() consts
579 const INITIAL: &[u8] = b"abcdef123456"; test_aio_suspend() consts
[all...]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/
H A DRangeTreeConverter.java71 graph.addNode(Node.INITIAL); in NfaVisitor()
76 graph.putEdgeValue(Node.INITIAL, Node.TERMINAL, Edge.epsilon()); in NfaVisitor()
78 nodeMap.put(initial, Node.INITIAL); in NfaVisitor()
H A DNfaFlattener.java81 PathFollower out = visitSubgraph(Node.INITIAL); in flatten()
180 recursivelySetMaxPathLength(Node.INITIAL, 0, graph, map); in nodeOrdering()
H A DNode.java30 public static final Node INITIAL = new AutoValue_Node(0); field in Node
H A DTrailingPathOptimizer.java163 if (target == Node.INITIAL) { in beginsAnAnyPath()
/third_party/nghttp2/src/
H A Dshrpx_https_upstream.cc153 assert(downstream->get_request_state() == DownstreamState::INITIAL); in htp_uricb()
185 if (downstream->get_request_state() == DownstreamState::INITIAL) { in htp_hdr_keycb()
192 if (downstream->get_request_state() == DownstreamState::INITIAL) { in htp_hdr_keycb()
240 if (downstream->get_request_state() == DownstreamState::INITIAL) { in htp_hdr_valcb()
247 if (downstream->get_request_state() == DownstreamState::INITIAL) { in htp_hdr_valcb()
664 case DownstreamState::INITIAL: in on_read()
719 downstream->get_response_state() != DownstreamState::INITIAL) { in on_read()
926 if (downstream->get_response_state() == DownstreamState::INITIAL) { in downstream_eof()
955 if (downstream->get_response_state() != DownstreamState::INITIAL) { in downstream_error()
1479 case DownstreamState::INITIAL in on_downstream_reset()
[all...]
H A Dnghttp.h104 enum class RequestState { INITIAL, ON_REQUEST, ON_RESPONSE, ON_COMPLETE }; member in nghttp2::RequestState
117 RequestTiming() : state(RequestState::INITIAL) {} in RequestTiming()
H A Dshrpx_downstream.cc136 request_state_(DownstreamState::INITIAL), in Downstream()
137 response_state_(DownstreamState::INITIAL), in Downstream()
901 response_state_ == DownstreamState::INITIAL; in get_http2_upgrade_request()
1091 response_state_ == DownstreamState::INITIAL; in request_submission_ready()
H A Dshrpx_downstream.h302 INITIAL, member in shrpx::DownstreamState
312 // This state is only transitioned from INITIAL state, and solely
H A Dshrpx_http_downstream_connection.cc911 if (downstream->get_response_state() != DownstreamState::INITIAL) { in htp_msg_begincb()
1114 if (downstream->get_response_state() == DownstreamState::INITIAL) { in htp_hdr_keycb()
1151 if (downstream->get_response_state() == DownstreamState::INITIAL) { in htp_hdr_valcb()
/third_party/python/Lib/multiprocessing/
H A Dmanagers.py475 INITIAL = 0 variable in State
506 self._state.value = State.INITIAL
516 if self._state.value != State.INITIAL:
540 if self._state.value != State.INITIAL:
644 if self._state.value == State.INITIAL:
647 if self._state.value == State.INITIAL:
1348 if self._state.value != State.INITIAL:
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPersonName.java177 INITIAL("initial"), enum constant
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/
H A DMf2Parser.java571 int result = INITIAL[tokenSetId]; in match()
641 int s = tokenSetId < 0 ? - tokenSetId : INITIAL[tokenSetId] & 63; in getTokenSet()
695 private static final int[] INITIAL = field in Mf2Parser
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DCanonGSUBBuilder.java51 case UCharacter.DecompositionType.INITIAL: in convertArabicString()
85 case UCharacter.DecompositionType.INITIAL: in buildArabicContextualForms()
128 case UCharacter.DecompositionType.INITIAL: in buildArabicLigatureTree()
H A DArabicCharacterData.java52 case UCharacter.DecompositionType.INITIAL: in Record()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkCommandBuffer.hpp188 INITIAL, enumerator
196 State state = INITIAL;
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/personname/
H A DFieldModifierImpl.java32 case INITIAL: in forName()
/third_party/node/test/fixtures/wpt/resources/
H A Dtestharness.js2455 this.phases.COMPLETE : this.phases.INITIAL;
2511 INITIAL:0,
3063 this.phase = this.phases.INITIAL;
3112 if (this.phase === this.phases.INITIAL) {
3368 INITIAL:0,
3374 this.phase = this.phases.INITIAL;
3642 if (test.phase === test.phases.INITIAL) {
3674 if (test.phase === test.phases.INITIAL) {
3980 this.phase = this.INITIAL;
3983 Output.prototype.INITIAL
[all...]
/third_party/node/deps/v8/src/regexp/
H A Dregexp-parser.cc105 INITIAL, enumerator
536 RegExpParserState initial_state(nullptr, INITIAL, RegExpLookaround::LOOKAHEAD, in ParseDisjunction()
549 DCHECK_EQ(INITIAL, state->group_type()); in ParseDisjunction()
556 DCHECK_NE(INITIAL, state->group_type()); in ParseDisjunction()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A Dglslang_lex_autogen.cpp965 #define INITIAL 0 macro
2108 BEGIN(INITIAL); variable
2127 case YY_STATE_EOF(INITIAL): in YY_STATE_EOF()
2564 * @note This function does not reset the start condition to @c INITIAL .

Completed in 29 milliseconds

12