HomeSort by relevance Sort by last modified time
    Searched full:hasmethod (Results 1 - 25 of 54) sorted by null

1 2 3

  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
ApiHelper.java 69 public static final boolean HAS_SET_DEFALT_BUFFER_SIZE = hasMethod(
73 public static final boolean HAS_RELEASE_SURFACE_TEXTURE = hasMethod(
92 hasMethod(View.class, "setSystemUiVisibility", int.class);
101 hasMethod(Camera.class, "setFaceDetectionListener", listenerClass) &&
102 hasMethod(Camera.class, "startFaceDetection") &&
103 hasMethod(Camera.class, "stopFaceDetection") &&
104 hasMethod(Camera.Parameters.class, "getMaxNumDetectedFaces");
111 hasMethod(DevicePolicyManager.class, "getCameraDisabled", ComponentName.class);
220 private static boolean hasMethod(String className, String methodName,
231 private static boolean hasMethod(
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidClassTest.java 176 assertTrue(hasMethod(methods, ".foo("));
179 assertTrue(hasMethod(methods, ".foo("));
180 assertTrue(hasMethod(methods, ".bar("));
183 assertTrue(hasMethod(methods, ".foo("));
184 assertTrue(hasMethod(methods, ".bar("));
186 assertTrue(hasMethod(methods, ".gabba("));
187 assertTrue(hasMethod(methods, ".hey("));
189 assertTrue(hasMethod(methods, ".toString("));
192 private boolean hasMethod(Method[] methods, String signature) {
  /external/webkit/Source/WebCore/bridge/c/
c_class.cpp 89 if (_isa->hasMethod && _isa->hasMethod(obj, ident)){
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPPSetWindowCalledDuringDestruction.cpp 42 bool hasMethod(NPIdentifier);
115 bool NPPSetWindowCalledDuringDestruction::ScriptObject::hasMethod(NPIdentifier methodName)
NPRuntimeRemoveProperty.cpp 41 bool hasMethod(NPIdentifier methodName)
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPObjectMessageReceiver.messages.in 27 HasMethod(WebKit::NPIdentifierData methodName) -> (bool returnValue)
NPObjectProxy.cpp 94 bool NPObjectProxy::hasMethod(NPIdentifier methodName)
103 if (!m_npRemoteObjectMap->connection()->sendSync(Messages::NPObjectMessageReceiver::HasMethod(methodNameData), Messages::NPObjectMessageReceiver::HasMethod::Reply(returnValue), m_npObjectID))
302 return toNPObjectProxy(npObject)->hasMethod(methodName);
NPObjectMessageReceiver.cpp 64 void NPObjectMessageReceiver::hasMethod(const NPIdentifierData& methodNameData, bool& returnValue)
66 if (!m_npObject->_class->hasMethod) {
71 returnValue = m_npObject->_class->hasMethod(m_npObject, methodNameData.createNPIdentifier());
NPObjectMessageReceiver.h 60 void hasMethod(const NPIdentifierData&, bool& returnValue);
NPObjectProxy.h 64 bool hasMethod(NPIdentifier methodName);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginTest.h 46 DEFINE_HAS_MEMBER_CHECK(hasMethod, bool, (NPIdentifier methodName));
124 bool hasMethod(NPIdentifier methodName)
179 return static_cast<T*>(npObject)->hasMethod(methodName);
  /external/chromium/webkit/glue/
cpp_bound_class.cc 93 static bool hasMethod(NPObject *obj, NPIdentifier ident);
122 CppNPObject::hasMethod,
143 /* static */ bool CppNPObject::hasMethod(NPObject* np_obj,
146 return obj->bound_class->HasMethod(ident);
194 bool CppBoundClass::HasMethod(NPIdentifier ident) const {
cpp_bound_class.h 162 bool HasMethod(NPIdentifier ident) const;
cpp_variant.cc 255 if (WebBindings::hasMethod(NULL, np_object, method_name)) {
  /external/doclava/src/com/google/doclava/
DoclavaDiff.java 91 * packages.0.classes.0.methods.0.sites.0.hasMethod = 1
93 * packages.0.classes.0.methods.0.sites.1.hasMethod = 0
171 data.setValue(siteBase + ".hasMethod", "0");
177 data.setValue(siteBase + ".hasMethod", "1");
180 data.setValue(siteBase + ".hasMethod", "0");
  /external/webkit/Tools/DumpRenderTree/chromium/
CppBoundClass.cpp 119 static bool hasMethod(NPObject*, NPIdentifier);
146 CppNPObject::hasMethod,
169 bool CppNPObject::hasMethod(NPObject* npObj, NPIdentifier ident)
172 return obj->boundClass->hasMethod(ident);
214 bool CppBoundClass::hasMethod(NPIdentifier ident) const
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.cpp 245 if (m_npObject->_class->hasMethod && m_npObject->_class->hasMethod(m_npObject, npIdentifier)) {
271 if (m_npObject->_class->hasMethod && m_npObject->_class->hasMethod(m_npObject, npIdentifier)) {
NPJSObject.h 67 bool hasMethod(NPIdentifier methodName);
NPJSObject.cpp 90 bool NPJSObject::hasMethod(NPIdentifier methodName)
341 return toNPJSObject(npObject)->hasMethod(methodName);
  /external/clang/include/clang/AST/
ExprObjC.h 867 /// to (when \c HasMethod is zero) or an \c ObjCMethodDecl pointer
893 unsigned HasMethod : 1;
    [all...]
  /external/doclava/res/assets/templates/
diff.cs 176 <?cs if:site.hasMethod ?>
  /external/webkit/Source/WebCore/plugins/symbian/
PluginPackageSymbian.cpp 157 m_browserFuncs.hasmethod = _NPN_HasProperty;
  /external/webkit/Source/WebKit/chromium/public/
WebBindings.h 80 WEBKIT_API static bool hasMethod(NPP, NPObject*, NPIdentifier method);
  /external/webkit/Source/WebCore/bindings/v8/
V8NPObject.cpp 201 if (key->IsString() && npObject->_class->hasMethod && npObject->_class->hasMethod(npObject, identifier)) {
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.cpp 445 if (o->_class->hasMethod)
446 return o->_class->hasMethod(o, methodName);

Completed in 1068 milliseconds

1 2 3