HomeSort by relevance Sort by last modified time
    Searched defs:transitions (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/skia/src/sksl/
SkSLLayoutLexer.cpp 21 static int16_t transitions[29][326] = { member in namespace:SkSL
    [all...]
SkSLLexer.cpp 21 static int16_t transitions[59][288] = { member in namespace:SkSL
    [all...]
  /external/skqp/src/sksl/
SkSLLayoutLexer.cpp 21 static int16_t transitions[29][326] = { member in namespace:SkSL
    [all...]
SkSLLexer.cpp 21 static int16_t transitions[59][288] = { member in namespace:SkSL
    [all...]
  /external/v8/tools/
trace-maps-processor.py 23 transitions = {} variable
66 if from_map not in transitions:
67 transitions[from_map] = {}
68 targets = transitions[from_map]
124 if m in transitions:
125 for t in transitions[m]:
126 PlainPrint(t, indent + " ", transitions[m][t].reason)
130 if m not in transitions: return 0
131 return len(transitions[m])
136 if m in transitions
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/secure/bidirule/
bidirule.go 66 var transitions = [...][2]ruleTransition{ var
289 switch tr := transitions[t.state]; {
328 switch tr := transitions[t.state]; {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/secure/bidirule/
bidirule.go 66 var transitions = [...][2]ruleTransition{ var
289 switch tr := transitions[t.state]; {
328 switch tr := transitions[t.state]; {
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
dta.py 193 def transitions(self, type_): member in class:DomainTransitionAnalysis
195 Generator which yields all domain transitions out of a
212 self.log.info("Generating all domain transitions {1} {0}".
314 # Standard transitions a->b:
487 # Remove invalid transitions
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFAState.java 74 /** Track the transitions emanating from this DFA state. The List
77 protected List<Transition> transitions = field in class:DFAState
156 * can easily check for non-epsilon transitions because the only
159 * for all possible transitions. That is of the order: size(label space)
177 return (Transition)transitions.get(i);
181 return transitions.size();
185 transitions.add(t);
192 transitions.add( new Transition(label, target) );
193 return transitions.size()-1;
197 return transitions.get(trans)
    [all...]
  /external/ImageMagick/MagickCore/
splay-tree.c 1001 *transitions; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeMap.java 57 private int[] transitions; field in class:UnicodeMap
82 transitions = new int[] {0,0x110000,0,0,0,0,0,0,0,0};
101 if (transitions[i] != that.transitions[i]) return false;
120 result = 37*result + transitions[i];
138 that.transitions = (int[]) transitions.clone();
150 || length > transitions.length
151 || transitions.length != values.length) {
162 if (transitions[0] != 0 || transitions[length-1] != 0x110000)
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeMap.java 54 private int[] transitions; field in class:UnicodeMap
79 transitions = new int[] {0,0x110000,0,0,0,0,0,0,0,0};
98 if (transitions[i] != that.transitions[i]) return false;
117 result = 37*result + transitions[i];
135 that.transitions = (int[]) transitions.clone();
147 || length > transitions.length
148 || transitions.length != values.length) {
159 if (transitions[0] != 0 || transitions[length-1] != 0x110000)
    [all...]
  /external/v8/src/compiler/
access-info.h 47 MapTransitionList& transitions() { return transitions_; } function in class:v8::internal::compiler::final
48 MapTransitionList const& transitions() const { return transitions_; } function in class:v8::internal::compiler::final
  /external/v8/src/
transitions.cc 5 #include "src/transitions.h"
8 #include "src/transitions-inl.h"
21 // If the map doesn't have any transitions at all yet, install the new one.
174 TransitionArray* transitions = TransitionArray::cast(raw_transitions); local
175 int transition = transitions->Search(kind, name, attributes);
177 return transitions->GetTarget(transition);
187 TransitionArray* transitions = TransitionArray::cast(raw_transitions); local
188 int transition = transitions->SearchSpecial(name);
190 return transitions->GetTarget(transition);
232 TransitionArray* transitions = TransitionArray::cast(raw_transitions) local
288 FixedArray* transitions = GetPrototypeTransitions(map); local
310 int transitions = NumberOfPrototypeTransitions(*cache) + 1; local
356 TransitionArray* transitions = TransitionArray::cast(raw_transitions); local
439 TransitionArray* transitions = TransitionArray::cast(map->raw_transitions()); local
471 TransitionArray* transitions = TransitionArray::cast(raw_transitions); local
    [all...]
objects-printer.cc 567 os << "\n - transitions #" << nof_transitions << ": "
619 if (i == kPrototypeTransitionsIndex) os << " (prototype transitions)";
620 if (i == kTransitionLengthIndex) os << " (number of transitions)";
1644 Object* transitions = map()->raw_transitions(); local
    [all...]
  /frameworks/support/transition/src/main/java/androidx/transition/
TransitionManager.java 34 * This class manages the set of transitions that fire when there is a
38 * transitions for scene changes is not required; by default, a Scene change
40 * situations. Specifying other transitions for particular scene changes is
50 * transitions:</p>
197 ArrayMap<ViewGroup, ArrayList<Transition>> transitions = runningTransitions.get(); local
198 if (transitions != null) {
199 return transitions;
202 ArrayMap<ViewGroup, ArrayList<Transition>> transitions = new ArrayMap<>(); local
203 runningTransitions = new WeakReference<>(transitions);
205 return transitions;
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
SimpleTimeZoneTest.java 78 * Check that the DST transitions in the supplied {@link TimeZone} are as expected for
185 * Check that the DST transitions in the supplied {@link TimeZone} are as expected for
208 long[] transitions = new long[2]; local
240 transitions[0] = entryPoint;
241 transitions[1] = exitPoint;
242 return transitions;
267 // Find the DST transitions instants.
  /cts/tools/dasm/src/java_cup/
lalr_state.java 9 * A state consists of an LALR item set and a set of transitions to other
138 /** List of transitions out of this state. */
141 /** List of transitions out of this state. */
142 public lalr_transition transitions() {return _transitions;} method in class:lalr_state
237 * it attempts to extend the machine by creating transitions out of
432 * are indexed by terminal symbols and correspond to either transitions
436 * reduce-goto table is indexed by non terminals and represents transitions
511 for (lalr_transition trans=transitions(); trans!=null; trans=trans.next())
738 /* do the transitions */
739 for (tr = transitions(); tr != null; tr = tr.next()
    [all...]
  /frameworks/base/core/java/android/transition/
TransitionManager.java 31 * This class manages the set of transitions that fire when there is a
35 * transitions for scene changes is not required; by default, a Scene change
37 * situations. Specifying other transitions for particular scene changes is
47 * transitions:</p>
59 * Information on XML resource descriptions for transitions can be found for
214 ArrayMap<ViewGroup, ArrayList<Transition>> transitions = local
217 transitions);
439 * Ends all pending and ongoing transitions on the specified scene root.
441 * @param sceneRoot The root of the View hierarchy to end transitions on.
  /libcore/luni/src/test/java/libcore/libcore/util/
ZoneInfoTest.java 40 int[][] transitions = {}; local
43 createZoneInfo(transitions, types);
50 * Checks that a {@link ZoneInfo} can be created with one type and no transitions.
53 int[][] transitions = {}; local
57 ZoneInfo zoneInfo = createZoneInfo(transitions, types);
59 // If there are no transitions then the offset should be constant irrespective of the time.
64 // No transitions means no DST.
76 int[][] transitions = { local
82 ZoneInfo zoneInfo = createZoneInfo(transitions, types);
89 // No transitions means no DST
101 int[][] transitions = { local
119 int[][] transitions = { local
153 int[][] transitions = { local
187 int[][] transitions = { local
220 int[][] transitions = { local
254 int[][] transitions = { local
284 int[][] transitions = { local
312 int[][] transitions = { local
438 int[][] transitions = { local
462 int[][] transitions = { local
486 int[][] transitions = { local
528 int[][] transitions = { local
    [all...]
  /system/timezone/testing/src/main/java/libcore/tzdata/testing/
ZoneInfoTestHelper.java 81 int[] transitions = new int[transitionPairs.length]; local
84 transitions[i] = transitionPairs[i][0];
87 this.transitionTimes = transitions;
  /art/runtime/
subtype_check_test.cc 655 std::vector<std::pair<SubtypeCheckInfo::State, SubtypeCheckInfo::State>> transitions) {
661 ApplyTransition(SCTree::Lookup(klass), transitions[cur_depth].first, transitions[cur_depth].second);
670 EnsureStateChangedTestRecursive(child, cur_depth + 1u, total_depth, transitions);
677 std::vector<std::pair<SubtypeCheckInfo::State, SubtypeCheckInfo::State>> transitions) {
678 ASSERT_EQ(depth, transitions.size());
680 EnsureStateChangedTestRecursive(root, /*cur_depth*/0u, depth, transitions);
684 auto transitions = [](MockClass* kls) { local
729 EnsureStateChangedTestRecursiveGeneric(root_, 0u, kMaxDepthForThisTest, transitions, expected);
756 auto transitions = [](MockClass* kls) local
780 auto transitions = [](MockClass* kls) { local
841 auto transitions = [](MockClass* kls) { local
885 auto transitions = [](MockClass* kls) { local
1005 auto transitions = [](MockClass* kls) { local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumPage.java 193 // This are the transitions we want:
285 TransitionStore transitions = mActivity.getTransitionStore(); local
286 transitions.put(
289 transitions.put(PhotoPage.KEY_INDEX_HINT, slotIndex);
570 TransitionStore transitions = mActivity.getTransitionStore();
571 transitions.put(PhotoPage.KEY_INDEX_HINT, slotIndex);
572 transitions.put(PhotoPage.KEY_OPEN_ANIMATION_RECT,
  /frameworks/support/fragment/src/main/java/androidx/fragment/app/
FragmentTransition.java 76 * The main entry point for Fragment Transitions, this starts the transitions
84 * With reordered Fragment Transitions, all Views have been added to the
86 * will be INVISIBLE. With ordered Fragment Transitions, this method
203 * prevent transitions from acting on other Views when there is no
239 return; // no transitions!
301 * prevent transitions from acting on other Views when there is no
338 return; // no transitions!
370 * This method is used for fragment transitions for ordrered transactions to change the
423 final ArrayList<Object> transitions = new ArrayList<>() local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneRegressionTest.java 715 * transitions at midnight correctly.
830 int transitions = 0; local
    [all...]

Completed in 972 milliseconds

1 2 3