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

1 2

  /external/bluetooth/glib/gobject/
gtypemodule.c 88 GType instance_type; member in struct:_ModuleInterfaceInfo
99 GType instance_type,
218 GType instance_type,
225 if (interface_info->instance_type == instance_type &&
348 GType instance_type,
353 ModuleInterfaceInfo *module_interface_info = g_type_module_find_interface_info (module, instance_type, interface_type);
446 * @instance_type: type to which to add the interface.
459 GType instance_type,
468 if (g_type_is_a (instance_type, interface_type)
    [all...]
gtypeplugin.c 182 * @instance_type: the #GType of an instantiable type to which the interface
193 GType instance_type,
204 instance_type,
gtypeplugin.h 72 * @instance_type: the #GType of an instantiable type to which the interface
80 GType instance_type,
128 GType instance_type,
gsignal.c 265 GType instance_type; /* 0 for default closure */ member in struct:__anon2052
362 return G_BSEARCH_ARRAY_CMP (c1->instance_type, c2->instance_type);
    [all...]
gtypemodule.h 230 GType instance_type,
gtype.c 196 GType instance_type);
270 GType instance_type; member in struct:_IFaceHolder
883 check_add_interface_L (GType instance_type,
886 TypeNode *node = lookup_type_node_I (instance_type);
897 type_descriptive_name_I (instance_type));
957 GType instance_type,
964 type_descriptive_name_I (instance_type));
4142 GType instance_type = ((GTypeClass *)g_class)->g_type; local
    [all...]
gsignal.h 396 GType instance_type,
399 GType instance_type,
gtype.h     [all...]
  /external/v8/src/
objects-inl.h 140 && HeapObject::cast(this)->map()->instance_type() == HEAP_NUMBER_TYPE;
146 && HeapObject::cast(this)->map()->instance_type() < FIRST_NONSTRING_TYPE;
152 uint32_t type = HeapObject::cast(this)->map()->instance_type();
164 uint32_t type = HeapObject::cast(this)->map()->instance_type();
211 : type_(str->map()->instance_type()) {
218 : type_(map->instance_type()) {
239 uint32_t type = map()->instance_type();
249 uint32_t type = map()->instance_type();
329 && HeapObject::cast(this)->map()->instance_type() == BYTE_ARRAY_TYPE;
335 HeapObject::cast(this)->map()->instance_type() == PIXEL_ARRAY_TYPE
    [all...]
objects-debug.cc 96 InstanceType instance_type = map()->instance_type(); local
99 if (instance_type < FIRST_NONSTRING_TYPE) {
104 switch (instance_type) {
189 PrintF("UNKNOWN TYPE %d", map()->instance_type());
197 InstanceType instance_type = map()->instance_type(); local
199 if (instance_type < FIRST_NONSTRING_TYPE) {
204 switch (instance_type) {
600 PrintF(" - type: %s\n", TypeToString(instance_type()));
    [all...]
mark-compact.cc 237 InstanceType type = map_word.ToMap()->instance_type();
313 obj->IterateBody(map->instance_type(), obj->SizeFromMap(map), this);
363 object->IterateBody(map->instance_type(), object->SizeFromMap(map),
415 map->instance_type() >= FIRST_JS_OBJECT_TYPE &&
416 map->instance_type() <= JS_FUNCTION_TYPE) {
483 if (map->instance_type() >= FIRST_JS_OBJECT_TYPE &&
484 map->instance_type() <= JS_FUNCTION_TYPE) {
609 object->IterateBody(map->instance_type(), object->SizeFromMap(map),
781 return metamap.ToMap()->instance_type() == MAP_TYPE;
803 if (map->instance_type() < FIRST_JS_OBJECT_TYPE) continue
    [all...]
heap.cc     [all...]
heap-inl.h 191 InstanceType type = object->map()->instance_type();
spaces.cc 982 object->IterateBody(map->instance_type(), size, visitor);
    [all...]
factory.cc 772 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
788 switch (instance_type) {
    [all...]
heap.h 340 static Object* AllocateMap(InstanceType instance_type, int instance_size);
343 static Object* AllocatePartialMap(InstanceType instance_type,
    [all...]
heap-profiler.cc 589 InstanceType type = obj->map()->instance_type();
objects.cc 836 switch (map()->instance_type()) {
929 switch (map()->instance_type()) {
1021 InstanceType instance_type = map->instance_type(); local
    [all...]
runtime.cc 669 InstanceType type = templ->map()->instance_type();
    [all...]
  /external/v8/test/cctest/
test-alloc.cc 83 InstanceType instance_type = JS_OBJECT_TYPE; local
86 CHECK(!Heap::AllocateMap(instance_type, instance_size)->IsFailure());
88 CHECK(!Heap::AllocateMap(instance_type, instance_size)->IsFailure());
  /external/v8/src/ia32/
macro-assembler-ia32.h 158 // register map contains the object map and the register instance_type
159 // contains the instance_type. The registers map and instance_type can be the
161 // registers map and instance_type can be the same as heap_object.
164 Register instance_type);
441 void JumpIfInstanceTypeIsNotSequentialAscii(Register instance_type,
macro-assembler-ia32.cc 365 Register instance_type) {
367 movzx_b(instance_type, FieldOperand(map, Map::kInstanceTypeOffset));
369 test(instance_type, Immediate(kIsNotStringMask));
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.h 477 // register map contains the object map and the register instance_type
478 // contains the instance_type. The registers map and instance_type can be the
480 // registers map and instance_type can be the same as heap_object.
483 Register instance_type);
    [all...]
macro-assembler-x64.cc     [all...]
  /external/v8/include/
v8.h     [all...]

Completed in 255 milliseconds

1 2