/third_party/jerryscript/tests/jerry/es2015/ |
H A D | regexp-accessors-descriptors.js | 15 var accessors = [ 'flags', 'global', 'ignoreCase', 'multiline', 'source', 'sticky', 'unicode' ] variable 17 accessors.forEach(function(attr) {
|
/third_party/node/deps/v8/src/codegen/ |
H A D | external-reference-table.cc | 7 #include "src/builtins/accessors.h" 239 static const Address accessors[] = { in AddAccessors() local 251 for (Address addr : accessors) { in AddAccessors()
|
/third_party/node/deps/v8/src/objects/ |
H A D | call-site-info.cc | 454 Handle<Object> accessors = it.GetAccessors(); in GetMethodName() local 455 if (accessors->IsAccessorPair()) { in GetMethodName() 456 Handle<AccessorPair> pair = Handle<AccessorPair>::cast(accessors); in GetMethodName()
|
H A D | keys.cc | 777 Object accessors = descs->GetStrongValue(i); in CollectOwnPropertyNamesInternal() local 778 if (!accessors.IsAccessorInfo()) continue; in CollectOwnPropertyNamesInternal() 779 if (!AccessorInfo::cast(accessors).all_can_read()) continue; in CollectOwnPropertyNamesInternal() 935 Object accessors = raw_dictionary.ValueAt(i); in CollectKeysFromDictionary() local 936 if (!accessors.IsAccessorInfo()) continue; in CollectKeysFromDictionary() 937 if (!AccessorInfo::cast(accessors).all_can_read()) continue; in CollectKeysFromDictionary()
|
H A D | js-objects.cc | 1393 // - handle accessors correctly (which might change the holder's map) in OrdinaryDefineOwnProperty() 1870 Handle<AccessorPair> accessors = in GetOwnPropertyDescriptor() local 1875 desc->set_get(AccessorPair::GetComponent(isolate, native_context, accessors, in GetOwnPropertyDescriptor() 1878 desc->set_set(AccessorPair::GetComponent(isolate, native_context, accessors, in GetOwnPropertyDescriptor() 2536 auto accessors = it->GetAccessors(); in AllCanRead() local 2537 if (accessors->IsAccessorInfo()) { in AllCanRead() 2538 if (AccessorInfo::cast(*accessors).all_can_read()) return true; in AllCanRead() 2621 Handle<Object> accessors = it->GetAccessors(); in AllCanWrite() local 2622 if (accessors->IsAccessorInfo()) { in AllCanWrite() 2623 if (AccessorInfo::cast(*accessors) in AllCanWrite() 3579 Handle<Object> accessors = it->GetAccessors(); DefineOwnPropertyIgnoreAttributes() local [all...] |
H A D | objects.cc | 22 #include "src/builtins/accessors.h" 1545 // AccessorInfo was created by the API or internally (see accessors.cc). in SetPropertyWithAccessor() 2550 Handle<Object> accessors = it->GetAccessors(); in SetPropertyInternal() local 2551 if (accessors->IsAccessorInfo() && in SetPropertyInternal() 2553 AccessorInfo::cast(*accessors).is_special_data_property()) { in SetPropertyInternal() 3273 // accessors.cc.
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory-base.cc | 67 auto accessors = in NewAccessorPair() local 70 accessors.set_getter(read_only_roots().null_value(), SKIP_WRITE_BARRIER); in NewAccessorPair() 71 accessors.set_setter(read_only_roots().null_value(), SKIP_WRITE_BARRIER); in NewAccessorPair() 72 return handle(accessors, isolate()); in NewAccessorPair()
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-interface.cc | 202 // Estimate number of private fields and private instance methods/accessors. in GetPrivateMembers() 222 // Estimate number of static private methods/accessors for classes. in GetPrivateMembers() 1287 i::Handle<i::AccessorPair> accessors = Utils::OpenHandle(this); in getter() local 1288 i::Isolate* isolate = accessors->GetIsolate(); in getter() 1289 i::Handle<i::Object> getter(accessors->getter(), isolate); in getter() 1294 i::Handle<i::AccessorPair> accessors = Utils::OpenHandle(this); in setter() local 1295 i::Isolate* isolate = accessors->GetIsolate(); in setter() 1296 i::Handle<i::Object> setter(accessors->setter(), isolate); in setter()
|
/third_party/node/deps/v8/src/ic/ |
H A D | ic.cc | 12 #include "src/builtins/accessors.h" 1022 Handle<Object> accessors = lookup->GetAccessors(); in ComputeHandler() local 1023 if (accessors->IsAccessorPair()) { in ComputeHandler() 1025 Handle<AccessorPair>::cast(accessors); in ComputeHandler() 1101 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); in ComputeHandler() 2022 Handle<Object> accessors = lookup->GetAccessors(); in ComputeHandler() local 2023 if (accessors->IsAccessorInfo()) { in ComputeHandler() 2024 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); in ComputeHandler() 2030 if (AccessorInfo::cast(*accessors).is_special_data_property() && in ComputeHandler() 2054 } else if (accessors in ComputeHandler() [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | access-info.cc | 10 #include "src/builtins/accessors.h" 561 Handle<AccessorPair> accessors = Handle<AccessorPair>::cast(maybe_accessors); in AccessorAccessInfoHelper() local 563 access_mode == AccessMode::kLoad ? accessors->getter(kAcquireLoad) in AccessorAccessInfoHelper() 564 : accessors->setter(kAcquireLoad)); in AccessorAccessInfoHelper() 819 // TODO(turbofan): Add support for general accessors? in ComputePropertyAccessInfo() 1054 // Check for special JSObject field accessors. in LookupSpecialFieldAccessor()
|
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.cc | 1478 AccessorPair accessors) { in ExtractAccessorPairReferences() 1479 SetInternalReference(entry, "getter", accessors.getter(), in ExtractAccessorPairReferences() 1481 SetInternalReference(entry, "setter", accessors.setter(), in ExtractAccessorPairReferences() 1818 AccessorPair accessors = AccessorPair::cast(callback_obj); in ExtractAccessorPairProperty() 1819 SetPropertyReference(entry, key, accessors, nullptr, field_offset); in ExtractAccessorPairProperty() 1820 Object getter = accessors.getter(); in ExtractAccessorPairProperty() 1824 Object setter = accessors.setter(); in ExtractAccessorPairProperty() 1477 ExtractAccessorPairReferences(HeapEntry* entry, AccessorPair accessors) ExtractAccessorPairReferences() argument
|
H A D | heap-snapshot-generator.h | 426 void ExtractAccessorPairReferences(HeapEntry* entry, AccessorPair accessors);
|
/third_party/skia/third_party/externals/tint/src/writer/spirv/ |
H A D | builder.cc | 1108 // Gather a list of all the member and index accessors that are in this chain. in GenerateAccessorExpression() 1111 std::vector<const ast::Expression*> accessors; in GenerateAccessorExpression() local 1115 accessors.insert(accessors.begin(), source); in GenerateAccessorExpression() 1118 accessors.insert(accessors.begin(), source); in GenerateAccessorExpression() 1132 for (auto* accessor : accessors) { in GenerateAccessorExpression()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | value-mirror.cc | 1607 v8::Local<v8::debug::AccessorPair> accessors = in getPrivateProperties() local 1609 v8::Local<v8::Value> getter = accessors->getter(); in getPrivateProperties() 1610 v8::Local<v8::Value> setter = accessors->setter(); in getPrivateProperties()
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-generator.cc | 2569 // We do this early so that invalid access to private methods or accessors in BuildClassLiteral() 2614 // Collect private accessors into a table to merge the creation of in BuildClassLiteral() 2733 // Define private accessors, using only a single call to the runtime for in BuildClassLiteral() 2736 for (auto accessors : private_accessors.ordered_accessors()) { in BuildClassLiteral() 2739 ClassLiteral::Property* getter = accessors.second->getter; in BuildClassLiteral() 2740 ClassLiteral::Property* setter = accessors.second->setter; in BuildClassLiteral() 3165 // Define accessors, using only a single call to the runtime for each pair in VisitObjectLiteral() 3168 for (auto accessors : accessor_table.ordered_accessors()) { in VisitObjectLiteral() 3172 VisitForRegisterValue(accessors.first, args[1]); in VisitObjectLiteral() 3173 VisitLiteralAccessor(accessors in VisitObjectLiteral() [all...] |
/third_party/node/deps/v8/src/init/ |
H A D | bootstrapper.cc | 11 #include "src/builtins/accessors.h" 988 // Generator functions do not have "caller" or "arguments" accessors. in CreateIteratorMaps() 1091 // Async Generator functions do not have "caller" or "arguments" accessors. in CreateAsyncIteratorMaps() 1224 Handle<AccessorPair> accessors = factory()->NewAccessorPair(); in AddRestrictedFunctionProperties() local 1225 accessors->set_getter(*thrower); in AddRestrictedFunctionProperties() 1226 accessors->set_setter(*thrower); in AddRestrictedFunctionProperties() 1230 accessors); in AddRestrictedFunctionProperties() 1232 accessors); in AddRestrictedFunctionProperties() 3361 // TODO(caitp): alphasort accessors/methods in InitializeGlobal()
|
/third_party/typescript/lib/ |
H A D | typingsInstaller.js | 8353 An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name: diag(1118, ts.DiagnosticCategory.Error, "An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name_1118", "An object literal cannot have multiple get/set accessors with the same name."), 8429 Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name: diag(1207, ts.DiagnosticCategory.Error, "Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name_1207", "Decorators cannot be applied to multiple get/set accessors of the same name."), 9106 get_and_set_accessors_cannot_declare_this_parameters: diag(2784, ts.DiagnosticCategory.Error, "get_and_set_accessors_cannot_declare_this_parameters_2784", "'get' and 'set' accessors cannot declare 'this' parameters."), 9695 Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type: diag(6671, ts.DiagnosticCategory.Message, "Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type_6671", "Enforces using indexed accessors for keys declared using an indexed type."), 9980 Generate_get_and_set_accessors: diag(95046, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_95046", "Generate 'get' and 'set' accessors"), 10050 Generate_get_and_set_accessors_for_all_overriding_properties: diag(95119, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_for_all_overriding_properties_95119", "Generate 'get' and 'set' accessors for all overriding properties"), [all...] |
H A D | tsc.js | 5490 An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name: diag(1118, ts.DiagnosticCategory.Error, "An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name_1118", "An object literal cannot have multiple get/set accessors with the same name."), 5566 Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name: diag(1207, ts.DiagnosticCategory.Error, "Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name_1207", "Decorators cannot be applied to multiple get/set accessors of the same name."), 6243 get_and_set_accessors_cannot_declare_this_parameters: diag(2784, ts.DiagnosticCategory.Error, "get_and_set_accessors_cannot_declare_this_parameters_2784", "'get' and 'set' accessors cannot declare 'this' parameters."), 6832 Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type: diag(6671, ts.DiagnosticCategory.Message, "Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type_6671", "Enforces using indexed accessors for keys declared using an indexed type."), 7117 Generate_get_and_set_accessors: diag(95046, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_95046", "Generate 'get' and 'set' accessors"), 7187 Generate_get_and_set_accessors_for_all_overriding_properties: diag(95119, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_for_all_overriding_properties_95119", "Generate 'get' and 'set' accessors for all overriding properties"), [all...] |
H A D | tsserverlibrary.js | 8372 An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name: diag(1118, ts.DiagnosticCategory.Error, "An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name_1118", "An object literal cannot have multiple get/set accessors with the same name."), 8448 Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name: diag(1207, ts.DiagnosticCategory.Error, "Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name_1207", "Decorators cannot be applied to multiple get/set accessors of the same name."), 9125 get_and_set_accessors_cannot_declare_this_parameters: diag(2784, ts.DiagnosticCategory.Error, "get_and_set_accessors_cannot_declare_this_parameters_2784", "'get' and 'set' accessors cannot declare 'this' parameters."), 9714 Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type: diag(6671, ts.DiagnosticCategory.Message, "Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type_6671", "Enforces using indexed accessors for keys declared using an indexed type."), 9999 Generate_get_and_set_accessors: diag(95046, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_95046", "Generate 'get' and 'set' accessors"), 10069 Generate_get_and_set_accessors_for_all_overriding_properties: diag(95119, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_for_all_overriding_properties_95119", "Generate 'get' and 'set' accessors for all overriding properties"), [all...] |
H A D | typescript.js | 8363 An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name: diag(1118, ts.DiagnosticCategory.Error, "An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name_1118", "An object literal cannot have multiple get/set accessors with the same name."), 8439 Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name: diag(1207, ts.DiagnosticCategory.Error, "Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name_1207", "Decorators cannot be applied to multiple get/set accessors of the same name."), 9116 get_and_set_accessors_cannot_declare_this_parameters: diag(2784, ts.DiagnosticCategory.Error, "get_and_set_accessors_cannot_declare_this_parameters_2784", "'get' and 'set' accessors cannot declare 'this' parameters."), 9705 Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type: diag(6671, ts.DiagnosticCategory.Message, "Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type_6671", "Enforces using indexed accessors for keys declared using an indexed type."), 9990 Generate_get_and_set_accessors: diag(95046, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_95046", "Generate 'get' and 'set' accessors"), 10060 Generate_get_and_set_accessors_for_all_overriding_properties: diag(95119, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_for_all_overriding_properties_95119", "Generate 'get' and 'set' accessors for all overriding properties"), [all...] |
H A D | typescriptServices.js | 8363 An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name: diag(1118, ts.DiagnosticCategory.Error, "An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name_1118", "An object literal cannot have multiple get/set accessors with the same name."), 8439 Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name: diag(1207, ts.DiagnosticCategory.Error, "Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name_1207", "Decorators cannot be applied to multiple get/set accessors of the same name."), 9116 get_and_set_accessors_cannot_declare_this_parameters: diag(2784, ts.DiagnosticCategory.Error, "get_and_set_accessors_cannot_declare_this_parameters_2784", "'get' and 'set' accessors cannot declare 'this' parameters."), 9705 Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type: diag(6671, ts.DiagnosticCategory.Message, "Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type_6671", "Enforces using indexed accessors for keys declared using an indexed type."), 9990 Generate_get_and_set_accessors: diag(95046, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_95046", "Generate 'get' and 'set' accessors"), 10060 Generate_get_and_set_accessors_for_all_overriding_properties: diag(95119, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_for_all_overriding_properties_95119", "Generate 'get' and 'set' accessors for all overriding properties"), [all...] |
H A D | tsserver.js | 8373 An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name: diag(1118, ts.DiagnosticCategory.Error, "An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name_1118", "An object literal cannot have multiple get/set accessors with the same name."), 8449 Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name: diag(1207, ts.DiagnosticCategory.Error, "Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name_1207", "Decorators cannot be applied to multiple get/set accessors of the same name."), 9126 get_and_set_accessors_cannot_declare_this_parameters: diag(2784, ts.DiagnosticCategory.Error, "get_and_set_accessors_cannot_declare_this_parameters_2784", "'get' and 'set' accessors cannot declare 'this' parameters."), 9715 Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type: diag(6671, ts.DiagnosticCategory.Message, "Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type_6671", "Enforces using indexed accessors for keys declared using an indexed type."), 10000 Generate_get_and_set_accessors: diag(95046, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_95046", "Generate 'get' and 'set' accessors"), 10070 Generate_get_and_set_accessors_for_all_overriding_properties: diag(95119, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_for_all_overriding_properties_95119", "Generate 'get' and 'set' accessors for all overriding properties"), [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | 8315 An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name: diag(1118, ts.DiagnosticCategory.Error, "An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name_1118", "An object literal cannot have multiple get/set accessors with the same name."), 8390 Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name: diag(1207, ts.DiagnosticCategory.Error, "Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name_1207", "Decorators cannot be applied to multiple get/set accessors of the same name."), 9046 get_and_set_accessors_cannot_declare_this_parameters: diag(2784, ts.DiagnosticCategory.Error, "get_and_set_accessors_cannot_declare_this_parameters_2784", "'get' and 'set' accessors cannot declare 'this' parameters."), 9622 Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type: diag(6671, ts.DiagnosticCategory.Message, "Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type_6671", "Enforces using indexed accessors for keys declared using an indexed type."), 9902 Generate_get_and_set_accessors: diag(95046, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_95046", "Generate 'get' and 'set' accessors"), 9971 Generate_get_and_set_accessors_for_all_overriding_properties: diag(95119, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_for_all_overriding_properties_95119", "Generate 'get' and 'set' accessors for all overriding properties"), [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |