Searched defs:obj (Results 76 - 100 of 1735) sorted by relevance

1234567891011>>

/external/nist-sip/java/javax/sip/header/
H A DHeader.java9 boolean equals(Object obj); argument
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_number.h46 inline CPDF_Number* ToNumber(CPDF_Object* obj) { argument
47 return obj ? obj->AsNumber() : nullptr;
50 inline const CPDF_Number* ToNumber(const CPDF_Object* obj) { argument
51 return obj ? obj->AsNumber() : nullptr;
H A Dcpdf_reference.h50 inline CPDF_Reference* ToReference(CPDF_Object* obj) { argument
51 return obj ? obj->AsReference() : nullptr;
54 inline const CPDF_Reference* ToReference(const CPDF_Object* obj) { argument
55 return obj ? obj->AsReference() : nullptr;
H A Dcpdf_string.h43 inline CPDF_String* ToString(CPDF_Object* obj) { argument
44 return obj ? obj->AsString() : nullptr;
47 inline const CPDF_String* ToString(const CPDF_Object* obj) { argument
48 return obj ? obj->AsString() : nullptr;
/external/pdfium/xfa/fxfa/parser/
H A Dcxfa_list.cpp17 CXFA_List::CXFA_List(CXFA_Document* pDocument, std::unique_ptr<CJX_Object> obj) argument
22 std::move(obj)) {}
28 std::unique_ptr<CJX_Object> obj)
29 : CXFA_Object(pDocument, objectType, eType, elementName, std::move(obj)) {
24 CXFA_List(CXFA_Document* pDocument, XFA_ObjectType objectType, XFA_Element eType, const WideStringView& elementName, std::unique_ptr<CJX_Object> obj) argument
/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/
H A DAClassWithEqualsHashCodeToString.java9 public boolean equals(Object obj) { argument
/external/skia/src/core/
H A DSkPictureFlat.cpp52 SkRefCnt* SkTypefacePlayback::set(int index, SkRefCnt* obj) { argument
54 SkRefCnt_SafeAssign(fArray[index], obj);
55 return obj;
/external/skqp/src/core/
H A DSkPictureFlat.cpp52 SkRefCnt* SkTypefacePlayback::set(int index, SkRefCnt* obj) { argument
54 SkRefCnt_SafeAssign(fArray[index], obj);
55 return obj;
/external/snakeyaml/src/test/java/examples/
H A DCustomJavaObjectWithBinaryStringTest.java50 @Override public boolean equals(Object obj) { argument
51 if (this == obj)
53 if (obj == null)
55 if (getClass() != obj.getClass())
57 Pojo other = (Pojo) obj;
H A DDice.java37 public boolean equals(Object obj) { argument
38 if (obj instanceof Dice) {
39 return toString().equals(obj.toString());
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/
H A DPrimitiveOp.java34 public final boolean equals(Object obj) { argument
35 if (this == obj) {
40 if (!(obj instanceof PrimitiveOp)) {
43 return operation.equals(((PrimitiveOp) obj).operation);
/external/tpm2/
H A DMakefile6 obj ?= ./build macro
325 OBJS = $(patsubst %.c,$(obj)/$(OBJ_PREFIX)%.o,$(SOURCES))
326 DEPS = $(patsubst %.c,$(obj)/$(OBJ_PREFIX)%.d,$(SOURCES))
329 $(obj)/libtpm2.a: $(OBJS)
333 $(obj):
334 @echo " MKDIR $(obj)"
335 $(Q)mkdir -p $(obj)
337 $(obj)/$(OBJ_PREFIX)%.d $(obj)/$(OBJ_PREFIX)%.o: %.c | $(obj)
[all...]
/external/annotation-tools/asmx/src/org/objectweb/asm/
H A DHandle.java139 public boolean equals(Object obj) { argument
140 if (obj == this) {
143 if (!(obj instanceof Handle)) {
146 Handle h = (Handle) obj;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DLocation.java71 public boolean equals(Object obj) { argument
72 if (!(obj instanceof Location))
74 Location loc = (Location )obj;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DInvokeMethod003Debuggee.java26 public static int testMethod(Object obj) throws Throwable { argument
27 if (obj == null) {
H A DNewInstance002Debuggee.java32 public TestClass(Object obj) { argument
33 if (obj == null) {
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
H A DInvokeMethod002Debuggee.java28 public int testMethod(Object obj) throws Throwable { argument
29 if (obj == null) {
/external/apache-http/src/org/apache/http/protocol/
H A DBasicHttpContext.java69 Object obj = null;
71 obj = this.map.get(id);
73 if (obj == null && this.parentContext != null) {
74 obj = this.parentContext.getAttribute(id);
76 return obj;
79 public void setAttribute(final String id, final Object obj) { argument
86 this.map.put(id, obj);
H A DDefaultedHttpContext.java64 Object obj = this.local.getAttribute(id);
65 if (obj == null) {
68 return obj;
76 public void setAttribute(final String id, final Object obj) { argument
77 this.local.setAttribute(id, obj);
H A DHttpContext.java59 void setAttribute(String id, Object obj); argument
H A DSyncBasicHttpContext.java58 public synchronized void setAttribute(final String id, final Object obj) { argument
59 super.setAttribute(id, obj);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DXUnresolvedVariableSimple.java38 public XUnresolvedVariableSimple(ElemVariable obj) argument
40 super(obj);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DObjectPool.java158 * @param obj Object to add.
160 public synchronized void freeInstance(Object obj) argument
165 // if (objectType.isInstance(obj))
167 freeStack.add(obj);
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DIteratorPool.java113 * @param obj Object to add.
115 public synchronized void freeInstance(DTMIterator obj) argument
117 m_freeStack.add(obj);
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
H A DDeltaDescriptor.java114 public boolean equals(Object obj) { argument
115 if (this == obj) return true;
116 if (obj == null) return false;
117 if (getClass() != obj.getClass()) return false;
118 DeltaDescriptor other = (DeltaDescriptor) obj;

Completed in 819 milliseconds

1234567891011>>