Home
last modified time | relevance | path

Searched refs:is_callable (Results 1 – 9 of 9) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
Dserver.py40 is_callable = False
45 is_callable = True
49 if is_callable:
/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/
Dmox.py798 is_callable = hasattr(self._class_to_mock, '__call__')
799 if not is_callable:
/external/chromium-trace/catapult/third_party/mox3/mox3/
Dmox.py798 is_callable = hasattr(self._class_to_mock, '__call__')
799 if not is_callable:
/external/v8/src/
Dobjects-debug.cc572 CHECK(map()->is_callable()); in JSFunctionVerify()
840 CHECK_EQ(target()->IsCallable(), map()->is_callable()); in JSProxyVerify()
Dobjects-printer.cc462 if (is_callable()) os << " - callable\n"; in MapPrint()
Dobjects-inl.h198 return Object::IsHeapObject() && HeapObject::cast(this)->map()->is_callable(); in IsCallable()
4638 bool Map::is_callable() const { in is_callable() function
Dbuiltins.cc3586 DCHECK(obj->map()->is_callable()); in HandleApiCallAsFunctionOrConstructor()
Dobjects.h5586 inline bool is_callable() const;
/external/v8/src/crankshaft/
Dhydrogen-instructions.cc2721 bit_field_ = IsCallableField::update(bit_field_, map->is_callable()); in HConstant()