/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/ |
test_bucket.py | 37 from boto.s3.lifecycle import Transition 216 self.assertEqual(actual_lifecycle.transition, None) 220 transition = Transition(days=30, storage_class='GLACIER') 222 transition=transition) 226 transition = response[0].transition 227 self.assertEqual(transition.days, 30) 228 self.assertEqual(transition.storage_class, 'GLACIER' [all...] |
/frameworks/base/core/java/android/transition/ |
ChangeClipBounds.java | 16 package android.transition; 29 * scene change and animates those changes during the transition. 31 public class ChangeClipBounds extends Transition {
|
Recolor.java | 17 package android.transition; 30 * This transition tracks changes during scene changes to the 40 public class Recolor extends Transition {
|
TransitionUtils.java | 17 package android.transition; 53 public static Transition mergeTransitions(Transition... transitions) {
|
ChangeBounds.java | 17 package android.transition; 45 * This transition captures the layout bounds of target views before and after 46 * the scene change and animates those changes during the transition. 48 * <p>A ChangeBounds transition can be described in a resource file by using the 51 * attributes of {@link android.R.styleable#Transition}.</p> 53 public class ChangeBounds extends Transition { 192 * {@link android.transition.ChangeClipBounds} is not compatible with ChangeBounds 218 * of every view using this transition. The flag is not enabled by 221 * the transition to determine which parents are the same. 223 * @param reparent true if the transition should track the paren [all...] |
SidePropagation.java | 16 package android.transition; 19 import android.transition.Slide.GravityFlag; 27 * the start of the transition, then it will transition sooner when closer to the side and 28 * later when farther. If the view is not visible in the start of the transition, then 29 * it will transition later when closer to the side and sooner when farther from the edge. 30 * This is the default TransitionPropagation used with {@link android.transition.Slide}. 39 * Sets the side that is used to calculate the transition propagation. If the transitioning 40 * View is visible in the start of the transition, then it will transition sooner whe [all...] |
ChangeImageTransform.java | 16 package android.transition; 34 * This Transition captures an ImageView's matrix before and after the 35 * scene change and animates it during the transition. 41 public class ChangeImageTransform extends Transition { 141 * @param sceneRoot The root of the transition hierarchy.
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/ |
lifecycle.py | 42 :ivar transition: An instance of `Transition`. This indicates 43 when to transition to a different storage class. 47 transition=None): 57 self.transition = transition 63 if name == 'Transition': 64 self.transition = Transition() 65 return self.transition [all...] |
/external/v8/tools/ |
trace-maps-processor.py | 16 "count Count most frequent transition reasons\n" % sys.argv[0]) 37 class Transition(object): 80 print("// warning: already have a transition from %s to %s, reason: %s" % 83 targets[to_map] = Transition(from_map, to_map, reason) 106 AddMap(to_map, "<transition> (%s)" % event) 108 if event in ["Transition", "NoTransition"]:
|
/frameworks/base/core/java/android/app/ |
ActivityTransitionState.java | 20 import android.transition.Transition; 87 * Has an exit transition been started? If so, we don't want to double-exit. 92 * Postpone painting and starting the enter transition until this is false. 97 * Potential exit transition coordinators. 292 Transition enterViewsTransition = null;
|
/cts/tests/tests/widget/src/android/widget/cts/ |
PopupWindowTest.java | 29 import android.transition.Transition; 30 import android.transition.Transition.TransitionListener; 31 import android.transition.TransitionValues; 152 Transition enterTransition = new CustomTransition(); 153 Transition exitTransition = new CustomTransition(); 166 public static class CustomTransition extends Transition { 170 // This constructor is needed for reflection-based creation of a transition when 171 // the transition is defined in layout XML via attribute [all...] |
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
TreeToNFAConverter.g | 125 while ( end.transition( 1 ) != null ) 127 end = (NFAState)end.transition( 1 ).target; 129 if ( end.transition( 0 ) != null ) 134 Transition e = new Transition( Label.EPSILON, n ); 138 Transition followEdge = new Transition( Label.EPSILON, following ); 245 start.addTransition(new Transition(Label.EPSILON, g.left)); 259 g.right.addTransition(new Transition(Label.EPSILON,end)); 432 NFAState altBlockState = (NFAState)$g.left.transition(0).target [all...] |
/frameworks/base/core/java/com/android/internal/policy/ |
PhoneWindow.java | 85 import android.transition.Scene; 86 import android.transition.Transition; 87 import android.transition.TransitionInflater; 88 import android.transition.TransitionManager; 89 import android.transition.TransitionSet; 129 private static final Transition USE_DEFAULT_TRANSITION = new TransitionSet(); 272 private Transition mEnterTransition = null; 273 private Transition mReturnTransition = USE_DEFAULT_TRANSITION; 274 private Transition mExitTransition = null [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
NFAToDFAConverter.java | 130 * transition is actually the exit branch of the loop. Rather than make 136 * when nongreedy and EOT transition. Make state with EOT emanating 159 closure((NFAState)alt.transition[0].target, 169 closure((NFAState)alt.transition[0].target, 181 if ( alt.transition[1] ==null ) { 184 alt = (NFAState)alt.transition[1].target; 196 /** From this node, add a d--a-->t transition for all 232 // When a loop is nongreedy and we find an EOT transition, the DFA 344 /** Add a transition from state d to targetState with label in normal case. 418 Transition oldTransition = (Transition)targetToLabelMap.get(tI) [all...] |
DecisionProbe.java | 374 NFAState isolatedAltStart = (NFAState)altStart.transition[0].target; 577 Transition transition0 = ruleInvocationState.transition[0]; 728 Transition t = s.transition(i); 738 if ( targetStatus==REACHABLE_NO ) { // try another transition 781 Transition t = startState.transition(i); 835 Transition t = s.transition[i] [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
Interpreter.java | 276 s = (NFAState)alt.transition[0].target; 293 (RuleClosureTransition)invokingState.transition[0]; 299 Transition trans = s.transition[0]; 311 // CASE 3: epsilon transition 326 // CASE 3b: plain old epsilon transition, just move 332 // CASE 4: match label on transition 341 s = (NFAState)s.transition[0].target; 398 Transition eotTransition = null; 407 Transition t = s.transition(i) [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
DFA.as | 3 /** A DFA implemented as a set of transition tables. 21 protected var transition:Array; // short[][] 33 eot:Array, eof:Array, min:Array, max:Array, accept:Array, special:Array, transition:Array, 45 this.transition = transition; 94 // look for a normal char transition 97 var snext:int = transition[s][c-min[s]]; // move to next state 99 // was in range but not a normal transition 103 if ( eot[s]>=0 ) { // EOT Transition to accept state? 104 if ( debug ) trace("EOT transition"); [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
CodeGenerator.java | 678 Transition edge = (Transition) s.transition(i); 724 Transition edge, 743 Transition edge) [all...] |
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
ExpandingEntryCardView.java | 33 import android.transition.ChangeBounds; 34 import android.transition.Fade; 35 import android.transition.Transition; 36 import android.transition.Transition.TransitionListener; 37 import android.transition.TransitionManager; 38 import android.transition.TransitionSet; [all...] |
/packages/apps/Messaging/src/com/android/messaging/ui/contact/ |
ContactPickerFragment.java | 31 import android.transition.Explode; 32 import android.transition.Transition; 33 import android.transition.Transition.EpicenterCallback; 34 import android.transition.TransitionManager; 385 // individual list items (hidden initially), so that the transition 501 * Kicks off a scene transition that animates visibility changes of individual contact list 510 final Explode transition = new Explode(); local 513 transition.setDuration(UiUtils.COMPOSE_TRANSITION_DURATION) [all...] |
/external/llvm/lib/CodeGen/ |
CodeGenPrepare.cpp | [all...] |
/frameworks/base/libs/input/ |
PointerController.cpp | 214 void PointerController::fade(Transition transition) { 221 if (transition == TRANSITION_IMMEDIATE) { 231 void PointerController::unfade(Transition transition) { 238 if (transition == TRANSITION_IMMEDIATE) {
|
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/ |
SlideKitkat.java | 16 package android.support.v17.leanback.transition; 36 import android.transition.Visibility; 37 import android.transition.Transition; 38 import android.transition.TransitionValues;
|
/external/v8/test/cctest/ |
test-field-type-tracking.cc | 416 // A set of tests for property reconfiguration that makes new transition tree 524 // is detached from transition tree or not. 649 // transition tree. 661 // transition tree. "None -> anything" representation changes make sense [all...] |
/prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4-runtime/4.5/ |
antlr4-runtime-4.5.jar | |