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

1 2 3

  /external/chromium_org/extensions/browser/api/declarative/
deduping_factory.h 45 (* FactoryMethod)(const std::string& instance_type,
60 // per instance_type. If we find a match within the cache, the factory reuses
66 void RegisterFactoryMethod(const std::string& instance_type,
70 scoped_refptr<const BaseClassT> Instantiate(const std::string& instance_type,
103 const std::string& instance_type,
106 DCHECK(!ContainsKey(factory_methods_, instance_type));
107 factory_methods_[instance_type] = factory_method;
109 parameterized_types_.insert(instance_type);
114 const std::string& instance_type,
119 factory_methods_.find(instance_type);
    [all...]
  /external/chromium_org/v8/src/heap/
objects-visiting.cc 14 int instance_type, int instance_size) {
15 if (instance_type < FIRST_NONSTRING_TYPE) {
16 switch (instance_type & kStringRepresentationMask) {
18 if ((instance_type & kStringEncodingMask) == kOneByteStringTag) {
25 if (IsShortcutCandidate(instance_type)) {
41 switch (instance_type) {
162 if (instance_type == ALLOCATION_SITE_TYPE) {
objects-visiting.h 107 static VisitorId GetVisitorId(int instance_type, int instance_size);
110 return GetVisitorId(map->instance_type(), map->instance_size());
296 ->SeqOneByteStringSize(map->instance_type());
301 ->SeqTwoByteStringSize(map->instance_type());
heap.cc     [all...]
heap-inl.h 393 InstanceType type = object->map()->instance_type();
443 InstanceType type = obj->map()->instance_type();
542 !AllocationSite::CanTrack(object->map()->instance_type()))
  /external/chromium_org/chrome/browser/extensions/api/declarative_content/
content_condition.cc 81 std::string instance_type; local
82 if (!condition_dict->GetString(keys::kInstanceType, &instance_type)) {
86 if (instance_type != keys::kPageStateMatcherType) {
content_action.cc 290 std::string instance_type; local
296 &instance_type) ||
297 instance_type != std::string(keys::kRequestContentScript))
478 std::string instance_type; local
479 if (!Validate(json_action, error, bad_message, &action_dict, &instance_type))
484 factory_method_iter = factory.factory_methods.find(instance_type);
489 *error = base::StringPrintf(kInvalidInstanceTypeError, instance_type.c_str());
497 std::string* instance_type) {
500 (*action_dict)->GetString(keys::kInstanceType, instance_type));
content_action.h 86 std::string* instance_type);
  /external/chromium_org/extensions/browser/api/declarative_webrequest/
webrequest_condition.cc 140 std::string instance_type; local
141 if (!condition_dict->GetString(keys::kInstanceTypeKey, &instance_type)) {
145 if (instance_type != keys::kRequestMatcherType) {
webrequest_action.cc 117 const std::string& instance_type,
125 const std::string& instance_type,
140 const std::string& instance_type,
166 const std::string& instance_type,
190 const std::string& instance_type,
207 const std::string& instance_type,
231 const std::string& instance_type,
255 const std::string& instance_type,
282 const std::string& instance_type,
295 if (instance_type == keys::kAddRequestCookieType
527 std::string instance_type; local
    [all...]
webrequest_condition_attribute.h 93 const std::string& instance_type,
  /external/chromium_org/v8/src/
allocation-site-scopes.cc 64 if (activated_ && AllocationSite::CanTrack(object->map()->instance_type())) {
field-index-inl.h 32 DCHECK(map->instance_type() >= FIRST_NONSTRING_TYPE);
objects-inl.h 62 HeapObject::cast(this)->map()->instance_type() == instancetype; \
177 && HeapObject::cast(this)->map()->instance_type() < FIRST_NONSTRING_TYPE;
193 && HeapObject::cast(this)->map()->instance_type() >= FIRST_SPEC_OBJECT_TYPE;
199 InstanceType type = HeapObject::cast(this)->map()->instance_type();
211 uint32_t type = HeapObject::cast(this)->map()->instance_type();
309 : type_(str->map()->instance_type()) {
316 : type_(map->instance_type()) {
338 uint32_t type = map()->instance_type();
344 uint32_t type = map()->instance_type();
350 uint32_t type = map()->instance_type();
4323 InstanceType Map::instance_type() { function in class:v8::internal::Map
    [all...]
objects-debug.cc 43 InstanceType instance_type = map()->instance_type(); local
45 if (instance_type < FIRST_NONSTRING_TYPE) {
50 switch (instance_type) {
236 HeapObject::cast(this)->map()->instance_type() ==
297 CHECK(FIRST_TYPE <= instance_type() && instance_type() <= LAST_TYPE);
317 CHECK_EQ(StaticVisitorBase::GetVisitorId(instance_type(), instance_size()),
    [all...]
code-stubs-hydrogen.cc 1707 HValue* instance_type = local
    [all...]
objects-printer.cc 40 InstanceType instance_type = map()->instance_type(); local
43 if (instance_type < FIRST_NONSTRING_TYPE) {
48 switch (instance_type) {
189 os << "UNKNOWN TYPE " << map()->instance_type();
434 os << " - type: " << TypeToString(instance_type()) << "\n";
    [all...]
types-inl.h 33 i::HeapObject::cast(value)->map()->instance_type() == HEAP_NUMBER_TYPE) {
  /external/llvm/bindings/python/llvm/
common.py 85 def __get__(self, instance, instance_type=None):
  /external/chromium_org/v8/src/ic/
ic-compiler.cc 105 receiver_map->instance_type() == JS_ARRAY_TYPE,
388 bool is_js_array = receiver_map->instance_type() == JS_ARRAY_TYPE;
395 } else if (receiver_map->instance_type() < FIRST_JS_RECEIVER_TYPE) {
426 bool is_jsarray = receiver_map->instance_type() == JS_ARRAY_TYPE;
handler-compiler.cc 384 if ((receiver_map->instance_type() & kNotStringTag) == 0) {
386 } else if (receiver_map->instance_type() < FIRST_JS_RECEIVER_TYPE) {
389 bool is_js_array = receiver_map->instance_type() == JS_ARRAY_TYPE;
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.cc 763 Register instance_type) {
765 movzx_b(instance_type, FieldOperand(map, Map::kInstanceTypeOffset));
767 test(instance_type, Immediate(kIsNotStringMask));
774 Register instance_type) {
776 movzx_b(instance_type, FieldOperand(map, Map::kInstanceTypeOffset));
777 cmpb(instance_type, static_cast<uint8_t>(LAST_NAME_TYPE));
3235 Register instance_type = ecx; local
    [all...]
macro-assembler-ia32.h 421 // register map contains the object map and the register instance_type
422 // contains the instance_type. The registers map and instance_type can be the
424 // registers map and instance_type can be the same as heap_object.
427 Register instance_type);
430 // register map contains the object map and the register instance_type
431 // contains the instance_type. The registers map and instance_type can be the
433 // registers map and instance_type can be the same as heap_object.
436 Register instance_type);
    [all...]
  /external/chromium_org/v8/src/x87/
macro-assembler-x87.cc 675 Register instance_type) {
677 movzx_b(instance_type, FieldOperand(map, Map::kInstanceTypeOffset));
679 test(instance_type, Immediate(kIsNotStringMask));
686 Register instance_type) {
688 movzx_b(instance_type, FieldOperand(map, Map::kInstanceTypeOffset));
689 cmpb(instance_type, static_cast<uint8_t>(LAST_NAME_TYPE));
3195 Register instance_type = ecx; local
    [all...]
macro-assembler-x87.h 392 // register map contains the object map and the register instance_type
393 // contains the instance_type. The registers map and instance_type can be the
395 // registers map and instance_type can be the same as heap_object.
398 Register instance_type);
401 // register map contains the object map and the register instance_type
402 // contains the instance_type. The registers map and instance_type can be the
404 // registers map and instance_type can be the same as heap_object.
407 Register instance_type);
    [all...]

Completed in 532 milliseconds

1 2 3