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

1 2 3

  /external/chromium_org/base/android/
activity_state_list.h 11 DEFINE_ACTIVITY_STATE(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,
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...]
  /external/chromium_org/base/android/java/src/org/chromium/base/
ChromiumActivity.java 17 ActivityStatus.onStateChange(this, ActivityStatus.CREATED);
ActivityStatus.java 21 public static final int CREATED = ActivityState.CREATED;
58 // ActivityStatus is notified with the CREATED event very late during the main activity
60 // that could do some expensive work. This can lead to non-CREATED events being fired
61 // before the CREATED event which is problematic.
  /external/chromium_org/chrome/browser/history/android/
visit_sql_handler.cc 18 HistoryAndBookmarkRow::CREATED, HistoryAndBookmarkRow::VISIT_COUNT,
31 // The created time is updated according the given |row|.
32 // We simulate updating created time by
34 // b. Insert a new visit which has visit time same as created time.
58 // If created time is updated or new visit count is less than the current
60 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) ||
67 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &&
69 if (!AddVisit(id->url_id, row.created()))
93 // Add a row if the last visit time is different from created time.
94 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &
    [all...]
android_history_types_unittest.cc 18 EXPECT_EQ(HistoryAndBookmarkRow::CREATED,
19 HistoryAndBookmarkRow::GetColumnID("created"));
urls_sql_handler.cc 50 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::CREATED))
51 url_row.set_last_visit(row->created());
59 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &&
61 row->last_visit_time() == row->created()) {
64 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::CREATED))
android_history_types.h 37 CREATED,
84 void set_created(const base::Time created) {
85 set_value_explicitly(CREATED);
86 created_ = created;
88 const base::Time& created() const { function in class:history::HistoryAndBookmarkRow
android_provider_backend.cc 32 "android_cache_db.bookmark_cache.created_time AS created, "
79 // a. Last visit time or created time is large than now.
80 // b. Last visit time is less than created time.
81 // c. Created time and last visit time is different, but visit count is less
83 // d. The difference between created and last visit time is less than
85 // e. Visit count is 0 or 1 and both last visit time and created time are set
86 // explicitly, but the time is different or created time is not UnixEpoch.
91 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &&
92 row.created() > Time::Now())
96 row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED)) {
    [all...]
  /frameworks/base/core/java/android/app/
LocalActivityManager.java 32 * process. This class is not normally used directly, but rather created for
64 static final int CREATED = 2; // Created, not started or resumed.
65 static final int STARTED = 3; // Created and started, not resumed.
66 static final int RESUMED = 4; // Created started and resumed.
130 // We need to have always created the activity.
153 // of our own (it is now STARTED, while we are only CREATED).
160 case CREATED:
182 if (desiredState == CREATED) {
185 r.curState = CREATED;
    [all...]
FragmentManager.java 66 * Representation of an entry on the fragment back stack, as created
130 * <p>Note: A fragment transaction can only be created/committed prior
307 * <li>A new Fragment created using this saved state must be the same class
308 * type as the Fragment it was created from.
318 * interesting state created by the fragment.
658 writer.print(prefix); writer.println("Fragments Created Menus:");
796 if ((!f.mAdded || f.mDetached) && newState > Fragment.CREATED) {
797 newState = Fragment.CREATED;
809 // For fragments that are created from a layout, when restoring from
810 // state we don't want to allow them to be created until they ar
    [all...]
Fragment.java 295 * tag in the view hierarchy will not have their content view created
350 static final int INITIALIZING = 0; // Not yet created.
351 static final int CREATED = 1; // Created.
353 static final int STOPPED = 3; // Fully created, not started.
354 static final int STARTED = 4; // Created and started, not resumed.
355 static final int RESUMED = 5; // Created started and resumed.
832 } else if (mState >= CREATED) {
    [all...]
  /external/chromium_org/net/http/
http_status_code_list.h 22 HTTP_STATUS(CREATED, 201, "Created")
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
ProviderBookmarksUriTest.java 42 private Uri addBookmark(String url, String title, long lastVisitTime, long created, int visits,
47 values.put(BookmarkColumns.CREATED, created);
70 values.put(BookmarkColumns.CREATED, createdTime);
82 index = cursor.getColumnIndex(BookmarkColumns.CREATED);
134 index = cursor.getColumnIndex(BookmarkColumns.CREATED);
162 index = cursor.getColumnIndex(BookmarkColumns.CREATED);
217 index = cursor.getColumnIndex(BookmarkColumns.CREATED);
289 BookmarkColumns.DATE, BookmarkColumns.CREATED, BookmarkColumns.BOOKMARK,
313 value.put(BookmarkColumns.CREATED, createDate)
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP1to2UpgradeTests.java 118 values.put(BookmarkColumns.CREATED, 123456);
131 new String[] { BookmarkColumns.URL, BookmarkColumns.CREATED },
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorVideoEncoder.cpp 85 CREATED,
120 mState(CREATED),
138 if( CREATED != mState ) {
171 mState = CREATED;
262 CREATED = 0x1,
327 VIDEOEDITOR_CHECK(CREATED == pEncoderContext->mState, M4ERR_STATE);
416 VIDEOEDITOR_CHECK(CREATED == pEncoderContext->mState, M4ERR_STATE);
453 pEncoderContext->mState = CREATED;
541 pEncoderContext->mState = CREATED;
576 VIDEOEDITOR_CHECK(CREATED == pEncoderContext->mState, M4ERR_STATE)
    [all...]
VideoEditorAudioEncoder.cpp 63 CREATED,
97 mState(CREATED),
116 if( CREATED != mState ) {
152 mState = CREATED;
VideoEditorAudioDecoder.cpp 69 CREATED,
124 mState(CREATED),
138 if( CREATED != mState ) {
170 mState = CREATED;
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
FragmentManager.java 64 * Representation of an entry on the fragment back stack, as created
128 * <p>Note: A fragment transaction can only be created/committed prior
314 * <li>A new Fragment created using this saved state must be the same class
315 * type as the Fragment it was created from.
325 * interesting state created by the fragment.
651 writer.print(prefix); writer.println("Fragments Created Menus:");
830 if ((!f.mAdded || f.mDetached) && newState > Fragment.CREATED) {
831 newState = Fragment.CREATED;
843 // For fragments that are created from a layout, when restoring from
844 // state we don't want to allow them to be created until they ar
    [all...]
Fragment.java 167 static final int INITIALIZING = 0; // Not yet created.
168 static final int CREATED = 1; // Created.
170 static final int STOPPED = 3; // Fully created, not started.
171 static final int STARTED = 4; // Created and started, not resumed.
172 static final int RESUMED = 5; // Created started and resumed.
666 } else if (mState >= CREATED) {
709 * fragments are created through the &lt;fragment&gt; tag, <em>except</em>
775 * is not being re-created.
    [all...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationService.java 264 * of the user for which the client is being created; it will be persisted using
419 case ActivityStatus.CREATED:
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProvider.java 145 BookmarkColumns.FAVICON, BookmarkColumns.CREATED};
1157 Long created; field in class:ChromeBrowserProvider.BookmarkRow
    [all...]
  /frameworks/base/core/java/android/provider/
Browser.java 169 * a new tab be created. Overrides EXTRA_APPLICATION_ID; if both are set,
611 * The date the item created, in milliseconds since the epoch.
614 public static final String CREATED = "created";
  /cts/tests/tests/provider/src/android/provider/cts/
BrowserTest.java 574 BookmarkColumns.DATE, BookmarkColumns.CREATED, BookmarkColumns.BOOKMARK,
598 value.put(BookmarkColumns.CREATED, createDate);

Completed in 1916 milliseconds

1 2 3