Searched defs:object (Results 126 - 150 of 809) sorted by relevance

1234567891011>>

/external/llvm/tools/llvm-readobj/
H A DObjDumper.h17 namespace object { namespace in namespace:llvm
56 std::error_code createCOFFDumper(const object::ObjectFile *Obj,
60 std::error_code createELFDumper(const object::ObjectFile *Obj,
64 std::error_code createMachODumper(const object::ObjectFile *Obj,
H A DWin64EHDumper.h17 namespace object { namespace in namespace:llvm
29 typedef std::error_code (*SymbolResolver)(const object::coff_section *,
30 uint64_t, object::SymbolRef &,
34 const object::COFFObjectFile &COFF;
38 Context(const object::COFFObjectFile &COFF, SymbolResolver Resolver,
45 const object::coff_section *Section,
49 void printUnwindInfo(const Context &Ctx, const object::coff_section *Section,
52 const object::coff_section *Section,
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dhandle.c80 create_handle(void *object) argument
83 util_hash_table_set(handle_hash, intptr_to_pointer(h), object);
/external/mockito/src/org/mockito/internal/util/collections/
H A DListUtil.java24 boolean isOut(T object); argument
/external/proguard/src/proguard/
H A DKeepClassSpecification.java109 public boolean equals(Object object) argument
111 if (object == null ||
112 this.getClass() != object.getClass())
117 KeepClassSpecification other = (KeepClassSpecification)object;
/external/proguard/src/proguard/evaluation/value/
H A DArrayReferenceValue.java146 public boolean equals(Object object) argument
148 return this == object ||
149 super.equals(object) &&
150 this.arrayLength.equals(((ArrayReferenceValue)object).arrayLength);
H A DCompositeDoubleValue.java59 public boolean equals(Object object) argument
61 return this == object ||
62 super.equals(object) &&
63 this.doubleValue1.equals(((CompositeDoubleValue)object).doubleValue1) &&
64 this.operation == ((CompositeDoubleValue)object).operation &&
65 this.doubleValue2.equals(((CompositeDoubleValue)object).doubleValue2);
H A DCompositeFloatValue.java59 public boolean equals(Object object) argument
61 return this == object ||
62 super.equals(object) &&
63 this.floatValue1.equals(((CompositeFloatValue)object).floatValue1) &&
64 this.operation == ((CompositeFloatValue)object).operation &&
65 this.floatValue2.equals(((CompositeFloatValue)object).floatValue2);
H A DTopValue.java62 public boolean equals(Object object) argument
64 return object != null &&
65 this.getClass() == object.getClass();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFragmentPagerAdapter.java24 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
25 fragmentManager.beginTransaction().add(container.getId(), (Fragment) object).commit();
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPagerAdapterTest.java32 public boolean isViewFromObject(View view, Object object) { argument
/external/v8/src/arm64/
H A Ddelayed-masm-arm64-inl.h44 void DelayedMasm::LoadObject(Register result, Handle<Object> object) { argument
47 __ LoadObject(result, object);
/external/v8/src/
H A Dhydrogen-store-elimination.cc45 // Observe any unobserved stores on this object + field.
58 HValue* object = store->object()->ActualValue(); local
62 if (aliasing_->MustAlias(object, prev->object()->ActualValue()) &&
83 HValue* object = load->object()->ActualValue(); local
87 if (aliasing_->MayAlias(object, prev->object()->ActualValue()) &&
/external/v8/src/ic/
H A Dcall-optimization.cc61 JSObject* object = *api_holder; local
63 Object* prototype = object->map()->prototype();
66 object = JSObject::cast(prototype);
/external/v8/test/mjsunit/es6/
H A Dunscopables.js13 function restore(object, oldProto) {
14 delete object[Symbol.unscopables];
15 delete object.x;
16 delete object.x_;
17 delete object.y;
18 delete object.z;
19 Object.setPrototypeOf(object, oldProto);
61 var object = getObject(i);
62 var oldObjectProto = Object.getPrototypeOf(object);
63 f(object);
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DAbstractStorelessUnivariateStatistic.java154 * Returns true iff <code>object</code> is an
157 * @param object object to test equality against.
158 * @return true if object returns the same value as this
161 public boolean equals(Object object) { argument
162 if (object == this ) {
165 if (object instanceof AbstractStorelessUnivariateStatistic == false) {
168 AbstractStorelessUnivariateStatistic stat = (AbstractStorelessUnivariateStatistic) object;
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java146 * @param object A String or, an array of character bytes containing hexidecimal digits
150 * to this function or the object is not a String or char[]
153 public Object decode(Object object) throws DecoderException { argument
155 char[] charArray = object instanceof String ? ((String) object).toCharArray() : (char[]) object;
182 * @param object a String, or byte[] to convert to Hex characters
184 * @throws EncoderException Thrown if the given object is not a String or byte[]
187 public Object encode(Object object) throws EncoderException { argument
189 byte[] byteArray = object instanceo
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderElement.java204 public boolean equals(final Object object) { argument
205 if (object == null) return false;
206 if (this == object) return true;
207 if (object instanceof HeaderElement) {
208 BasicHeaderElement that = (BasicHeaderElement) object;
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXBoolean.java24 * This class represents an XPath boolean object, and is capable of
33 * A true boolean object so we don't have to keep creating them.
39 * A true boolean object so we don't have to keep creating them.
44 /** Value of the object.
49 * Construct a XBoolean object.
51 * @param b Value of the boolean object
62 * Construct a XBoolean object.
64 * @param b Value of the boolean object
98 * Cast result object to a number.
100 * @return numeric value of the object valu
133 public Object object() method in class:XBoolean
[all...]
/external/clang/test/Analysis/
H A Dweak-functions.c111 CFTypeRef object = CFGetSomething(); local
112 return object; // expected-warning{{Object with a +0 retain count returned to caller where a +1 (owning) retain count is expected}}
116 CFTypeRef object = CFCreateSomething(); // expected-warning{{Potential leak of an object stored into 'object'}} local
117 return object; }
/external/compiler-rt/test/BlocksRuntime/
H A DobjectRRGC.c27 void _Block_object_assign(void *destAddr, const void *object, const int isWeak) { argument
28 //printf("_Block_object_assign(%p, %p, %d) called\n", destAddr, object, isWeak);
32 void _Block_object_dispose(const void *object, const int isWeak) { argument
33 //printf("_Block_object_dispose(%p, %d) called\n", object, isWeak);
H A Dobjectassign.c26 void _Block_object_assign(void *destAddr, const void *object, const int isWeak) { argument
27 //printf("_Block_object_assign(%p, %p, %d) called\n", destAddr, object, isWeak);
31 void _Block_object_dispose(const void *object, const int isWeak) { argument
32 //printf("_Block_object_dispose(%p, %d) called\n", object, isWeak);
/external/google-breakpad/src/tools/solaris/dump_syms/testdata/
H A Ddump_syms_regtest.cc57 google_breakpad::C object; local
58 object.set_member(google_breakpad::i());
59 object.f();
60 int value = object.g();
61 char *nothing = object.h(object);
/external/google-breakpad/src/tools/windows/dump_syms/testdata/
H A Ddump_syms_regtest.cc58 google_breakpad::C object; local
59 object.set_member(google_breakpad::i());
60 object.f();
61 int value = object.g();
62 char *nothing = object.h(object);
/external/guava/guava/src/com/google/common/cache/
H A DRemovalNotification.java80 @Override public boolean equals(@Nullable Object object) { argument
81 if (object instanceof Entry) {
82 Entry<?, ?> that = (Entry<?, ?>) object;

Completed in 1993 milliseconds

1234567891011>>