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

1 2 3 4 5

  /external/libmojo/base/android/java/src/org/chromium/base/
ActivityState.java 18 @IntDef({CREATED, STARTED, RESUMED, PAUSED, STOPPED, DESTROYED})
24 public final int CREATED = 1;
  /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,
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
ScanDirConfigMXBean.java 93 * Initial state: the {@link ScanDirConfigMXBean} is created, but
96 CREATED,
148 * will be created, in which the configuration will be saved.
158 * e.g. because the file couldn't be created.
315 * {@link SaveState#CREATED CREATED} means that the configuration data was just
316 * created. It has not been loaded from the configuration file.
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
ScanDirConfigMXBean.java 93 * Initial state: the {@link ScanDirConfigMXBean} is created, but
96 CREATED,
148 * will be created, in which the configuration will be saved.
158 * e.g. because the file couldn't be created.
315 * {@link SaveState#CREATED CREATED} means that the configuration data was just
316 * created. It has not been loaded from the configuration file.
  /frameworks/support/lifecycle/common/src/main/java/androidx/lifecycle/
Lifecycle.java 167 * Created state for a LifecycleOwner. For an {@link android.app.Activity}, this state
174 CREATED,
  /external/python/cpython2/Demo/turtle/
tdemo_nim.py 58 if self.game.state not in [Nim.CREATED, Nim.OVER]:
206 CREATED = 0
210 self.state = Nim.CREATED
  /external/python/cpython3/Lib/turtledemo/
nim.py 58 if self.game.state not in [Nim.CREATED, Nim.OVER]:
206 CREATED = 0
210 self.state = Nim.CREATED
  /external/tensorflow/tensorflow/core/platform/cloud/
file_block_cache.h 124 /// A block begins in the CREATED stage. The first thread will attempt to read
130 CREATED,
163 FetchState state GUARDED_BY(mu) = FetchState::CREATED;
  /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...]
  /external/python/cpython3/Lib/http/
__init__.py 35 CREATED = 201, 'Created', 'Document created, URL follows'
  /frameworks/support/fragment/src/androidTest/java/androidx/fragment/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...]
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
TestAcknowledgmentEntity.java 48 public static final String CREATED = "created";
55 private final long created; field in class:TestAcknowledgmentEntity
67 * @param created The timestamp when the entity was created (in microseconds).
69 * @param user The user who created or last modified the entity.
79 long created,
101 this.created = created;
108 * @param user The user who created or last modified the entity
135 long created = this.created; local
171 long created = (long) e.getProperty(CREATED); local
    [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/libchrome/base/
tracked_objects.h 52 // instances as they are created and destroyed.
56 // First off, when the instance is created, the FROM_HERE macro is expanded
58 // created. That data is used to create a transient Location instance
93 // Locations. Fortunately, Locations are often created on a single thread and
    [all...]
  /frameworks/base/core/java/android/app/
LocalActivityManager.java 36 * process. This class is not normally used directly, but rather created for
68 static final int CREATED = 2; // Created, not started or resumed.
69 static final int STARTED = 3; // Created and started, not resumed.
70 static final int RESUMED = 4; // Created started and resumed.
134 // We need to have always created the activity.
172 // of our own (it is now STARTED, while we are only CREATED).
179 case CREATED:
188 mActivityThread.performResumeActivity(r, true, "moveToState-CREATED");
201 if (desiredState == CREATED) {
    [all...]
Fragment.java 210 * tag in the view hierarchy will not have their content view created
270 static final int INITIALIZING = 0; // Not yet created.
271 static final int CREATED = 1; // Created.
273 static final int STOPPED = 3; // Fully created, not started.
274 static final int STARTED = 4; // Created and started, not resumed.
275 static final int RESUMED = 5; // Created started and resumed.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
httplib.py 111 CREATED = 201
169 201: 'Created',
    [all...]
  /external/python/cpython2/Lib/
httplib.py 112 CREATED = 201
170 201: 'Created',
    [all...]
  /frameworks/support/fragment/src/main/java/androidx/fragment/app/
Fragment.java 92 static final int INITIALIZING = 0; // Not yet created.
93 static final int CREATED = 1; // Created.
94 static final int ACTIVITY_CREATED = 2; // Fully created, not started.
95 static final int STARTED = 3; // Created and started, not resumed.
96 static final int RESUMED = 4; // Created started and resumed.
268 * <li>{@link Lifecycle.Event#ON_CREATE created} in {@link #onViewStateRestored(Bundle)}</li>
836 } else if (mState >= CREATED) {
844 * Return this fragment's child FragmentManager one has been previously created,
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
LogUtils.java 57 public static final String CREATED = "CREATED";
  /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/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...]
  /prebuilts/maven_repo/android/android/arch/lifecycle/common/1.0.0/
common-1.0.0.jar 

Completed in 433 milliseconds

1 2 3 4 5