OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsDataDescriptor
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/
property-descriptor.h
35
static bool
IsDataDescriptor
(PropertyDescriptor* desc) {
41
return !IsAccessorDescriptor(desc) && !
IsDataDescriptor
(desc);
property-descriptor.cc
115
PropertyDescriptor::
IsDataDescriptor
(this)));
266
// 4. If either IsGenericDescriptor(Desc) or
IsDataDescriptor
(Desc) is true,
objects.cc
879
// 10.a. If
IsDataDescriptor
(targetDesc) and targetDesc.[[Configurable]] is
883
bool inconsistent = PropertyDescriptor::
IsDataDescriptor
(&target_desc) &&
[
all
...]
/external/v8/src/js/
v8natives.js
221
function
IsDataDescriptor
(desc) {
230
return !(IsAccessorDescriptor(desc) ||
IsDataDescriptor
(desc));
235
return IsAccessorDescriptor(desc) &&
IsDataDescriptor
(desc);
313
if (IsGenericDescriptor(desc) ||
IsDataDescriptor
(desc)) {
546
IsDataDescriptor
(desc) ==
IsDataDescriptor
(current)) &&
575
if (
IsDataDescriptor
(current) !=
IsDataDescriptor
(desc)) {
583
if (
IsDataDescriptor
(current) &&
IsDataDescriptor
(desc))
[
all
...]
Completed in 185 milliseconds