HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 51 - 75 of 1677) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/utils/llvm-build/llvmbuild/
componentinfo.py 22 def parse_items(items, has_dependencies = True):
24 kwargs['name'] = items.get_string('name')
25 kwargs['parent'] = items.get_optional_string('parent')
27 kwargs['dependencies'] = items.get_list('dependencies')
61 this object. Items are of the form (reference-type, component-name).
95 def parse(subpath, items):
96 kwargs = ComponentInfo.parse_items(items, has_dependencies = False)
113 def parse_items(items):
114 kwargs = ComponentInfo.parse_items(items)
115 kwargs['library_name'] = items.get_optional_string('library_name'
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
InMemoryResourceLoader.java 28 * ResourceLoader that pulls all items from memory. This is particularly useful for small templates
37 private ConcurrentMap<String, String> items = new ConcurrentHashMap<String, String>(); field in class:InMemoryResourceLoader
41 String content = items.get(name);
56 items.put(name, contents);
60 items.remove(name);
64 return items;
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ItemPublishEvent.java 27 private List<T> items; field in class:ItemPublishEvent
40 items = eventItems;
56 items = eventItems;
74 items = eventItems;
87 return Collections.unmodifiableList(items);
91 * Indicates whether this event was delayed. That is, the items
98 * @return true if the items are delayed, false otherwise.
106 * Gets the original date the items were published. This is only
109 * @return Date items were published if {@link #isDelayed()} is true, null otherwise.
  /libcore/luni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 56 * even for the items array, which is default-serialized, even if
62 /** The queued items */
63 final Object[] items; field in class:ArrayBlockingQueue
65 /** items index for next take, poll, peek or remove */
68 /** items index for next put, offer, or add */
101 return (++i == items.length) ? 0 : i;
108 return ((i == 0) ? items.length : i) - 1;
116 return (E) items[i];
135 // assert items[putIndex] == null;
136 items[putIndex] = x
149 final Object[] items = this.items; local
170 final Object[] items = this.items; local
527 final Object[] items = this.items; local
583 final Object[] items = this.items; local
634 final Object[] items = this.items; local
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
browser_shortcut_launcher_item_controller.cc 144 ChromeLauncherAppMenuItems items; local
147 items.push_back(new ChromeLauncherAppMenuItem(GetTitle(), NULL, false));
171 items.push_back(new ChromeLauncherAppMenuItemBrowser(
172 title, &app_icon, browser, items.size() == 1));
181 items.push_back(new ChromeLauncherAppMenuItemTab(
189 items.clear();
190 return items.Pass();
218 std::vector<Browser*> items; local
227 items.push_back(*it);
230 if (!items.size())
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
pubsubtasks_unittest.cc 27 const std::vector<buzz::PubSubItem>& items) {
28 OnItems(items);
32 const std::vector<buzz::PubSubItem>& items) {
33 OnItems(items);
36 void OnItems(const std::vector<buzz::PubSubItem>& items) {
37 for (std::vector<buzz::PubSubItem>::const_iterator item = items.begin();
38 item != items.end(); ++item) {
44 this->items.push_back(handled_item);
60 std::vector<HandledPubSubItem> items; member in class:TestPubSubTasksListener
96 "<pub:items node=\"topic\"/>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebSelectElement.cpp 57 WebVector<WebElement> items(sourceItems.size());
59 items[i] = WebElement(sourceItems[i]);
61 return items;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
IndexedSection.java 47 for (int i = 0; i < items.size(); i++) {
49 items.set(i, item);
75 return items.get(index);
  /packages/apps/Settings/src/com/android/settings/
AppWidgetLoader.java 56 void putCustomAppWidgets(List<Item> items, Intent intent) {
105 if (LOGD) Log.d(TAG, "Using " + customInfo.size() + " custom items");
106 putAppWidgetItems(customInfo, customExtras, items, 0, true);
115 List<Bundle> customExtras, List<Item> items, int categoryFilter,
130 items.add(item);
140 * Build and return list of items to be shown in dialog. This will mix both
148 List<Item> items = new ArrayList<Item>(); local
154 putInstalledAppWidgets(items, categoryFilter);
156 // Sort all items together by label
158 putCustomAppWidgets(items, intent)
    [all...]
  /external/chromium_org/chrome/browser/history/
most_visited_tiles_experiment.cc 72 std::vector<InstantMostVisitedItem>* items) {
73 for (size_t i = 0; i < items->size(); ) {
74 const std::string& url = (*items)[i].url.spec();
75 if (ShouldRemoveURL(open_urls, url, items->size()))
76 items->erase(items->begin() + i);
  /external/chromium_org/webkit/common/blob/
blob_data.h 53 const std::vector<Item>& items() const { return items_; } function in class:webkit_blob::BlobData
87 if (a.items().size() != b.items().size())
89 for (size_t i = 0; i < a.items().size(); ++i) {
90 if (a.items()[i] != b.items()[i])
  /external/chromium_org/chrome/browser/download/
download_status_updater.cc 70 content::DownloadManager::DownloadVector items; local
71 (*it)->GetManager()->GetAllDownloads(&items);
73 items.begin(); it != items.end(); ++it) {
95 content::DownloadManager::DownloadVector items; local
96 manager->GetAllDownloads(&items);
98 it = items.begin(); it != items.end(); ++it) {
all_download_item_notifier.cc 14 content::DownloadManager::DownloadVector items; local
15 manager_->GetAllDownloads(&items);
17 items.begin();
18 it != items.end(); ++it) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
themeChromiumAndroid.css 37 -webkit-align-items: center;
  /external/clang/test/CodeGenCXX/
typeid-cxx11.cpp 22 constexpr Item items[] = { member in namespace:Test1
27 constexpr auto &x = items[0].ti;
  /external/smack/src/org/jivesoftware/smackx/packet/
MUCAdmin.java 39 private List<Item> items = new ArrayList<Item>(); field in class:MUCAdmin
49 synchronized (items) {
50 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
60 synchronized (items) {
61 items.add(item);
68 synchronized (items) {
69 for (int i = 0; i < items.size(); i++) {
70 Item item = items.get(i);
  /external/chromium_org/chrome/browser/extensions/
context_menu_matcher.cc 40 MenuItem::List items; local
43 &can_cross_incognito, items))
46 if (items.empty())
50 // items in the menu, and the last item is not a separator add a separator.
59 RecursivelyAppendExtensionItems(items, can_cross_incognito, selection_text,
66 if (items.size() > 1 || items[0]->type() != MenuItem::NORMAL) {
68 submenu_items = items;
70 MenuItem* item = items[0];
101 MenuItem::List items; local
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebug.java 81 // items is the list of items to display in the list.
82 List<Map<String, String>> items = new ArrayList<Map<String, String>>(); local
89 addItem(items, mActivity.getString(R.string.calendar_info_error), "");
131 addItem(items, displayName, text);
137 addItem(items, mActivity.getString(R.string.calendar_info_error), e.toString());
144 if (items.size() == 0) {
145 addItem(items, mActivity.getString(R.string.calendar_info_no_calendars), "");
147 return items;
153 * @param items The info items to display
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MemberIdsSection.java 39 for (Object i : items()) {
  /dalvik/dx/src/com/android/dx/dex/file/
MemberIdsSection.java 49 if (items().size() > DexFormat.MAX_MEMBER_IDX + 1) {
53 for (Object i : items()) {
61 for (Object member : items()) {
77 memberType, items().size(), DexFormat.MAX_MEMBER_IDX + 1);
  /external/chromium/chrome/browser/importer/
external_process_importer_host.cc 28 uint16 items,
35 items_ = items;
40 CheckForFirefoxLock(source_profile, items, first_run);
41 CheckForLoadedModels(items);
importer_progress_dialog.h 19 // Shows an UI for importing and begins importing the specified |items| from
25 uint16 items,
  /external/chromium_org/ash/launcher/
launcher_navigator.cc 26 const ash::LauncherItems& items = model.items(); local
32 const ash::LauncherItem& item = items[i];
58 const ash::LauncherItem& item = items[i];
  /external/chromium_org/chrome/utility/importer/
importer.h 25 uint16 items,
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ContextMenu.h 40 const Vector<ContextMenuItem>& items() const { return m_items; } function in class:WebCore::ContextMenu

Completed in 602 milliseconds

1 23 4 5 6 7 8 91011>>