HomeSort by relevance Sort by last modified time
    Searched full:max_items (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/chrome/browser/prerender/
prerender_history.cc 13 PrerenderHistory::PrerenderHistory(size_t max_items)
14 : max_items_(max_items) {
15 DCHECK(max_items > 0);
prerender_history.h 57 // Creates a history with capacity for |max_items| entries.
58 explicit PrerenderHistory(size_t max_items);
  /external/chromium_org/sandbox/win/src/
shared_handles.cc 15 shared_.max_items = 0;
24 shared_.max_items = size_bytes / sizeof(shared_.items[0]);
59 for (size_t ix = 0; ix != shared_.max_items; ++ix) {
shared_handles.h 93 size_t max_items; member in struct:sandbox::SharedHandles::SharedMem
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ItemsExtension.java 40 /** An items element, which has an optional <b>max_items</b> attribute when requesting items */
41 items(PubSubElementType.ITEMS, "max_items"),
71 * optional value for the <b>max_items</b> attribute.
82 * @param attributeValue The value of the <b>max_items</b>
96 * optional value for the <b>max_items</b> attribute.
107 * @param attributeValue The value of the <b>max_items</b>
GetItemsRequest.java 78 builder.append(" max_items='");
ConfigureForm.java 316 return Integer.parseInt(getFieldValue(ConfigureNodeFields.max_items));
327 addField(ConfigureNodeFields.max_items, FormField.TYPE_TEXT_SINGLE);
328 setAnswer(ConfigureNodeFields.max_items.getFieldName(), max);
ConfigureNodeFields.java 111 max_items, enum constant in enum:ConfigureNodeFields
  /external/chromium_org/extensions/browser/api/storage/
settings_storage_quota_enforcer.cc 27 MAX_ITEMS
73 case MAX_ITEMS:
74 name = "MAX_ITEMS";
147 if (new_used_per_setting.size() > limits_.max_items)
148 return MakeWriteResult(QuotaExceededError(MAX_ITEMS, util::NewKey(key)));
179 if (new_used_per_setting.size() > limits_.max_items)
180 return MakeWriteResult(QuotaExceededError(MAX_ITEMS, util::NoKey()));
settings_storage_quota_enforcer.h 26 size_t max_items; member in struct:extensions::SettingsStorageQuotaEnforcer::Limits
settings_quota_unittest.cc 54 size_t quota_bytes, size_t quota_bytes_per_item, size_t max_items) {
57 { quota_bytes, quota_bytes_per_item, max_items };
  /external/chromium_org/sync/engine/
directory_commit_contribution.h 43 // given |type|. The contribution will include at most |max_items| entries.
51 size_t max_items,
  /external/chromium_org/chrome/browser/
jumplist_updater_win.cc 195 size_t max_items) {
207 if (link_items.empty() || !max_items)
220 item != link_items.end() && max_items > 0; ++item, --max_items) {
jumplist_updater_win.h 119 // |max_items| specifies the maximum number of items from |link_items| to add
123 size_t max_items);
jumplist_win.h 101 size_t max_items);
104 size_t max_items);
jumplist_win.cc 351 size_t max_items) {
354 if (list->size() >= max_items)
370 size_t max_items) {
376 if (!AddTab(&window->tabs[i], list, max_items))
  /external/qemu/android/skin/
keyset.c 332 int max_items; member in struct:SkinKeyset
364 if (kset->num_items >= kset->max_items) {
365 int old_size = kset->max_items;
372 kset->max_items = new_size;
457 kset->max_items = 0;
  /frameworks/base/docs/html/sdk/api_diff/21/changes/
android.provider.ContactsContract.StreamItems.html 133 <A NAME="android.provider.ContactsContract.StreamItems.MAX_ITEMS"></A>
134 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.html#MAX_ITEMS" target="_top"><code>MAX_ITEMS</code></font></A></nobr> </TD>
fields_index_changes.html 317 <nobr><A HREF="android.provider.ContactsContract.StreamItems.html#android.provider.ContactsContract.StreamItems.MAX_ITEMS" class="hiddenlink" target="rightframe">MAX_ITEMS</A>
  /frameworks/base/docs/html/sdk/api_diff/preview-21/changes/
android.provider.ContactsContract.StreamItems.html 133 <A NAME="android.provider.ContactsContract.StreamItems.MAX_ITEMS"></A>
134 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.StreamItems.html#MAX_ITEMS" target="_top"><code>MAX_ITEMS</code></font></A></nobr> </TD>
  /external/chromium_org/chrome/browser/extensions/api/storage/
sync_value_store_cache.cc 32 static_cast<size_t>(core_api::storage::sync::MAX_ITEMS)
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-uniscribe.cc 804 #define MAX_ITEMS 256
806 SCRIPT_ITEM items[MAX_ITEMS + 1];
809 ULONG script_tags[MAX_ITEMS];
821 MAX_ITEMS,
830 #undef MAX_ITEMS
  /external/harfbuzz_ng/src/
hb-uniscribe.cc 801 #define MAX_ITEMS 256
803 SCRIPT_ITEM items[MAX_ITEMS + 1];
806 ULONG script_tags[MAX_ITEMS];
818 MAX_ITEMS,
827 #undef MAX_ITEMS
  /external/chromium_org/components/json_schema/
json_schema_validator.cc 673 int max_items = 0; local
674 if (schema->GetInteger(schema::kMaxItems, &max_items)) {
675 CHECK(max_items >= 0);
676 if (instance_size > static_cast<size_t>(max_items)) {
678 kArrayMaxItems, base::IntToString(max_items))));
  /external/chromium_org/extensions/common/api/
storage.json 187 "MAX_ITEMS": {

Completed in 667 milliseconds

1 2