HomeSort by relevance Sort by last modified time
    Searched refs:_class (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/content/child/npapi/
npobject_stub.cc 126 if (npobject_->_class->hasMethod) {
127 *result = npobject_->_class->hasMethod(npobject_, id);
165 if (npobject_->_class->invokeDefault) {
166 return_value = npobject_->_class->invokeDefault(
178 if (npobject_->_class->invoke) {
179 return_value = npobject_->_class->invoke(
209 if (npobject_->_class->hasProperty) {
210 *result = npobject_->_class->hasProperty(npobject_, id);
227 if (npobject_->_class->getProperty) {
228 *result = npobject_->_class->getProperty(npobject_, id, &result_var)
    [all...]
npobject_proxy.cc 45 if (&npclass_proxy_ == object->_class) {
136 return obj->_class->hasMethod(obj, name);
175 return obj->_class->invokeDefault(obj, args, arg_count, np_result);
177 return obj->_class->invoke(obj, name, args, arg_count, np_result);
244 return obj->_class->hasProperty(obj, name);
275 return obj->_class->getProperty(obj, name, np_result);
308 return obj->_class->setProperty(obj, name, value);
337 return obj->_class->removeProperty(obj, name);
358 obj->_class->invalidate(obj);
376 if (obj->_class->structVersion >= NP_CLASS_STRUCT_VERSION_ENUM)
    [all...]
npobject_util.cc 183 if (variant.value.objectValue->_class == NPObjectProxy::npclass()) {
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayType.cpp 58 #define CASE_NEW(_class) \
59 case SkType_##_class: result = new Sk##_class(); break
60 #define CASE_DRAW_NEW(_class) \
61 case SkType_##_class: result = new SkDraw##_class(); break
62 #define CASE_DISPLAY_NEW(_class) \
63 case SkType_##_class: result = new SkDisplay##_class(); break
65 #define CASE_DEBUG_RETURN_NIL(_class) \
    [all...]
SkMemberInfo.h 204 #define DEFINE_GET_MEMBER(_class) \
205 const SkMemberInfo* _class::getMember(int index) { \
209 const SkMemberInfo* _class::getMember(const char name[]) { \
213 const int _class::fInfoCount = SK_ARRAY_COUNT(fInfo)
215 #define DEFINE_NO_VIRTUALS_GET_MEMBER(_class) \
216 const int _class::fInfoCount = SK_ARRAY_COUNT(fInfo)
265 #define DEFINE_GET_MEMBER(_class)
266 #define DEFINE_NO_VIRTUALS_GET_MEMBER(_class)
  /external/emma/core/java12/com/vladium/util/exception/
AbstractException.java 187 final Class _class = getClass (); local
191 msg = ExceptionCommon.getMessage (_class, supermsg);
195 msg = ExceptionCommon.getMessage (_class, supermsg, m_arguments);
201 final String className = _class.getName ();
AbstractRuntimeException.java 187 final Class _class = getClass (); local
191 msg = ExceptionCommon.getMessage (_class, supermsg);
195 msg = ExceptionCommon.getMessage (_class, supermsg, m_arguments);
201 final String className = _class.getName ();
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8NPObject.cpp 120 if (npObject->_class->invoke) {
123 retval = npObject->_class->invoke(npObject, identifier, npArgs.get(), numArgs, &result);
127 if (npObject->_class->construct)
128 retval = npObject->_class->construct(npObject, npArgs.get(), numArgs, &result);
131 if (npObject->_class->invokeDefault)
132 retval = npObject->_class->invokeDefault(npObject, npArgs.get(), numArgs, &result);
246 if (npObject->_class->hasProperty && npObject->_class->getProperty && npObject->_class->hasProperty(npObject, identifier)) {
252 if (!npObject->_class->getProperty(npObject, identifier, &result)
    [all...]
NPV8Object.cpp 91 ASSERT(npObject->_class == &V8NPObjectClass);
182 if (npObject->_class != &V8NPObjectClass)
238 if (npObject->_class->invoke)
239 return npObject->_class->invoke(npObject, methodName, arguments, argumentCount, result);
305 if (npObject->_class->invokeDefault)
306 return npObject->_class->invokeDefault(npObject, arguments, argumentCount, result);
416 if (npObject->_class->hasProperty && npObject->_class->getProperty) {
417 if (npObject->_class->hasProperty(npObject, propertyName))
418 return npObject->_class->getProperty(npObject, propertyName, result)
    [all...]
npruntime.cpp 277 npObject->_class = npClass;
312 if (npObject->_class->deallocate)
313 npObject->_class->deallocate(npObject);
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
ActionBarTabsPager.java 94 TabInfo(Class<?> _class, Bundle _args) {
95 clss = _class;
FragmentNestingPagerSupport.java 92 TabInfo(Class<?> _class, Bundle _args) {
93 clss = _class;
FragmentNestingStatePagerSupport.java 92 TabInfo(Class<?> _class, Bundle _args) {
93 clss = _class;
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentTabsPager.java 98 TabInfo(String _tag, Class<?> _class, Bundle _args) {
100 clss = _class;
  /external/chromium_org/third_party/skia/src/xml/
SkJSDisplayable.cpp 95 #define JS_INIT(_prefix, _class) \
96 static JSBool _class##Constructor(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { \
98 jsDisplayable->fDisplayable = new _prefix##_class(); \
103 static JSObject* _class##Init(JSContext *cx, JSObject *obj, JSObject *proto) { \
104 JSObject *newProtoObj = JS_InitClass(cx, obj, proto, &gDisplayableClasses[SkType_##_class], \
105 _class##Constructor, 0, \
108 JS_DefineProperties(cx, newProtoObj, gDisplayableProperties[SkType_##_class]); \
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentTabsFragment.java 104 TabInfo(String _tag, Class<?> _class, Bundle _args) {
106 clss = _class;
  /external/antlr/antlr-3.4/runtime/Python/
xmlrunner.py 31 (self._class, self._method) = test.id().rsplit(".", 1)
62 "class": self._class,
  /external/chromium_org/third_party/npapi/bindings/
npruntime.h 328 NPClass *_class; member in struct:NPObject
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npruntime.h 344 NPClass *_class; member in struct:NPObject
  /external/chromium_org/content/shell/tools/plugin/
PluginObject.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
platform_x11.c 639 if (class_added[visuals[i]._class])
642 class_added[visuals[i]._class] = EGL_TRUE;
645 config_attrs[3] = visuals[i]._class;
    [all...]
  /external/mesa3d/src/egl/drivers/dri2/
platform_x11.c 639 if (class_added[visuals[i]._class])
642 class_added[visuals[i]._class] = EGL_TRUE;
645 config_attrs[3] = visuals[i]._class;
    [all...]
  /external/chromium_org/third_party/libxml/src/
trionan.c 622 * AIX has class() for C, and _class() for C++, which returns the
627 # define TRIO_FPCLASSIFY(n) _class(n)
  /external/libxml2/
trionan.c 622 * AIX has class() for C, and _class() for C++, which returns the
627 # define TRIO_FPCLASSIFY(n) _class(n)
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
prototype-1.7.js 223 var _class = _toString.call(value);
225 switch (_class) {
252 if (_class === ARRAY_CLASS) {
    [all...]

Completed in 3822 milliseconds

1 2