Searched defs:item (Results 1 - 25 of 319) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2003-11-19-AddressOfRegister.c3 struct item { struct
8 register struct item *aa;
/external/hamcrest/src/org/hamcrest/
H A DMatcher.java24 * Evaluates the matcher for argument <var>item</var>.
31 * @param item the object against which the matcher is evaluated.
32 * @return <code>true</code> if <var>item</var> matches, otherwise <code>false</code>.
36 boolean matches(Object item); argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DStackList.cs52 public void Push(object item) argument
54 Add(item);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeListBase.java62 * Returns the <code>index</code>th item in the collection. If
70 public Node item(int index) { method in class:DTMNodeListBase
H A DDTMAxisIterNodeList.java96 * Returns the <code>index</code>th item in the collection. If
104 public Node item(int index) { method in class:DTMAxisIterNodeList
H A DDTMChildIterNodeList.java87 * Returns the <code>index</code>th item in the collection. If
95 public Node item(int index) { method in class:DTMChildIterNodeList
H A DDTMNodeList.java99 * Returns the <code>index</code>th item in the collection. If
107 public Node item(int index) method in class:DTMNodeList
110 int handle=m_iter.item(index);
/external/emma/core/java12/com/vladium/emma/report/
H A DAbstractItemVisitor.java20 public Object visit (final AllItem item, final Object ctx) argument
25 public Object visit (final PackageItem item, final Object ctx) argument
30 public Object visit (final SrcFileItem item, final Object ctx) argument
35 public Object visit (final ClassItem item, final Object ctx) argument
40 public Object visit (final MethodItem item, final Object ctx) argument
H A DIItemVisitor.java19 Object visit (AllItem item, Object ctx); argument
20 Object visit (PackageItem item, Object ctx); argument
21 Object visit (SrcFileItem item, Object ctx); argument
22 Object visit (ClassItem item, Object ctx); argument
23 Object visit (MethodItem item, Object ctx); argument
/external/google-breakpad/src/processor/
H A Dsimple_serializer.h51 // Calculate and return the size of the 'item'.
52 static size_t SizeOf(const Type &item) { return sizeof(item); } argument
53 // Write 'item' to memory location 'dest', and return to the "end" address of
55 static char *Write(const Type &item, char *dest) { argument
56 new (dest) Type(item);
57 return dest + SizeOf(item);
/external/hamcrest/library/src/org/hamcrest/number/
H A DIsGreaterThan.java18 public boolean matchesSafely(T item) { argument
19 return compareTo.compareTo(item) < 0;
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 DHasToString.java16 public boolean matches(Object item) { argument
17 return item != null && toStringMatcher.matches(item.toString());
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 DIsEqualIgnoringCase.java27 public boolean matchesSafely(String item) { argument
28 return string.equalsIgnoreCase(item);
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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DListStack`1.cs47 T item;
48 if (!TryPeek(depth, out item))
51 return item;
54 public bool TryPeek(out T item) argument
56 return TryPeek(0, out item);
59 public bool TryPeek(int depth, out T item) argument
63 item = default(T);
67 item = this[Count - depth - 1];
80 public bool TryPop(out T item) argument
84 item
93 Push(T item) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMStringListImpl.java65 * @see org.apache.xerces.dom3.DOMStringList#item(int)
67 public String item(int index) { method in class:DOMStringListImpl
/external/boringssl/src/ssl/pqueue/
H A Dpqueue_test.c24 pitem *item = pqueue_pop(q); local
25 if (item == NULL) {
28 pitem_free(item);
40 pitem *item = pitem_new(priority, &data); local
41 if (item == NULL ||
42 pqueue_insert(q, item) != item ||
44 pqueue_peek(q) != item ||
45 pqueue_pop(q) != item ||
50 pitem_free(item);
65 pitem *curr, *item; local
[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.java30 protected void onItemEvicted(Key key, Resource<?> item) { argument
32 listener.onResourceRemoved(item);
37 protected int getSize(Resource<?> item) { argument
38 return item.getSize();
/external/google-breakpad/src/client/
H A Dminidump_file_writer-inl.h72 inline bool TypedMDRVA<MDType>::CopyIndex(unsigned int index, MDType *item) { argument
76 item, minidump_size<MDType>::size());
/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/xml/
H A DHasXPath.java42 public boolean matchesSafely(Node item) { argument
44 String result = (String) compiledXPath.evaluate(item, XPathConstants.STRING);

Completed in 943 milliseconds

1234567891011>>