Searched defs:item (Results 1 - 25 of 465) 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;
/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());
/external/hamcrest/library/src/org/hamcrest/text/
H A DIsEqualIgnoringCase.java27 public boolean matchesSafely(String item) { argument
28 return string.equalsIgnoreCase(item);
/external/ImageMagick/scripts/
H A Dformat_c_api_docs332 my $inlist = 0; # Set to 1 if in list-item paragraph
518 print( OUT item($bullet), "$bullet_text\n\n" );
525 # Match synopsis item
598 # Return item
601 sub item { subroutine
602 my($item) = @_;
603 return( "=item $item\n\n" );
/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.c25 pitem *item = pqueue_pop(q); local
26 if (item == NULL) {
29 pitem_free(item);
41 pitem *item = pitem_new(priority, &data); local
42 if (item == NULL ||
43 pqueue_insert(q, item) != item ||
45 pqueue_peek(q) != item ||
46 pqueue_pop(q) != item ||
51 pitem_free(item);
66 pitem *curr, *item; local
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/util/mac/
H A Ddetermine_if_keychain_entry_is_decryptable.c33 SecKeychainItemRef item; local
35 service_name, strlen(account_name), account_name, NULL, NULL, &item);
37 // There is no keychain item.
46 status = SecKeychainItemCopyAccess(item, &access);
51 CFRelease(item);
71 CFRelease(item);
84 CFRelease(item);
92 CFRelease(item);
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/docs/source/
H A Dmake_predefined_table.py34 item = "%s" % (defn[key],) variable
36 item = "0x%0*X" % (hex_width, defn[key]) variable
38 item = "``%s``" % (defn[key]) variable
40 item = ' '.join([item, '[#ccitt]_']) variable
41 item = "%-*s" % (width, item) variable
42 defn_data_list.append(item)
/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/curl/lib/
H A Dslist.c36 struct curl_slist *item; local
42 /* loop through to find the last item */
43 item = list;
44 while(item->next) {
45 item = item->next;
47 return item;
73 /* if this is the first item, then new_item *is* the list */
132 struct curl_slist *item; local
137 item
[all...]
/external/curl/src/
H A Dtool_mfiles.c116 struct multi_files *item = *multi_first; local
118 while(item) {
119 next = item->next;
120 Curl_safefree(item);
121 item = next;
/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);

Completed in 1360 milliseconds

1234567891011>>