HomeSort by relevance Sort by last modified time
    Searched defs:obj (Results 51 - 75 of 400) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/params/
DefaultedHttpParams.java 74 Object obj = this.local.getParameter(name); local
75 if (obj == null && this.defaults != null) {
76 obj = this.defaults.getParameter(name);
78 return obj;
  /external/apache-http/src/org/apache/http/protocol/
BasicHttpContext.java 64 Object obj = null; local
66 obj = this.map.get(id);
68 if (obj == null && this.parentContext != null) {
69 obj = this.parentContext.getAttribute(id);
71 return obj;
74 public void setAttribute(final String id, final Object obj) {
81 this.map.put(id, obj);
DefaultedHttpContext.java 59 Object obj = this.local.getAttribute(id); local
60 if (obj == null) {
63 return obj;
71 public void setAttribute(final String id, final Object obj) {
72 this.local.setAttribute(id, obj);
  /external/bluetooth/glib/gio/
gfileattribute-priv.h 41 GObject *obj; member in union:__anon1187::__anon1188
83 GObject *obj);
  /external/opencore/android/
thread_init.cpp 91 PVLoggerConfigFile obj; local
92 if(obj.IsLoggerConfigFilePresent())
94 obj.SetLoggerSettings();
  /external/opencore/tools_v2/build/make/
entry_point.mk 42 $$(call make-cpp-obj-and-depend,$$<,$$@,$$(subst .$(OBJ_EXT),.d,$$@),$$(XFLAGS))
45 $$(call make-asm-obj,$$<,$$@,$$(subst .$(OBJ_EXT),.d,$$@),$$(XFLAGS))
48 $$(call make-c-obj-and-depend,$$<,$$@,$$(subst .$(OBJ_EXT),.d,$$@),$$(XFLAGS))
161 # $(call make-cpp-obj-and-depend,source-file,object-file,depend-file,xflags)
162 define make-cpp-obj-and-depend
170 define make-asm-obj
191 # $(call make-c-obj-and-depend,source-file,object-file,depend-file,xflags)
192 define make-c-obj-and-depend
206 define set-src-and-obj-names
  /external/openssl/crypto/x509/
x509_v3.c 77 ASN1_OBJECT *obj; local
79 obj=OBJ_nid2obj(nid);
80 if (obj == NULL) return(-2);
81 return(X509v3_get_ext_by_OBJ(x,obj,lastpos));
84 int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *sk, ASN1_OBJECT *obj,
98 if (OBJ_cmp(ex->object,obj) == 0)
186 ASN1_OBJECT *obj; local
189 obj=OBJ_nid2obj(nid);
190 if (obj == NULL)
195 ret=X509_EXTENSION_create_by_OBJ(ex,obj,crit,data)
    [all...]
  /external/skia/src/core/
SkFlattenable.cpp 94 SkFlattenable* obj = NULL; variable
98 obj = (*factory)(*this);
106 return obj;
149 void SkFlattenableWriteBuffer::writeTypeface(SkTypeface* obj) {
150 if (NULL == obj || NULL == fTFRecorder) {
153 this->write32(fTFRecorder->record(obj));
157 void SkFlattenableWriteBuffer::writeRefCnt(SkRefCnt* obj) {
158 if (NULL == obj || NULL == fRCRecorder) {
161 this->write32(fRCRecorder->record(obj));
185 // record the obj's siz
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Array/
regress-130451.js 127 var obj = new Object(); class
128 obj.sort = Array.prototype.sort;
129 obj.length = 4;
130 obj[0] = 0;
131 obj[1] = 1;
132 obj[2] = 2;
133 obj[3] = 3;
135 actual = obj.sort(cmp).length;
142 * above, the setting of obj.length to 2 and then 4
145 obj = new Object()
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-156354.js 80 var obj = {prop1:null};
83 actual = obj.propertyIsEnumerable('prop1');
88 actual = obj.propertyIsEnumerable('prop2');
94 eval("actual = obj.propertyIsEnumerable('prop2')");
regress-57043.js 27 * numeric literals, as in assignments like obj[-1] = 'Hello'
32 * obj[-1] = 'Hello'
33 * obj['-1'] = 'Hello'
41 var obj = new Object(); class
71 obj[i] = value = (propprefix + i);
75 actual = obj[i];
80 actual = obj[String(i)];
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Scope/
regress-184107.js 61 var obj = {y:10};
62 with (obj)
75 actual = obj.f;
81 // Mozilla result, which contradicts IE and the ECMA spec: expect = obj.y;
86 actual = obj.g;
92 expect = obj.y;
regress-191276.js 82 var obj = {a: 'aaa'};
85 actual = F.call(obj, 'a');
90 actual = F.apply(obj, ['a']);
  /external/webkit/WebCore/bindings/js/
JSSVGPathSegListCustom.cpp 59 SVGPathSeg* obj = WTF::getPtr(list->initialize(newItem, ec)); local
62 JSValue result = toJS(exec, globalObject(), obj, context);
81 SVGPathSeg* obj = WTF::getPtr(list->getItem(index, ec)); local
84 JSValue result = toJS(exec, globalObject(), obj, context);
146 RefPtr<SVGPathSeg> obj(list->removeItem(index, ec));
149 JSValue result = toJS(exec, globalObject(), obj.get(), context);
  /external/webkit/WebCore/bindings/v8/
V8NPUtils.cpp 101 NPObject* obj = NPVARIANT_TO_OBJECT(*variant); local
102 if (obj->_class == npScriptObjectClass)
103 return reinterpret_cast<V8NPObject*>(obj)->v8Object;
104 return createV8ObjectForNPObject(obj, npobject);
  /external/webkit/WebCore/bridge/
npruntime.cpp 115 NPObject* obj; local
117 obj = aClass->allocate(npp, aClass);
119 obj = (NPObject*)malloc(sizeof(NPObject));
120 if (!obj)
122 obj->_class = aClass;
123 obj->referenceCount = 1;
125 return obj;
131 NPObject* _NPN_RetainObject(NPObject* obj)
133 ASSERT(obj);
135 if (obj)
    [all...]
  /external/webkit/WebKit/android/jni/
WebCoreJni.h 48 jobject obj = m_obj; local
50 return obj;
56 AutoJObject(JNIEnv* env, jobject obj)
58 , m_obj(obj) {}
  /hardware/ti/wlan/wl1271/platforms/os/common/build/linux/
Makefile 77 obj-m = tiwlan_drv.o
  /system/wlan/ti/wilink_6_1/platforms/os/common/build/linux/
Makefile 77 obj-m = tiwlan_drv.o
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-003.js 22 * SUMMARY: Testing obj.prop getter/setter
28 var summary = 'Testing obj.prop getter/setter';
38 var obj = {};
44 obj = new Object();
45 obj.nameSETS = 0;
46 obj.nameGETS = 0;
47 obj.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
48 obj.name getter = function() {this.nameGETS++; return this._name;}
51 actual = [obj.nameSETS,obj.nameGETS]
40 obj = new Object(); class
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
ASN1TaggedObject.java 16 DEREncodable obj = null; field in class:ASN1TaggedObject
19 ASN1TaggedObject obj,
24 return (ASN1TaggedObject)obj.getObject();
31 Object obj)
33 if (obj == null || obj instanceof ASN1TaggedObject)
35 return (ASN1TaggedObject)obj;
45 * @param obj the tagged object.
49 DEREncodable obj)
53 this.obj = obj
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/qualified/
Iso4217CurrencyCode.java 28 DEREncodable obj; field in class:Iso4217CurrencyCode
32 Object obj)
34 if (obj == null || obj instanceof Iso4217CurrencyCode)
36 return (Iso4217CurrencyCode)obj;
39 if (obj instanceof DERInteger)
41 DERInteger numericobj = DERInteger.getInstance(obj);
46 if (obj instanceof DERPrintableString)
48 DERPrintableString alphabetic = DERPrintableString.getInstance(obj);
61 obj = new DERInteger(numeric)
    [all...]
TypeOfBiometricData.java 29 DEREncodable obj; field in class:TypeOfBiometricData
31 public static TypeOfBiometricData getInstance(Object obj)
33 if (obj == null || obj instanceof TypeOfBiometricData)
35 return (TypeOfBiometricData)obj;
38 if (obj instanceof DERInteger)
40 DERInteger predefinedBiometricTypeObj = DERInteger.getInstance(obj);
45 else if (obj instanceof DERObjectIdentifier)
47 DERObjectIdentifier BiometricDataID = DERObjectIdentifier.getInstance(obj);
58 obj = new DERInteger(predefinedBiometricType)
    [all...]
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
GuardedObjectTest.java 62 Object obj = null; local
63 GuardedObject go = new GuardedObject(obj, null);
66 obj = "ewte rtw3456";
67 go = new GuardedObject(obj, null);
68 assertEquals(obj, go.getObject());
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
LineEvent.java 58 Type obj = (Type) another; local
59 return name == null ? obj.name == null : name.equals(obj.name);

Completed in 1206 milliseconds

1 23 4 5 6 7 8 91011>>