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

1 2 3 4

  /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/
StrictViewFragment.java 32 checkState("onCreateView", CREATED);
44 checkState("onViewCreated", CREATED);
55 checkState("onDestroyView", CREATED);
StrictFragment.java 31 public static final int CREATED = 2;
46 case CREATED: return "CREATED";
101 mState = CREATED;
109 checkState("onActivityCreated", ATTACHED, CREATED);
154 mState = CREATED;
162 checkState("onDestroy", CREATED);
171 checkState("onDestroy", CREATED, ATTACHED);
  /frameworks/support/v4/tests/java/android/support/v4/app/
StrictViewFragment.java 33 checkState("onCreateView", CREATED);
45 checkState("onViewCreated", CREATED);
56 checkState("onDestroyView", CREATED);
StrictFragment.java 30 public static final int CREATED = 2;
46 case CREATED: return "CREATED";
106 mState = CREATED;
114 checkState("onActivityCreated", ATTACHED, CREATED);
159 mState = CREATED;
167 checkState("onDestroy", CREATED);
176 checkState("onDestroy", CREATED, ATTACHED);
  /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 74 * Representation of an entry on the fragment back stack, as created
138 * <p>Note: A fragment transaction can only be created/committed prior
315 * <li>A new Fragment created using this saved state must be the same class
316 * type as the Fragment it was created from.
326 * interesting state created by the fragment.
742 writer.print(prefix); writer.println("Fragments Created Menus:");
884 if ((!f.mAdded || f.mDetached) && newState > Fragment.CREATED) {
885 newState = Fragment.CREATED;
    [all...]
Fragment.java 312 * tag in the view hierarchy will not have their content view created
367 static final int INITIALIZING = 0; // Not yet created.
368 static final int CREATED = 1; // Created.
370 static final int STOPPED = 3; // Fully created, not started.
371 static final int STARTED = 4; // Created and started, not resumed.
372 static final int RESUMED = 5; // Created started and resumed.
    [all...]
BackStackRecord.java 724 if (mManager.mCurState >= Fragment.CREATED) {
852 * Ensure that fragments that are entering are at least at the CREATED state
855 if (fragment.mState < Fragment.CREATED && mManager.mCurState >= Fragment.CREATED) {
857 mManager.moveToState(fragment, Fragment.CREATED, 0, 0, false);
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpStatus.java 91 * <td>Created</td>
704 /** <code>201 Created</code> */
705 CREATED(CREATED_201, "Created"),
    [all...]
  /external/libchrome/base/
tracked_objects.cc 421 // The list_lock_ was created when we registered the callback, so it won't be
    [all...]
tracked_objects.h 50 // instances as they are created and destroyed.
54 // First off, when the instance is created, the FROM_HERE macro is expanded
56 // created. That data is used to create a transient Location instance
63 // Next, a Births instance is created for use ONLY on the thread where this
64 // instance was created. That Births instance records (in a base class
92 // instance at a Location. In many cases, instances are only created on one
649 // thread is created, we first try to re-use a ThreadData instance from the
654 // Link to the most recently created instance (starts a null terminated list).
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
FragmentManager.java 75 * Representation of an entry on the fragment back stack, as created
141 * <p>Note: A fragment transaction can only be created/committed prior
336 * <li>A new Fragment created using this saved state must be the same class
337 * type as the Fragment it was created from.
347 * interesting state created by the fragment.
769 writer.print(prefix); writer.println("Fragments Created Menus:");
    [all...]
Fragment.java 180 static final int INITIALIZING = 0; // Not yet created.
181 static final int CREATED = 1; // Created.
183 static final int STOPPED = 3; // Fully created, not started.
184 static final int STARTED = 4; // Created and started, not resumed.
185 static final int RESUMED = 5; // Created started and resumed.
711 } else if (mState >= CREATED) {
754 * fragments are created through the &lt;fragment&gt; tag, <em>except</em>
820 * is not being re-created.
    [all...]
BackStackRecord.java 672 if (SUPPORTS_TRANSITIONS && mManager.mCurState >= Fragment.CREATED) {
793 if (fragment.mState < Fragment.CREATED && mManager.mCurState >= Fragment.CREATED) {
795 mManager.moveToState(fragment, Fragment.CREATED, 0, 0, false);
    [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";
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
transfer.py 529 the upload is created.
785 http_client.CREATED):
    [all...]
  /external/caliper/lib/
jsr311-api-1.1.1.jar 
  /packages/services/Telecomm/src/com/android/server/telecom/
Log.java 60 public static final String CREATED = "CREATED";
465 * Starts the subsession that was created in Log.CreateSubsession. The Log.endSession() method
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
httplib.py 111 CREATED = 201
169 201: 'Created',
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
httplib.py 111 CREATED = 201
169 201: 'Created',
    [all...]
  /prebuilts/misc/common/android-support-test/runner/
runner-0.5-release-no-dep.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
httplib.py 111 CREATED = 201
169 201: 'Created',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
httplib.py 111 CREATED = 201
169 201: 'Created',
    [all...]

Completed in 2771 milliseconds

1 2 3 4