HomeSort by relevance Sort by last modified time
    Searched refs:CREATED (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/libmojo/base/android/java/src/org/chromium/base/
ActivityState.java 14 public final int CREATED = 1;
ApplicationStatus.java 134 onStateChange(activity, ActivityState.CREATED);
177 || newState == ActivityState.CREATED
185 if (newState == ActivityState.CREATED) {
272 * <li> Activity A - ActivityState.CREATED
277 * <li> Activity B - ActivityState.CREATED
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
IUiUpdateListener.java 31 /** The XML counterpart for the UI node has just been created. */
32 CREATED,
UiElementNode.java 130 * listeners attached, so the list is only created on demand and can be null. */
415 * is created and enforced by the parent of the tree, not the element themselves. However
693 * the unknown XML local name and reuse previously created descriptors.
    [all...]
  /cts/tests/fragment/src/android/fragment/cts/
StrictFragment.java 31 public static final int CREATED = 2;
47 case CREATED: return "CREATED";
112 mState = CREATED;
120 checkState("onActivityCreated", ATTACHED, CREATED);
151 // back stack, so fragments may be in the CREATED state.
152 checkStateAtLeast("onSaveInstanceState", CREATED);
169 mState = CREATED;
177 checkState("onDestroy", CREATED);
179 onStateChanged(CREATED);
    [all...]
StrictViewFragment.java 43 checkState("onCreateView", CREATED);
55 checkState("onViewCreated", CREATED);
66 checkState("onDestroyView", CREATED);
TransitionFragment.java 68 checkState("onCreateView", CREATED);
FragmentLifecycleTest.java 338 * to at least the CREATED state by the time the parent fragment receives onCreateView.
671 testLifecycleTransitionFailure(StrictFragment.ATTACHED, StrictFragment.CREATED);
672 testLifecycleTransitionFailure(StrictFragment.CREATED, StrictFragment.ACTIVITY_CREATED);
677 testLifecycleTransitionFailure(StrictFragment.STARTED, StrictFragment.CREATED);
678 testLifecycleTransitionFailure(StrictFragment.CREATED, StrictFragment.ATTACHED);
    [all...]
  /frameworks/support/fragment/tests/java/android/support/v4/app/
StrictFragment.java 30 public static final int CREATED = 2;
46 case CREATED: return "CREATED";
110 mState = CREATED;
118 checkState("onActivityCreated", ATTACHED, CREATED);
149 // back stack, so fragments may be in the CREATED state.
150 checkStateAtLeast("onSaveInstanceState", CREATED);
167 mState = CREATED;
175 checkState("onDestroy", CREATED);
177 onStateChanged(CREATED);
    [all...]
StrictViewFragment.java 44 checkState("onCreateView", CREATED);
56 checkState("onViewCreated", CREATED);
67 checkState("onDestroyView", CREATED);
TransitionFragment.java 65 checkState("onCreateView", CREATED);
FragmentLifecycleTest.java 440 * to at least the CREATED state by the time the parent fragment receives onCreateView.
564 testLifecycleTransitionFailure(StrictFragment.ATTACHED, StrictFragment.CREATED);
565 testLifecycleTransitionFailure(StrictFragment.CREATED, StrictFragment.ACTIVITY_CREATED);
570 testLifecycleTransitionFailure(StrictFragment.STARTED, StrictFragment.CREATED);
571 testLifecycleTransitionFailure(StrictFragment.CREATED, StrictFragment.ATTACHED);
    [all...]
  /frameworks/base/core/java/android/app/
LocalActivityManager.java 33 * process. This class is not normally used directly, but rather created for
65 static final int CREATED = 2; // Created, not started or resumed.
66 static final int STARTED = 3; // Created and started, not resumed.
67 static final int RESUMED = 4; // Created started and resumed.
131 // We need to have always created the activity.
154 // of our own (it is now STARTED, while we are only CREATED).
161 case CREATED:
170 mActivityThread.performResumeActivity(r, true, "moveToState-CREATED");
183 if (desiredState == CREATED) {
    [all...]
FragmentManager.java 80 * Representation of an entry on the fragment back stack, as created
144 * <p>Note: A fragment transaction can only be created/committed prior
337 * <li>A new Fragment created using this saved state must be the same class
338 * type as the Fragment it was created from.
348 * interesting state created by the fragment.
494 * @param f Fragment that created and owns the view
    [all...]
Fragment.java 319 * tag in the view hierarchy will not have their content view created
374 static final int INITIALIZING = 0; // Not yet created.
375 static final int CREATED = 1; // Created.
377 static final int STOPPED = 3; // Fully created, not started.
378 static final int STARTED = 4; // Created and started, not resumed.
379 static final int RESUMED = 5; // Created started and resumed.
    [all...]
FragmentTransition.java 73 * that the added Fragments have not created their Views yet and the hierarchy
85 * transaction has yet to be run and Views haven't been created.
90 if (fragmentManager.mCurState < Fragment.CREATED) {
    [all...]
  /external/libchrome/base/
tracked_objects.cc 412 // The list_lock_ was created when we registered the callback, so it won't be
823 state_ = CREATED;
837 DCHECK(state_ == CREATED);
    [all...]
tracked_objects.h 49 // instances as they are created and destroyed.
53 // First off, when the instance is created, the FROM_HERE macro is expanded
55 // created. That data is used to create a transient Location instance
62 // Next, a Births instance is created for use ONLY on the thread where this
63 // instance was created. That Births instance records (in a base class
91 // instance at a Location. In many cases, instances are only created on one
640 // thread is created, we first try to re-use a ThreadData instance from the
645 // Link to the most recently created instance (starts a null terminated list).
    [all...]
  /frameworks/support/fragment/java/android/support/v4/app/
FragmentManager.java 87 * Representation of an entry on the fragment back stack, as created
153 * <p>Note: A fragment transaction can only be created/committed prior
357 * <li>A new Fragment created using this saved state must be the same class
358 * type as the Fragment it was created from.
368 * interesting state created by the fragment.
510 * @param f Fragment that created and owns the view
    [all...]
FragmentTransition.java 69 * that the added Fragments have not created their Views yet and the hierarchy
81 * transaction has yet to be run and Views haven't been created.
86 if (fragmentManager.mCurState < Fragment.CREATED) {
    [all...]
Fragment.java 194 static final int INITIALIZING = 0; // Not yet created.
195 static final int CREATED = 1; // Created.
197 static final int STOPPED = 3; // Fully created, not started.
198 static final int STARTED = 4; // Created and started, not resumed.
199 static final int RESUMED = 5; // Created started and resumed.
765 } else if (mState >= CREATED) {
773 * Return this fragment's child FragmentManager one has been previously created,
816 * fragments are created through the &lt;fragment&gt; tag, <em>except</em>
883 * is not being re-created
    [all...]
  /frameworks/base/core/java/android/provider/
Browser.java 179 * a new tab be created. Overrides EXTRA_APPLICATION_ID; if both are set,
464 * The date the item created, in milliseconds since the epoch.
467 public static final String CREATED = "created";
  /packages/services/Telecomm/src/com/android/server/telecom/
LogUtils.java 56 public static final String CREATED = "CREATED";
  /external/caliper/lib/
jsr311-api-1.1.1.jar 
  /prebuilts/gdb/darwin-x86/lib/python2.7/
httplib.py 111 CREATED = 201
169 201: 'Created',
    [all...]

Completed in 3936 milliseconds

1 2 3 4