Searched defs:item (Results 76 - 100 of 815) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTypedArrayBase.h70 T item(unsigned index) const function in class:WTF::TypedArrayBase
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_search_path_list.cpp54 // compute current list item, and next item start at the same time.
55 const char* item = p; local
65 full_path_.Assign(item, item_end - item);
/external/chromium_org/third_party/boringssl/src/ssl/pqueue/
H A Dpqueue_test.c29 pitem *item = pitem_new(priority, &data); local
30 if (item == NULL ||
31 pqueue_insert(q, item) != item ||
33 pqueue_peek(q) != item ||
34 pqueue_pop(q) != item ||
39 pitem_free(item);
59 pitem *item = pitem_new(priority, &ordering[i]); local
60 pqueue_insert(q, item);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Ddiscoitemsquerytask.cc55 DiscoItem item; local
57 if (ParseItem(child_element, &item)) {
58 items.push_back(item);
68 DiscoItem* item) {
73 item->jid = element->Attr(QN_JID);
74 item->name = element->Attr(QN_NAME);
75 item->node = element->Attr(QN_NODE);
67 ParseItem(const XmlElement* element, DiscoItem* item) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_list.c35 struct rc_list * rc_list(struct memory_pool * pool, void * item) argument
38 new->Item = item;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_resolve_map.c70 struct intel_resolve_map *item = head->next; local
72 while (item) {
73 if (item->level == level && item->layer == layer)
76 item = item->next;
79 return item;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_resolve_map.c70 struct intel_resolve_map *item = head->next; local
72 while (item) {
73 if (item->level == level && item->layer == layer)
76 item = item->next;
79 return item;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_resolve_map.c70 struct intel_resolve_map *item = head->next; local
72 while (item) {
73 if (item->level == level && item->layer == layer)
76 item = item->next;
79 return item;
/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest12-expected.cc42 const Foo* item = NULL; local
44 item = it->get();
H A Dtest12-original.cc42 const Foo* item = NULL; local
44 item = *it;
/external/chromium_org/tools/gn/
H A Dbuilder_record.cc7 #include "tools/gn/item.h"
36 bool BuilderRecord::IsItemOfType(const Item* item, ItemType type) { argument
39 return !!item->AsTarget();
41 return !!item->AsConfig();
43 return !!item->AsToolchain();
51 BuilderRecord::ItemType BuilderRecord::TypeOfItem(const Item* item) { argument
52 if (item->AsTarget())
54 if (item->AsConfig())
56 if (item->AsToolchain())
H A Dfunction_get_target_outputs.cc87 // scope will have been stashed in the item collector (they'll be dispatched
96 const Item* item = (*collector)[i]->get(); local
97 if (item->label() != label)
100 const Target* as_target = item->AsTarget();
104 "\nrefers to a " + item->GetItemTypeName());
/external/chromium_org/ui/app_list/
H A Dapp_list_item_list_observer.h17 // Triggered after |item| has been added to the list at |index|.
18 virtual void OnListItemAdded(size_t index, AppListItem* item) {} argument
20 // Triggered after an item has been removed from the list at |index|, just
21 // before the item is deleted.
22 virtual void OnListItemRemoved(size_t index, AppListItem* item) {} argument
24 // Triggered after |item| has been moved from |from_index| to |to_index|.
28 AppListItem* item) {}
26 OnListItemMoved(size_t from_index, size_t to_index, AppListItem* item) argument
H A Dapp_list_model_observer.h19 // Triggered after |item| has been added to the model.
20 virtual void OnAppListItemAdded(AppListItem* item) {} argument
22 // Triggered just before an item is deleted from the model.
23 virtual void OnAppListItemWillBeDeleted(AppListItem* item) {} argument
25 // Triggered just after an item is deleted from the model.
28 // Triggered after |item| has moved, changed folders, or changed properties.
29 virtual void OnAppListItemUpdated(AppListItem* item) {} argument
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_message_pump_dispatcher_win.cc35 MenuItemView* item = menu_controller_->pending_state_.item; local
36 if (item && item->GetRootMenuItem() != item) {
37 gfx::Point screen_loc(0, item->height());
38 View::ConvertPointToScreen(item, &screen_loc);
42 item->GetDelegate()->ShowContextMenu(
43 item, item
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-145201.js35 function item(operator) {
77 item('^');
78 item('~');
79 item('<<');
80 item('<');
81 item('==');
82 item('>>>');
83 item('>>');
84 item('|');
85 item('
[all...]
/external/clang/test/CodeGenCXX/
H A Dtypeid-cxx11.cpp13 template<typename T> constexpr Item item(const char *name) { function in namespace:Test1
23 item<A>("A"), item<B>("B"), item<C>("C"), item<int>("int")
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DLruResourceCache.java23 protected void onItemRemoved(Key key, Resource item) { argument
25 listener.onResourceRemoved(item);
30 protected int getSize(Resource item) { argument
31 return item.getSize();
/external/hamcrest/library/src/org/hamcrest/
H A DTypeSafeMatcher.java16 * Subclasses should implement this. The item will already have been checked for
19 public abstract boolean matchesSafely(T item); argument
53 public final boolean matches(Object item) { argument
54 return item != null
55 && expectedType.isInstance(item)
56 && matchesSafely((T) item);
/external/hamcrest/library/src/org/hamcrest/number/
H A DIsCloseTo.java24 public boolean matchesSafely(Double item) { argument
25 return Math.abs((item - value)) <= error;
/external/hamcrest/library/src/org/hamcrest/object/
H A DIsEventFrom.java25 public boolean matchesSafely(EventObject item) { argument
26 return eventClass.isInstance(item)
27 && eventHasSameSource(item);
/external/hamcrest/library/src/org/hamcrest/text/
H A DIsEqualIgnoringWhiteSpace.java27 public boolean matchesSafely(String item) { argument
28 return stripSpace(string).equalsIgnoreCase(stripSpace(item));
H A DSubstringMatcher.java17 public boolean matchesSafely(String item) { argument
18 return evalSubstringOf(item);
/external/hamcrest/library/src/org/hamcrest/xml/
H A DHasXPath.java42 public boolean matchesSafely(Node item) { argument
44 String result = (String) compiledXPath.evaluate(item, XPathConstants.STRING);
/external/hamcrest/src/org/hamcrest/core/
H A DIsInstanceOf.java27 public boolean matches(Object item) { argument
28 return theClass.isInstance(item);

Completed in 1558 milliseconds

1234567891011>>