Searched defs:object (Results 476 - 500 of 809) sorted by relevance

<<11121314151617181920>>

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DParsedEvent.java129 * The class extends EventThread by associating it with monitor object and location.
508 private TaggedObject object; field in class:ParsedEvent.Event_FIELD_ACCESS
521 object = packet.getNextValueAsTaggedObject();
532 * @return Returns the object.
535 return object;
564 private TaggedObject object; field in class:ParsedEvent.Event_FIELD_MODIFICATION
579 object = packet.getNextValueAsTaggedObject();
591 * @return Returns the object.
594 return object;
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXObject.java42 * This class represents an XPath object, and is capable of
43 * converting the object to various types, such as a string.
53 * The java object which this object wraps.
66 * @param obj Can be any object, should be a specific type
83 * @return This object.
115 * Forces the object to release it's resources. This is more harsh than
155 * Create the right XObject based on the type of the object passed. This
159 * @param val The java object which this object wil
397 public Object object() method in class:XObject
[all...]
/external/clang/test/CXX/class.access/class.friend/
H A Dp1.cpp181 T object; member in class:test4::Holder
183 return a.object == b.object; // expected-error {{invalid operands to binary expression}}
/external/clang/test/SemaCXX/
H A Dexpression-traits.cpp78 // basic.lval/6: An expression which holds a temporary object resulting
80 // the explicit creation of an object using functional notation
159 // 5.1/3: The keyword "this" names a pointer to the object for
338 // simple-type-specifier (7.1.5.2) for a non-array complete object
409 // lvalue for the unique B sub-object of the D object referred
413 D object; local
414 ASSERT_LVALUE(dynamic_cast<B&>(object));
419 // - If, in the most derived object pointed (referred) to by v, v
420 // points (refers) to a public base class subobject of a T object, an
[all...]
H A Dmember-pointer.cpp162 int test1(int Base::* p2m, X* object) argument
164 return object->*p2m; // expected-error {{left hand operand to ->*}}
/external/compiler-rt/lib/BlocksRuntime/
H A Druntime.c265 * Prior to this the only "object" support we can provide is for those
381 // if its weak ask for an object (only matters under GC)
544 When a __block variable is either a C++ object, an Objective-C object, or another Block then the compiler also generates copy/dispose helper functions. Similarly to the Block copy helper, the "__block" copy helper (formerly and still a.k.a. "byref" copy helper) will do a C++ copy constructor (not a const one though!) and the dispose helper will do the destructor. And similarly the helpers will call into the same two support functions with the same values for objects and Blocks with the additional BLOCK_BYREF_CALLER (128) bit of information supplied.
560 void _Block_object_assign(void *destAddr, const void *object, const int flags) { argument
561 //printf("_Block_object_assign(*%p, %p, %x)\n", destAddr, object, flags);
564 _Block_assign_weak(object, destAddr);
568 _Block_assign((void *)object, destAddr);
574 _Block_byref_assign_copy(destAddr, object, flags);
579 _Block_assign(_Block_copy_internal(object, flag
593 _Block_object_dispose(const void *object, const int flags) argument
[all...]
/external/deqp/framework/common/
H A DtcuThreadUtil.hpp40 // Event object for synchronizing threads
138 void readObject (de::SharedPtr<Object> object) { object->read(m_event, m_deps); } argument
139 void modifyObject (de::SharedPtr<Object> object) { object->modify(m_event, m_deps); } argument
/external/freetype/src/cff/
H A Dcffparse.c41 void* object,
48 parser->object = object;
509 CFF_FontRecDict dict = (CFF_FontRecDict)parser->object;
581 CFF_FontRecDict dict = (CFF_FontRecDict)parser->object;
611 CFF_FontRecDict dict = (CFF_FontRecDict)parser->object;
655 CFF_FontRecDict dict = (CFF_FontRecDict)parser->object;
1034 FT_Byte* q = (FT_Byte*)parser->object + field->offset;
1111 FT_Byte* qcount = (FT_Byte*)parser->object +
39 cff_parser_init( CFF_Parser parser, FT_UInt code, void* object, FT_Library library) argument
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DGenericRequest.java232 private static void check(String name, Object object, String suggestion) { argument
233 if (object == null) {
448 onException(new Exception("Expected to receive a Resource<R> with an object of " + transcodeClass
456 onException(new Exception("Expected to receive an object of " + transcodeClass
460 + "To indicate failure return a null Resource object, "
461 + "rather than a Resource object containing null data.")
480 * @param result object returned by {@link Resource#get()}, checked for type and never <code>null</code>
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONObject.java42 * is an object having <code>get</code> and <code>opt</code> methods for
47 * object. A JSONObject constructor can be used to convert an external form
57 * object, which you can cast or query for type. There are also typed
61 * The <code>put</code> methods adds values to an object. For example, <pre>
99 * There is only intended to be a single instance of the NULL object,
109 * A Null object is equal to the null value and to itself.
110 * @param object An object to test for nullness.
111 * @return true if the object parameter is the JSONObject.NULL object
114 equals(Object object) argument
396 JSONObject(Object object, String names[]) argument
661 getNames(Object object) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DCollections2.java107 Collection<?> collection, @Nullable Object object) {
110 return collection.contains(object);
123 static boolean safeRemove(Collection<?> collection, @Nullable Object object) { argument
126 return collection.remove(object);
106 safeContains( Collection<?> collection, @Nullable Object object) argument
H A DImmutableList.java357 public int indexOf(@Nullable Object object) { argument
358 return (object == null) ? -1 : Lists.indexOfImpl(this, object);
362 public int lastIndexOf(@Nullable Object object) { argument
363 return (object == null) ? -1 : Lists.lastIndexOfImpl(this, object);
367 public boolean contains(@Nullable Object object) { argument
368 return indexOf(object) >= 0;
532 @Override public boolean contains(@Nullable Object object) { argument
533 return forwardList.contains(object);
536 indexOf(@ullable Object object) argument
541 lastIndexOf(@ullable Object object) argument
[all...]
H A DImmutableMap.java506 @Override public boolean equals(@Nullable Object object) { argument
507 return Maps.equalsImpl(this, object);
H A DImmutableMultimap.java521 @Override public boolean contains(Object object) { argument
522 if (object instanceof Entry) {
523 Entry<?, ?> entry = (Entry<?, ?>) object;
584 public boolean contains(@Nullable Object object) { argument
585 return containsKey(object);
649 public boolean contains(@Nullable Object object) { argument
650 return multimap.containsValue(object);
H A DLists.java676 @Override public int indexOf(@Nullable Object object) { argument
677 return (object instanceof Character)
678 ? string.indexOf((Character) object) : -1;
681 @Override public int lastIndexOf(@Nullable Object object) { argument
682 return (object instanceof Character)
683 ? string.lastIndexOf((Character) object) : -1;
908 static boolean equalsImpl(List<?> list, @Nullable Object object) { argument
909 if (object == checkNotNull(list)) {
912 if (!(object instanceof List)) {
916 List<?> o = (List<?>) object;
[all...]
H A DMapConstraints.java629 @Override public boolean equals(@Nullable Object object) { argument
630 return Sets.equalsImpl(this, object);
684 @Override public boolean equals(@Nullable Object object) { argument
685 return standardEquals(object);
H A DRange.java660 * Returns {@code true} if {@code object} is a range having the same endpoints and bound types as
666 @Override public boolean equals(@Nullable Object object) { argument
667 if (object instanceof Range) {
668 Range<?> other = (Range<?>) object;
/external/guava/guava/src/com/google/common/primitives/
H A DInts.java364 * Returns a serializable converter object that converts between strings and
591 @Override public boolean equals(Object object) { argument
592 if (object == this) {
595 if (object instanceof IntArrayAsList) {
596 IntArrayAsList that = (IntArrayAsList) object;
608 return super.equals(object);
H A DLongs.java396 * Returns a serializable converter object that converts between strings and
624 @Override public boolean equals(Object object) { argument
625 if (object == this) {
628 if (object instanceof LongArrayAsList) {
629 LongArrayAsList that = (LongArrayAsList) object;
641 return super.equals(object);
H A DShorts.java362 * Returns a serializable converter object that converts between strings and
590 @Override public boolean equals(Object object) { argument
591 if (object == this) {
594 if (object instanceof ShortArrayAsList) {
595 ShortArrayAsList that = (ShortArrayAsList) object;
607 return super.equals(object);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableMultimap.java508 @Override public boolean contains(Object object) { argument
509 if (object instanceof Entry) {
510 Entry<?, ?> entry = (Entry<?, ?>) object;
571 public boolean contains(@Nullable Object object) { argument
572 return containsKey(object);
636 public boolean contains(@Nullable Object object) { argument
637 return multimap.containsValue(object);
H A DLists.java642 @Override public int indexOf(@Nullable Object object) { argument
643 return (object instanceof Character)
644 ? string.indexOf((Character) object) : -1;
647 @Override public int lastIndexOf(@Nullable Object object) { argument
648 return (object instanceof Character)
649 ? string.lastIndexOf((Character) object) : -1;
874 static boolean equalsImpl(List<?> list, @Nullable Object object) { argument
875 if (object == checkNotNull(list)) {
878 if (!(object instanceof List)) {
882 List<?> o = (List<?>) object;
[all...]
H A DSets.java382 * compares object references, instead of calling {@code equals}, to
383 * determine whether a provided object matches an element in the set. For
384 * example, {@code contains} returns {@code false} when passed an object that
561 @Override public boolean contains(Object object) {
562 return set1.contains(object) || set2.contains(object);
618 @Override public boolean contains(Object object) {
619 return set1.contains(object) && set2.contains(object);
734 @Override public boolean equals(@Nullable Object object) { argument
1006 equals(@ullable Object object) argument
1194 equalsImpl(Set<?> s, @Nullable Object object) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DInts.java310 * Returns a serializable converter object that converts between strings and
537 @Override public boolean equals(Object object) { argument
538 if (object == this) {
541 if (object instanceof IntArrayAsList) {
542 IntArrayAsList that = (IntArrayAsList) object;
554 return super.equals(object);
/external/harfbuzz_ng/test/api/
H A Dtest-object.c29 /* Unit tests for hb-object-private.h */
214 void *object; member in struct:__anon5458
222 g_assert (NULL == t->klass->get_user_data (t->object, &t->key));
241 g_test_message ("Testing object %s", o->name);
261 /* Should still work even if object is made immutable */
304 deadlock_test.object = obj;

Completed in 2427 milliseconds

<<11121314151617181920>>