/external/clang/test/CodeGen/ |
H A D | 2003-11-19-AddressOfRegister.c | 3 struct item { struct 8 register struct item *aa;
|
/external/hamcrest/src/org/hamcrest/ |
H A D | Matcher.java | 24 * 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 D | StackList.cs | 52 public void Push(object item) argument 54 Add(item);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
H A D | DTMNodeListBase.java | 62 * Returns the <code>index</code>th item in the collection. If 70 public Node item(int index) { method in class:DTMNodeListBase
|
H A D | DTMAxisIterNodeList.java | 96 * Returns the <code>index</code>th item in the collection. If 104 public Node item(int index) { method in class:DTMAxisIterNodeList
|
H A D | DTMChildIterNodeList.java | 87 * Returns the <code>index</code>th item in the collection. If 95 public Node item(int index) { method in class:DTMChildIterNodeList
|
H A D | DTMNodeList.java | 99 * 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 D | AbstractItemVisitor.java | 20 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 D | IItemVisitor.java | 19 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 D | simple_serializer.h | 51 // 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 D | IsGreaterThan.java | 18 public boolean matchesSafely(T item) { argument 19 return compareTo.compareTo(item) < 0;
|
H A D | IsCloseTo.java | 24 public boolean matchesSafely(Double item) { argument 25 return Math.abs((item - value)) <= error;
|
/external/hamcrest/library/src/org/hamcrest/object/ |
H A D | HasToString.java | 16 public boolean matches(Object item) { argument 17 return item != null && toStringMatcher.matches(item.toString());
|
H A D | IsEventFrom.java | 25 public boolean matchesSafely(EventObject item) { argument 26 return eventClass.isInstance(item) 27 && eventHasSameSource(item);
|
/external/hamcrest/library/src/org/hamcrest/text/ |
H A D | IsEqualIgnoringCase.java | 27 public boolean matchesSafely(String item) {
argument 28 return string.equalsIgnoreCase(item);
|
H A D | IsEqualIgnoringWhiteSpace.java | 27 public boolean matchesSafely(String item) {
argument 28 return stripSpace(string).equalsIgnoreCase(stripSpace(item));
|
H A D | SubstringMatcher.java | 17 public boolean matchesSafely(String item) { argument 18 return evalSubstringOf(item);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/ |
H A D | ListStack`1.cs | 47 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 D | DOMStringListImpl.java | 65 * @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 D | pqueue_test.c | 24 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 D | typeid-cxx11.cpp | 13 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 D | LruResourceCache.java | 30 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 D | minidump_file_writer-inl.h | 72 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 D | TypeSafeMatcher.java | 16 * 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 D | HasXPath.java | 42 public boolean matchesSafely(Node item) { argument 44 String result = (String) compiledXPath.evaluate(item, XPathConstants.STRING);
|