HomeSort by relevance Sort by last modified time
    Searched defs:ObjectRegistry (Results 1 - 4 of 4) sorted by null

  /art/runtime/jdwp/
object_registry.h 61 class ObjectRegistry {
63 ObjectRegistry();
object_registry.cc 34 ObjectRegistry::ObjectRegistry()
35 : lock_("ObjectRegistry lock", kJdwpObjectRegistryLock), next_id_(1) {
38 JDWP::RefTypeId ObjectRegistry::AddRefType(mirror::Class* c) {
42 JDWP::RefTypeId ObjectRegistry::AddRefType(Handle<mirror::Class> c_h) {
46 JDWP::ObjectId ObjectRegistry::Add(mirror::Object* o) {
57 JDWP::ObjectId ObjectRegistry::Add(Handle<T> obj_h) {
68 JDWP::ObjectId ObjectRegistry::Add(Handle<mirror::Object> obj_h);
73 JDWP::ObjectId ObjectRegistry::Add(Handle<mirror::Throwable> obj_h);
76 JDWP::ObjectId ObjectRegistry::InternalAdd(Handle<T> obj_h)
    [all...]
  /external/opencv3/modules/flann/include/opencv2/flann/
object_factory.h 49 typedef std::map<UniqueIdType, ObjectCreator> ObjectRegistry;
71 typename ObjectRegistry::const_iterator iter = object_registry.find(id);
86 ObjectRegistry object_registry;
  /external/replicaisland/src/com/replica/replicaisland/
ObjectRegistry.java 26 * - The only object that is always guaranteed to be valid is the ObjectRegistry itself.
27 * - There may be more than one ObjectRegistry, and there may be more than one instance of any of
28 * the systems managed by ObjectRegistry allocated at once. For example, separate threads may
29 * maintain their own separate ObjectRegistry instances.
31 public class ObjectRegistry extends BaseObject {
63 public ObjectRegistry() {

Completed in 142 milliseconds