Home
last modified time | relevance | path

Searched refs:transition (Results 1 - 25 of 65) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
H A DreachabilityChecks4.js40 function f2(transition: Transition): any {
41 switch (transition.behavior) {
43 switch (transition.direction) {
54 switch (transition.direction) {
92 function f2(transition) {
93 switch (transition.behavior) {
95 switch (transition.direction) {
106 switch (transition.direction) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
H A DBlockVerifier.cpp61 Error BlockVerifier::transition(State To) { in transition() function in llvm::xray::BlockVerifier
113 "BUG (BlockVerifier): Cannot find transition table entry for %s, " in transition()
129 "BlockVerifier: Invalid transition from %s to %s.", in transition()
137 return transition(State::BufferExtents); in visit()
141 return transition(State::WallClockTime); in visit()
145 return transition(State::NewCPUId); in visit()
149 return transition(State::TSCWrap); in visit()
153 return transition(State::CustomEvent); in visit()
157 return transition(State::CustomEvent); in visit()
161 return transition(Stat in visit()
[all...]
/third_party/node/deps/v8/src/objects/
H A Dtransitions.cc93 // Insert the original transition in index 0. in Insert()
97 // Search for the correct index to insert the new transition. in Insert()
113 // If the new transition will be inserted in index 0, move the original in Insert()
114 // transition to index 1. in Insert()
184 // The map's transition array may have shrunk during the allocation above as in Insert()
250 int transition = transitions().SearchSpecial(name, concurrent_access_); in SearchSpecial() local
251 if (transition == kNotFound) return Map(); in SearchSpecial()
252 return transitions().GetTarget(transition); in SearchSpecial()
389 // Don't cache prototype transition if this map is either shared, or a map of in PutPrototypeTransition()
614 // This function only handles full transition array in CheckNewTransitionsAreConsistent()
640 SearchDetails(int transition, PropertyKind kind, PropertyAttributes attributes, int* out_insertion_index) SearchDetails() argument
[all...]
H A Dtransitions.h40 // transition target, or a StoreIC handler for a transitioning store (which in
55 // Insert a new transition into |map|'s transition array, extending it
94 // The size of transition arrays are limited so they do not end up in large
114 // Traverse the transition tree in preorder.
127 // the original map. That way we can transition to the same map if the same
130 // and the values are the maps they transition to.
140 // deprecated from the map transition tree. The next time old map is updated,
196 static inline Name GetSimpleTransitionKey(Map transition);
197 inline PropertyDetails GetSimpleTargetDetails(Map transition);
[all...]
H A Dtransitions-inl.h121 PropertyDetails TransitionsAccessor::GetSimpleTargetDetails(Map transition) {
122 return transition.GetLastDescriptorDetails(isolate_);
126 Name TransitionsAccessor::GetSimpleTransitionKey(Map transition) {
127 InternalIndex descriptor = transition.LastAdded();
128 return transition.instance_descriptors().GetKey(descriptor);
174 // transition. in GetTargetIfExists()
H A Dlookup.cc607 Handle<Map> transition = in PrepareTransitionToDataProperty() local
611 transition_ = transition; in PrepareTransitionToDataProperty()
613 if (transition->is_dictionary_map()) { in PrepareTransitionToDataProperty()
614 DCHECK(!transition->IsJSGlobalObjectMap()); in PrepareTransitionToDataProperty()
620 property_details_ = transition->GetLastDescriptorDetails(isolate_); in PrepareTransitionToDataProperty()
652 Handle<Map> transition = transition_map(); in ApplyTransitionToDataProperty() local
654 transition->GetBackPointer(isolate_) == receiver->map(isolate_); in ApplyTransitionToDataProperty()
656 if (configuration_ == DEFAULT && !transition->is_dictionary_map() && in ApplyTransitionToDataProperty()
657 !transition->IsPrototypeValidityCellValid()) { in ApplyTransitionToDataProperty()
659 // configuration can produce valid transition handle in ApplyTransitionToDataProperty()
[all...]
H A Dmap.cc727 Map transition =
731 if (transition.is_null()) return Map();
732 new_map = transition;
902 Map transition; in FindElementsKindTransitionedMap() local
909 // Starting from the next existing elements kind transition try to in FindElementsKindTransitionedMap()
927 transition = current; in FindElementsKindTransitionedMap()
932 return transition; in FindElementsKindTransitionedMap()
939 // Ensure we are requested to search elements kind transition "near the root". in FindClosestElementsTransition()
1004 // Check if we can go back in the elements kind transition chain. in TransitionElementsTo()
1286 // Never even try to cache it in the transition tre
1838 Handle<Map> transition; TransitionToDataProperty() local
1932 Handle<Map> transition; TransitionToAccessorProperty() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_cache_utils.h541 // sibling method that applies the update without marking a state transition. The non-transition
542 // update methods are used for internal shader pipelines. Not every non-transition update method
580 void updateVertexInput(GraphicsPipelineTransitionBits *transition,
589 void updateTopology(GraphicsPipelineTransitionBits *transition, gl::PrimitiveMode drawMode);
590 void updatePrimitiveRestartEnabled(GraphicsPipelineTransitionBits *transition,
595 void updateCullMode(GraphicsPipelineTransitionBits *transition,
597 void updateFrontFace(GraphicsPipelineTransitionBits *transition,
600 void updateLineWidth(GraphicsPipelineTransitionBits *transition, float lineWidth);
601 void updateRasterizerDiscardEnabled(GraphicsPipelineTransitionBits *transition,
[all...]
H A Dvk_cache_utils.cpp1379 // When converting a byte number to a transition bit index we can shift instead of divide.
1382 // When converting a number of bits offset to a transition bit index we can also shift.
2135 void GraphicsPipelineDesc::updateVertexInput(GraphicsPipelineTransitionBits *transition,
2162 transition->set(kBit);
2163 transition->set(kBit + 1);
2166 void GraphicsPipelineDesc::updateTopology(GraphicsPipelineTransitionBits *transition,
2172 transition->set(ANGLE_GET_TRANSITION_BIT(mInputAssemblyAndColorBlendStateInfo, primitive));
2175 void GraphicsPipelineDesc::updatePrimitiveRestartEnabled(GraphicsPipelineTransitionBits *transition,
2180 transition->set(ANGLE_GET_TRANSITION_BIT(mInputAssemblyAndColorBlendStateInfo, primitive));
2188 void GraphicsPipelineDesc::updateCullMode(GraphicsPipelineTransitionBits *transition,
[all...]
/third_party/skia/src/sksl/
H A DSkSLLexer.cpp458 State get_transition(int transition, int state) { in get_transition() argument
464 return kFull[index.pos].data[transition]; in get_transition()
467 int value = entry.data[transition >> 2]; in get_transition()
468 value >>= 2 * (transition & 3); in get_transition()
/third_party/icu/icu4c/source/i18n/
H A Dolsontz.cpp186 // Type map data must be of the same size as the transition count in OlsonTimeZone()
239 // historic transition data or finalZone to be used. In an in OlsonTimeZone()
470 // quick zone transition checking.
487 // Before the first transition time in getHistoricalOffset()
495 int64_t transition = transitionTimeInSeconds(transIdx); in getHistoricalOffset() local
497 if (local && (sec >= (transition - MAX_OFFSET_SECONDS))) { in getHistoricalOffset()
508 // Positive transition, which makes a non-existing local time range in getHistoricalOffset()
511 transition += offsetBefore; in getHistoricalOffset()
514 transition += offsetAfter; in getHistoricalOffset()
516 transition in getHistoricalOffset()
581 double transition = (double)transitionTimeInSeconds(i); useDaylightTime() local
[all...]
H A Drbtz.cpp26 * A struct representing a time zone transition
193 // Build the transition array which represents historical time zone in complete()
255 // Check if one of final rules has earlier transition date in complete()
309 // Append the first transition for each in complete()
447 // no final rules or the given time is before the first transition in getOffsetInternal()
452 // Find a historical transition in getOffsetInternal()
490 // after the next transition. in useDaylightTime()
498 // If DST is not used now, check if DST is used after the next transition in useDaylightTime()
760 // Find a transition within the historic transitions in findNext()
844 // Find a transition withi in findPrev()
875 getTransitionTime(Transition* transition, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt) const getTransitionTime() argument
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dolsontz.cpp186 // Type map data must be of the same size as the transition count in OlsonTimeZone()
239 // historic transition data or finalZone to be used. In an in OlsonTimeZone()
470 // quick zone transition checking.
487 // Before the first transition time in getHistoricalOffset()
495 int64_t transition = transitionTimeInSeconds(transIdx); in getHistoricalOffset() local
497 if (local && (sec >= (transition - MAX_OFFSET_SECONDS))) { in getHistoricalOffset()
508 // Positive transition, which makes a non-existing local time range in getHistoricalOffset()
511 transition += offsetBefore; in getHistoricalOffset()
514 transition += offsetAfter; in getHistoricalOffset()
516 transition in getHistoricalOffset()
581 double transition = (double)transitionTimeInSeconds(i); useDaylightTime() local
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dolsontz.cpp186 // Type map data must be of the same size as the transition count in OlsonTimeZone()
239 // historic transition data or finalZone to be used. In an in OlsonTimeZone()
471 // quick zone transition checking.
488 // Before the first transition time in getHistoricalOffset()
496 int64_t transition = transitionTimeInSeconds(transIdx); in getHistoricalOffset() local
498 if (local && (sec >= (transition - MAX_OFFSET_SECONDS))) { in getHistoricalOffset()
509 // Positive transition, which makes a non-existing local time range in getHistoricalOffset()
512 transition += offsetBefore; in getHistoricalOffset()
515 transition += offsetAfter; in getHistoricalOffset()
517 transition in getHistoricalOffset()
582 double transition = (double)transitionTimeInSeconds(i); useDaylightTime() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DAutomaton.h43 /// Forward define the pair type used by the automata transition info tables.
62 /// Cached transition table. This is a table of NfaStatePairs that contains
92 /// transition.
93 void transition(ArrayRef<NfaStatePair> Pairs) { in transition() function in llvm::internal::NfaTranscriber
100 // transition from the current head state. in transition()
103 // For every transition from the current head state, add a new path in transition()
132 void transition(unsigned TransitionInfoIdx) { in transition() function in llvm::internal::NfaTranscriber
138 transition(Pairs); in transition()
164 /// TransitionInfoIdx is used by the DfaTranscriber to analyze the transition.
201 // Greedily read and cache the transition tabl
[all...]
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DThaiStateTable.java79 ThaiStateTransition transition = state[c]; in fixNextStates()
81 if (transition.getNextState() == 0) { in fixNextStates()
82 transition.setNextState(groundState[c].getNextState()); in fixNextStates()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DOlsonTimeZone.java54 * the initial zone offset (before the first transition) always.
58 * List of transition times represented by 32bit seconds from the
63 * List of transition times before/after 32bit minimum seconds.
68 * Array of bytes representing the mapping between each transition
74 * If a recurrent transition rule is applicable to a zone forever
75 * after the final transition time, finalRule represents the rule
192 // future transition for making a pair of rules. This implementation in setRawOffset()
193 // rolls back the time before the latest offset transition. in setRawOffset()
510 // Pre-32bit transition data is optional in construct()
519 // 32bit transition dat in construct()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DOlsonTimeZone.java55 * the initial zone offset (before the first transition) always.
59 * List of transition times represented by 32bit seconds from the
64 * List of transition times before/after 32bit minimum seconds.
69 * Array of bytes representing the mapping between each transition
75 * If a recurrent transition rule is applicable to a zone forever
76 * after the final transition time, finalRule represents the rule
194 // future transition for making a pair of rules. This implementation in setRawOffset()
195 // rolls back the time before the latest offset transition. in setRawOffset()
512 // Pre-32bit transition data is optional in construct()
521 // 32bit transition dat in construct()
[all...]
/third_party/node/deps/openssl/openssl/ssl/statem/
H A Dstatem.c556 int (*transition) (SSL *s, int mt); in read_state_machine()
566 transition = ossl_statem_server_read_transition; in read_state_machine()
571 transition = ossl_statem_client_read_transition; in read_state_machine()
616 if (!transition(s, mt)) in read_state_machine()
782 WRITE_TRAN(*transition) (SSL *s); in write_state_machine()
796 transition = ossl_statem_server_write_transition; in write_state_machine()
801 transition = ossl_statem_client_write_transition; in write_state_machine()
817 switch (transition(s)) { in write_state_machine()
/third_party/openssl/ssl/statem/
H A Dstatem.c551 int (*transition) (SSL *s, int mt); in read_state_machine()
561 transition = ossl_statem_server_read_transition; in read_state_machine()
566 transition = ossl_statem_client_read_transition; in read_state_machine()
606 if (!transition(s, mt)) in read_state_machine()
768 WRITE_TRAN(*transition) (SSL *s); in write_state_machine()
782 transition = ossl_statem_server_write_transition; in write_state_machine()
787 transition = ossl_statem_client_write_transition; in write_state_machine()
803 switch (transition(s)) { in write_state_machine()
/third_party/weex-loader/deps/weex-styler/lib/
H A Dshorthand-parser.js9 function transition (declaration) {
14 match[1] && result.push(generateDeclaration('transition-property', match[1], position))
15 match[2] && result.push(generateDeclaration('transition-duration', match[2], position))
16 match[3] && result.push(generateDeclaration('transition-timing-function', match[3], position))
17 match[4] && result.push(generateDeclaration('transition-delay', match[4], position))
46 transition,
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dtime_zone_lookup_test.cc658 // that the transition we are attempting to check does not exist, most
1035 // Checks that cctz and libc agree on transition points in [1970:2037]. in TEST()
1048 time_zone::civil_transition transition; in TEST() local
1050 zi.next_transition(tp, &transition); in TEST()
1051 tp = zi.lookup(transition.to).trans) { in TEST()
1052 const auto fcl = zi.lookup(transition.from); in TEST()
1053 const auto tcl = zi.lookup(transition.to); in TEST()
1058 ASSERT_EQ(transition.from, transition.to); in TEST()
1069 cs = transition in TEST()
[all...]
/third_party/ffmpeg/libavfilter/
H A Daf_afreqshift.c155 static void compute_transition_param(double *K, double *Q, double transition) in compute_transition_param() argument
159 k = tan((1. - transition * 2.) * M_PI / 4.); in compute_transition_param()
237 static void compute_coefs(double *coef_arrd, float *coef_arrf, int nbr_coefs, double transition) in compute_coefs() argument
242 compute_transition_param(&k, &q, transition); in compute_coefs()
H A Dvf_xfade_opencl.c47 int transition; member
93 if (ctx->transition == CUSTOM) { in xfade_opencl_load()
107 switch (ctx->transition) { in xfade_opencl_load()
381 { "transition", "set cross fade transition", OFFSET(transition), AV_OPT_TYPE_INT, {.i64=1}, 0, NB_TRANSITIONS-1, FLAGS, "transition" },
382 { "custom", "custom transition", 0, AV_OPT_TYPE_CONST, {.i64=CUSTOM}, 0, 0, FLAGS, "transition" },
383 { "fade", "fade transition",
[all...]
/third_party/node/test/fixtures/wpt/dom/events/resources/
H A Dprefixed-animation-event-tests.js12 // transition property
30 `.baseStyle { width: 100px; transition: width ${animationCssStyle}; }`);
31 style.sheet.insertRule('.transition { width: 200px !important; }');
38 div.classList.add('transition');
190 getComputedStyle(child).transition;
268 getComputedStyle(child).transition;
319 getComputedStyle(element).transition;

Completed in 26 milliseconds

123