HomeSort by relevance Sort by last modified time
    Searched refs:classId (Results 1 - 11 of 11) sorted by null

  /external/webkit/WebCore/html/
HTMLObjectElement.h 49 const String& classId() const { return m_classId; }
  /dalvik/vm/jdwp/
JdwpEvent.c 107 RefTypeId classId; /* ClassOnly */
446 pLoc1->classId == pLoc2->classId &&
475 if (!dvmDbgMatchType(basket->classId,
820 basket.classId = pLoc->classId;
824 dvmDescriptorToName(dvmDbgGetClassDescriptor(pLoc->classId));
879 dvmDbgGetMethodName(pLoc->classId, pLoc->methodId),
1043 basket.classId = pThrowLoc->classId;
    [all...]
JdwpHandler.c 65 pLoc->classId = dvmReadObjectId(pBuf);
76 expandBufAddObjectId(pReply, pLoc->classId);
121 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
135 LOGV(" classId=%llx methodId=%x %s.%s\n",
136 classId, methodId,
137 dvmDbgGetClassDescriptor(classId),
138 dvmDbgGetMethodName(classId, methodId));
167 err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId,
804 RefTypeId classId;
807 classId = dvmReadRefTypeId(&buf)
    [all...]
Jdwp.h 83 RefTypeId classId; /* method->clazz */
  /dalvik/hit/src/com/android/hit/
ClassInstance.java 27 public ClassInstance(long id, StackTrace stack, long classId) {
30 mClassId = classId;
HprofParser.java 519 long classId = readId();
521 ClassInstance instance = new ClassInstance(id, stack, classId);
535 long classId = readId();
538 String className = mClassNames.get(classId);
545 array.mClassId = classId;
  /dalvik/vm/
Debugger.h 171 void dvmDbgGetClassInfo(RefTypeId classId, u1* pTypeTag, u4* pStatus,
193 ObjectId dvmDbgCreateObject(RefTypeId classId);
196 bool dvmDbgMatchType(RefTypeId instClassId, RefTypeId classId);
288 RefTypeId classId, MethodId methodId, u4 numArgs, u8* argArray,
Debugger.c 687 void dvmDbgGetClassInfo(RefTypeId classId, u1* pTypeTag, u4* pStatus,
690 ClassObject* clazz = refTypeIdToClassObject(classId);
1161 ObjectId dvmDbgCreateObject(RefTypeId classId)
1163 ClassObject* clazz = refTypeIdToClassObject(classId);
1184 * Determine if "instClassId" is an instance of "classId".
1186 bool dvmDbgMatchType(RefTypeId instClassId, RefTypeId classId)
1189 ClassObject* clazz = refTypeIdToClassObject(classId);
    [all...]
  /external/webkit/WebCore/rendering/
RenderEmbeddedObject.cpp 113 static String serviceTypeForClassId(const String& classId)
115 // Return early if classId is empty (since we won't do anything below).
116 // Furthermore, if classId is null, calling get() below will crash.
117 if (classId.isEmpty())
121 return map->get(classId);
245 // If we still don't have a type, try to map from a specific CLASSID to a type.
247 serviceType = serviceTypeForClassId(objectElement->classId());
  /external/webkit/WebKitTools/DumpRenderTree/qt/
DumpRenderTreeQt.cpp 299 QObject* WebPage::createPlugin(const QString& classId, const QUrl& url, const QStringList& paramNames, const QStringList& paramValues)
306 return loader.createWidget(classId, view());
308 Q_UNUSED(classId);
  /external/webkit/WebKitTools/QtLauncher/
main.cpp 561 QObject* WebPage::createPlugin(const QString &classId, const QUrl&, const QStringList&, const QStringList&)
563 if (classId == "alien_QLabel") {
571 return loader.createWidget(classId, view());
573 Q_UNUSED(classId);

Completed in 155 milliseconds