/external/v8/src/ |
api.cc | 240 static inline bool EmptyCheck(const char* location, v8::Handle<v8::Data> obj) { 241 return obj.IsEmpty() ? ReportEmptyHandle(location) : false; 245 static inline bool EmptyCheck(const char* location, const v8::Data* obj) { 246 return (obj == 0) ? ReportEmptyHandle(location) : false; 403 i::Object** V8::GlobalizeReference(i::Object** obj) { 407 i::GlobalHandles::Create(*obj); 419 void V8::ClearWeak(i::Object** obj) { 421 i::GlobalHandles::ClearWeakness(obj); 425 bool V8::IsGlobalNearDeath(i::Object** obj) { 428 return i::GlobalHandles::IsNearDeath(obj); 680 i::Handle<i::FunctionTemplateInfo> obj = local 704 i::Handle<i::SignatureInfo> obj = local 734 i::Handle<i::TypeSwitchInfo> obj = local 743 i::Handle<i::Object> obj = Utils::OpenHandle(*value); local 761 i::Handle<i::CallHandlerInfo> obj = local 782 i::Handle<i::AccessorInfo> obj = i::Factory::NewAccessorInfo(); local 848 i::Handle<i::InterceptorInfo> obj = local 876 i::Handle<i::InterceptorInfo> obj = local 899 i::Handle<i::CallHandlerInfo> obj = local 924 i::Handle<i::ObjectTemplateInfo> obj = local 1344 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1357 i::Handle<i::JSObject> obj = local 1373 i::Handle<i::JSObject> obj = local 1590 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1607 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1624 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1641 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1655 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1672 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1761 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1775 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1792 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1813 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1830 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1847 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1875 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1902 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1920 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1947 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 1974 i::Handle<i::Object> obj = i::SetProperty( local 1995 i::Handle<i::Object> obj = i::ForceSetProperty( local 2013 i::Handle<i::Object> obj = i::ForceDeleteProperty(self, key_obj); local 2255 i::Handle<i::JSObject> obj = Utils::OpenHandle(this); local 2320 i::Handle<i::Object> obj = i::SetProperty( local 3025 i::Handle<i::Object> obj = local 3039 i::Handle<i::Object> obj = local 3049 i::Object* obj = *Utils::OpenHandle(*value); local 3077 i::Handle<i::JSObject> obj = Utils::OpenHandle(this); local 3227 i::Handle<i::String> obj = Utils::OpenHandle(this); local 3253 i::Handle<i::String> obj = Utils::OpenHandle(this); local 3279 i::Handle<i::JSObject> obj = local 3294 i::Handle<i::Object> obj = local 3304 i::Handle<i::Object> obj = Utils::OpenHandle(this); local 3314 i::Handle<i::JSArray> obj = i::Factory::NewJSArray(length); local [all...] |
shell.h | 47 static void PrintObject(v8::Handle<v8::Value> obj);
|
/dalvik/vm/mterp/c/ |
header.c | 344 * Check to see if "obj" is NULL. If so, throw an exception. Assumes the 353 static inline bool checkForNull(Object* obj) 355 if (obj == NULL) { 360 if (!dvmIsValidObject(obj)) { 361 LOGE("Invalid object %p\n", obj); 366 if (obj->clazz == NULL || ((u4) obj->clazz) <= 65536) { 368 LOGE("Invalid object class %p (in %p)\n", obj->clazz, obj); 376 * Check to see if "obj" is NULL. If so, export the PC into the stac [all...] |
/external/apache-http/src/org/apache/http/ |
ProtocolVersion.java | 168 * @param obj the object to compare with 173 public final boolean equals(Object obj) { 174 if (this == obj) { 177 if (!(obj instanceof ProtocolVersion)) { 180 ProtocolVersion that = (ProtocolVersion) obj;
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
BERConstructedOctetString.java | 62 DERObject obj) 64 super(obj); 68 DEREncodable obj) 70 super(obj.getDERObject());
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/ |
ProviderConfigurationPermission.java | 112 Object obj) 114 if (obj == this) 119 if (obj instanceof ProviderConfigurationPermission) 121 ProviderConfigurationPermission other = (ProviderConfigurationPermission)obj;
|
/external/nist-sip/java/javax/sip/address/ |
Address.java | 23 boolean equals(Object obj);
|
/external/stlport/test/eh/ |
gcc-irix.mak | 23 OBJECTS = $(LIST:%.cpp=obj/%.o) $(STAT_MODULE) 59 OBJDIR=obj 64 mkdir obj 66 mkdir obj 68 mkdir obj 97 obj/%.o : %.cpp 106 obj/%.i : %.cpp 122 -rm -fr ${TEST_EXE} *.o */*.o *.rpo *.obj *.out core *~ Templates.DB
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8WorkerCustom.cpp | 74 // Note: it's OK to let this RefPtr go out of scope because we also call setDOMWrapper(), which effectively holds a reference to obj. 76 RefPtr<Worker> obj = Worker::create(toWebCoreString(scriptUrl), context, ec); local 82 V8DOMWrapper::setDOMWrapper(wrapperObject, V8ClassIndex::WORKER, obj.get()); 84 obj->ref(); 85 V8DOMWrapper::setJSWrapperForActiveDOMObject(obj.get(), v8::Persistent<v8::Object>::New(wrapperObject));
|
/external/webkit/WebCore/bridge/c/ |
c_class.cpp | 85 NPObject* obj = inst->getObject(); local 86 if (_isa->hasMethod && _isa->hasMethod(obj, ident)){ 106 NPObject* obj = inst->getObject(); local 107 if (_isa->hasProperty && _isa->hasProperty(obj, ident)){
|
/external/webkit/WebCore/bridge/jni/jsc/ |
JNIUtilityPrivate.h | 43 bool dispatchJNICall(ExecState*, const void* targetAppletView, jobject obj, bool isStatic, JNIType returnType, jmethodID methodID, jvalue* args, jvalue& result, const char* callingURL, JSValue& exceptionDescription);
|
/external/webkit/WebKit/android/jni/ |
WebCoreResourceLoader.cpp | 64 #define GET_NATIVE_HANDLE(env, obj) ((WebCore::ResourceHandle*)env->GetIntField(obj, gResourceLoader.mObject)) 65 #define SET_NATIVE_HANDLE(env, obj, handle) (env->SetIntField(obj, gResourceLoader.mObject, handle)) 134 void WebCoreResourceLoader::SetResponseHeader(JNIEnv* env, jobject obj, jint nativeResponse, jstring key, jstring val) 151 jint WebCoreResourceLoader::CreateResponse(JNIEnv* env, jobject obj, jstring url, jint statusCode, 182 void WebCoreResourceLoader::ReceivedResponse(JNIEnv* env, jobject obj, jint nativeResponse) 187 WebCore::ResourceHandle* handle = GET_NATIVE_HANDLE(env, obj); 200 void WebCoreResourceLoader::AddData(JNIEnv* env, jobject obj, jbyteArray dataArray, jint length) 207 WebCore::ResourceHandle* handle = GET_NATIVE_HANDLE(env, obj); [all...] |
/external/webkit/WebKit/mac/Plugins/ |
WebPluginContainerPrivate.h | 41 - (id)_webPluginContainerCheckIfAllowedToLoadRequest:(NSURLRequest *)Request inFrame:(NSString *)target resultObject:(id)obj selector:(SEL)selector;
|
/external/yaffs2/yaffs2/ |
Makefile | 5 obj-$(CONFIG_YAFFS_FS) += yaffs.o
|
/frameworks/base/core/java/android/os/ |
RegistrantList.java | 31 add(Handler h, int what, Object obj) 33 add(new Registrant(h, what, obj)); 37 addUnique(Handler h, int what, Object obj) 41 add(new Registrant(h, what, obj));
|
/frameworks/base/core/java/android/os/storage/ |
IMountShutdownObserver.java | 44 public static IMountShutdownObserver asInterface(IBinder obj) { 45 if ((obj == null)) { 48 IInterface iin = (IInterface) obj.queryLocalInterface(DESCRIPTOR); 52 return new IMountShutdownObserver.Stub.Proxy(obj);
|
IObbActionListener.java | 45 public static IObbActionListener asInterface(IBinder obj) { 46 if ((obj == null)) { 49 IInterface iin = (IInterface) obj.queryLocalInterface(DESCRIPTOR); 53 return new IObbActionListener.Stub.Proxy(obj);
|
/libcore/luni/src/main/java/java/net/ |
InterfaceAddress.java | 91 * @param obj the object to be compared. 92 * @return true if 'obj' is equal to this InterfaceAddress, false otherwise. 95 public boolean equals(Object obj) { 96 if (obj == this){ 99 if (!(obj instanceof InterfaceAddress)) { 102 InterfaceAddress rhs = (InterfaceAddress) obj;
|
/libcore/luni/src/main/java/java/text/ |
DecimalFormatSymbols.java | 173 DecimalFormatSymbols obj = (DecimalFormatSymbols) object; local 174 return currency.equals(obj.currency) && 175 currencySymbol.equals(obj.currencySymbol) && 176 decimalSeparator == obj.decimalSeparator && 177 digit == obj.digit && 178 exponentSeparator.equals(obj.exponentSeparator) && 179 groupingSeparator == obj.groupingSeparator && 180 infinity.equals(obj.infinity) && 181 intlCurrencySymbol.equals(obj.intlCurrencySymbol) && 182 minusSign == obj.minusSign & [all...] |
/libcore/luni/src/main/java/javax/crypto/spec/ |
RC5ParameterSpec.java | 174 * @param obj 180 public boolean equals(Object obj) { 181 if (obj == this) { 184 if (!(obj instanceof RC5ParameterSpec)) { 187 RC5ParameterSpec ps = (RC5ParameterSpec) obj;
|
SecretKeySpec.java | 164 * @param obj 170 public boolean equals(Object obj) { 171 if (obj == this) { 174 if (!(obj instanceof SecretKeySpec)) { 177 SecretKeySpec ks = (SecretKeySpec) obj;
|
/libcore/luni/src/main/java/org/apache/xml/serializer/ |
SerializerFactory.java | 133 Object obj = cls.newInstance(); local 135 if (obj instanceof SerializationHandler) 147 if (obj instanceof ContentHandler) 160 sh.setContentHandler( (ContentHandler) obj);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/ |
mixer.h | 113 void snd_mixer_set_callback(snd_mixer_t *obj, snd_mixer_callback_t val); 114 void * snd_mixer_get_callback_private(const snd_mixer_t *obj); 115 void snd_mixer_set_callback_private(snd_mixer_t *obj, void * val); 116 unsigned int snd_mixer_get_count(const snd_mixer_t *obj); 121 void snd_mixer_elem_set_callback(snd_mixer_elem_t *obj, snd_mixer_elem_callback_t val); 122 void * snd_mixer_elem_get_callback_private(const snd_mixer_elem_t *obj); 123 void snd_mixer_elem_set_callback_private(snd_mixer_elem_t *obj, void * val); 124 snd_mixer_elem_type_t snd_mixer_elem_get_type(const snd_mixer_elem_t *obj); 151 void snd_mixer_class_free(snd_mixer_class_t *obj); 237 int snd_mixer_selem_has_playback_channel(snd_mixer_elem_t *obj, snd_mixer_selem_channel_id_t channel) [all...] |
/system/core/include/sysutils/ |
SocketListener.h | 47 static void *threadStart(void *obj);
|
/external/openssl/crypto/objects/ |
obj_dat.c | 86 DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, obj); 96 ASN1_OBJECT *obj; member in struct:added_obj_st 120 a=ca->obj; 155 a=ca->obj; 156 b=cb->obj; 189 a->obj->nid=0; 190 a->obj->flags|=ASN1_OBJECT_FLAG_DYNAMIC| 196 { a->obj->nid++; } 200 if (--a->obj->nid == 0) 201 ASN1_OBJECT_free(a->obj); 630 ASN1_OBJECT *obj; local [all...] |