Searched defs:getter (Results 76 - 100 of 109) sorted by relevance

12345

/external/chromium_org/v8/src/mips/
H A Dstub-cache-mips.cc963 ASSERT(!holder->GetNamedInterceptor()->getter()->IsUndefined());
1438 Address getter_address = v8::ToCData<Address>(callback->getter());
1500 ASSERT(!interceptor_holder->GetNamedInterceptor()->getter()->IsUndefined());
1513 compile_followup_inline = callback->getter() != NULL &&
3047 Handle<JSFunction> getter) {
3056 if (!getter.is_null()) {
3057 // Call the JavaScript getter with the receiver on the stack.
3060 ParameterCount expected(getter);
3061 __ InvokeFunction(getter, expected, actual,
3046 GenerateLoadViaGetter(MacroAssembler* masm, Handle<JSFunction> getter) argument
/external/chromium_org/v8/src/
H A Druntime.cc1012 #define TYPED_ARRAY_GETTER(getter, accessor) \
1013 RUNTIME_FUNCTION(MaybeObject*, Runtime_TypedArrayGet##getter) { \
1803 Object* getter = accessors->GetComponent(ACCESSOR_GETTER); local
1805 if (!getter->IsMap() && CheckPropertyAccess(*obj, *name, v8::ACCESS_GET)) {
1807 elms->set(GETTER_INDEX, getter);
4947 CONVERT_ARG_HANDLE_CHECKED(Object, getter, 2);
4948 RUNTIME_ASSERT(IsValidAccessor(getter));
4956 JSObject::DefineAccessor(obj, name, getter, setter, attr);
10636 // Items 2-4 are only filled if the property has either a getter or a setter
10712 // getter an
[all...]
H A Dheap-snapshot-generator.cc1229 SetInternalReference(accessors, entry, "getter", accessors->getter(),
1400 Object* getter = accessors->getter(); local
1401 if (!getter->IsOddball()) {
1402 SetPropertyReference(js_obj, entry, String::cast(key), getter, "get %s");
H A Dmirror-debugger.js1248 * Returns whether this property has a getter defined through __defineGetter__.
1249 * @return {booolean} True if this property has a getter
1266 * Returns the getter for this property defined through __defineGetter__.
1267 * @return {Mirror} FunctionMirror reflecting the getter function or
1268 * UndefinedMirror if there is no getter for this property
1270 PropertyMirror.prototype.getter = function() {
H A Dapi.cc1328 AccessorGetterCallback getter = local
1330 SET_FIELD_WRAPPED(obj, set_getter, getter);
1436 NamedPropertyGetterCallback getter = local
1438 if (getter != 0) SET_FIELD_WRAPPED(obj, set_getter, getter);
1484 IndexedPropertyGetterCallback getter = local
1486 if (getter != 0) SET_FIELD_WRAPPED(obj, set_getter, getter);
1589 Getter getter,
1604 name, getter, sette
1586 ObjectTemplateSetAccessor( ObjectTemplate* object_template, v8::Handle<String> name, Getter getter, Setter setter, Data data, AccessControl settings, PropertyAttribute attribute, v8::Handle<AccessorSignature> signature) argument
1611 SetAccessor(v8::Handle<String> name, AccessorGetter getter, AccessorSetter setter, v8::Handle<Value> data, AccessControl settings, PropertyAttribute attribute, v8::Handle<AccessorSignature> signature) argument
1623 SetAccessor(v8::Handle<String> name, AccessorGetterCallback getter, AccessorSetterCallback setter, v8::Handle<Value> data, AccessControl settings, PropertyAttribute attribute, v8::Handle<AccessorSignature> signature) argument
1652 ObjectTemplateSetNamedPropertyHandler( ObjectTemplate* object_template, Getter getter, Setter setter, Query query, Deleter remover, Enumerator enumerator, Handle<Value> data) argument
1680 SetNamedPropertyHandler( NamedPropertyGetter getter, NamedPropertySetter setter, NamedPropertyQuery query, NamedPropertyDeleter remover, NamedPropertyEnumerator enumerator, Handle<Value> data) argument
1692 SetNamedPropertyHandler( NamedPropertyGetterCallback getter, NamedPropertySetterCallback setter, NamedPropertyQueryCallback query, NamedPropertyDeleterCallback remover, NamedPropertyEnumeratorCallback enumerator, Handle<Value> data) argument
1755 ObjectTemplateSetIndexedPropertyHandler( ObjectTemplate* object_template, Getter getter, Setter setter, Query query, Deleter remover, Enumerator enumerator, Handle<Value> data) argument
1783 SetIndexedPropertyHandler( IndexedPropertyGetter getter, IndexedPropertySetter setter, IndexedPropertyQuery query, IndexedPropertyDeleter remover, IndexedPropertyEnumerator enumerator, Handle<Value> data) argument
1795 SetIndexedPropertyHandler( IndexedPropertyGetterCallback getter, IndexedPropertySetterCallback setter, IndexedPropertyQueryCallback query, IndexedPropertyDeleterCallback remover, IndexedPropertyEnumeratorCallback enumerator, Handle<Value> data) argument
3778 ObjectSetAccessor(Object* obj, Handle<String> name, Setter getter, Getter setter, Data data, AccessControl settings, PropertyAttribute attributes) argument
3801 SetAccessor(Handle<String> name, AccessorGetter getter, AccessorSetter setter, v8::Handle<Value> data, AccessControl settings, PropertyAttribute attributes) argument
3812 SetAccessor(Handle<String> name, AccessorGetterCallback getter, AccessorSetterCallback setter, v8::Handle<Value> data, AccessControl settings, PropertyAttribute attributes) argument
8131 InvokeAccessorGetter( v8::Local<v8::String> property, const v8::AccessorInfo& info, v8::AccessorGetter getter) argument
8145 InvokeAccessorGetterCallback( v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Value>& info, v8::AccessorGetterCallback getter) argument
[all...]
H A Dast.h1489 Accessors() : getter(NULL), setter(NULL) { }
1490 Expression* getter; member in struct:v8::internal::ObjectLiteral::Accessors
H A Dhydrogen.cc4021 Handle<JSFunction>* getter,
4025 accessors->getter()->IsJSFunction()) {
4026 *getter = Handle<JSFunction>(JSFunction::cast(accessors->getter()));
5142 Handle<JSFunction> getter; local
5144 if (LookupGetter(map, name, &getter, &holder)) {
5145 load = BuildCallGetter(object, map, getter, holder);
5409 Handle<JSFunction> getter,
5413 return new(zone()) HCallConstantFunction(getter, 1);
5921 Handle<JSFunction> getter; local
4019 LookupGetter(Handle<Map> map, Handle<String> name, Handle<JSFunction>* getter, Handle<JSObject>* holder) argument
5406 BuildCallGetter( HValue* object, Handle<Map> map, Handle<JSFunction> getter, Handle<JSObject> holder) argument
6632 TryInlineGetter(Handle<JSFunction> getter, Property* prop) argument
7597 Handle<JSFunction> getter; local
[all...]
/external/chromium_org/v8/src/x64/
H A Dstub-cache-x64.cc557 ASSERT(!holder->GetNamedInterceptor()->getter()->IsUndefined());
1306 Address getter_address = v8::ToCData<Address>(callback->getter());
1373 ASSERT(!interceptor_holder->GetNamedInterceptor()->getter()->IsUndefined());
1386 compile_followup_inline = callback->getter() != NULL &&
2882 Handle<JSFunction> getter) {
2891 if (!getter.is_null()) {
2892 // Call the JavaScript getter with the receiver on the stack.
2895 ParameterCount expected(getter);
2896 __ InvokeFunction(getter, expected, actual,
2881 GenerateLoadViaGetter(MacroAssembler* masm, Handle<JSFunction> getter) argument
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest.cc3320 // Sets the OS stack trace getter.
3322 // Does nothing if the input and the current OS stack trace getter are
3323 // the same; otherwise, deletes the old getter and makes the input the
3324 // current getter.
3326 OsStackTraceGetterInterface* getter) {
3327 if (os_stack_trace_getter_ != getter) {
3329 os_stack_trace_getter_ = getter;
3333 // Returns the current OS stack trace getter if it is not NULL;
3335 // getter, and returns it.
3325 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DExtensionAPI.js858 function getter()
866 object.__defineGetter__(oldName, getter);
/external/clang/lib/CodeGen/
H A DCGObjC.cpp577 /// evaluation for the getter.
658 // emission for the getter.
738 /// \brief Generate an Objective-C property getter function.
748 assert(OMD && "Invalid call to generate getter (empty method)");
757 const Expr *getter = propImpl->getGetterCXXConstructor(); local
758 if (!getter) return true;
766 if (getter->isGLValue())
770 if (const CXXConstructExpr *construct = dyn_cast<CXXConstructExpr>(getter))
775 assert(isa<ExprWithCleanups>(getter));
875 CGM.ErrorUnsupported(propImpl, "Obj-C getter requirin
[all...]
/external/v8/src/
H A Dmirror-debugger.js1182 * Returns whether this property has a getter defined through __defineGetter__.
1183 * @return {booolean} True if this property has a getter
1200 * Returns the getter for this property defined through __defineGetter__.
1201 * @return {Mirror} FunctionMirror reflecting the getter function or
1202 * UndefinedMirror if there is no getter for this property
1204 PropertyMirror.prototype.getter = function() {
H A Dast.h1370 Accessors() : getter(NULL), setter(NULL) { }
1371 Expression* getter; member in struct:v8::internal::ObjectLiteral::Accessors
H A Dapi.cc1046 AccessorGetter getter,
1052 ASSERT(getter != NULL);
1053 SET_FIELD_WRAPPED(obj, set_getter, getter);
1068 AccessorGetter getter,
1082 getter, setter, data,
1140 NamedPropertyGetter getter,
1158 if (getter != 0) SET_FIELD_WRAPPED(obj, set_getter, getter);
1171 IndexedPropertyGetter getter,
1189 if (getter !
1044 MakeAccessorInfo( v8::Handle<String> name, AccessorGetter getter, AccessorSetter setter, v8::Handle<Value> data, v8::AccessControl settings, v8::PropertyAttribute attributes) argument
1066 AddInstancePropertyAccessor( v8::Handle<String> name, AccessorGetter getter, AccessorSetter setter, v8::Handle<Value> data, v8::AccessControl settings, v8::PropertyAttribute attributes) argument
1139 SetNamedInstancePropertyHandler( NamedPropertyGetter getter, NamedPropertySetter setter, NamedPropertyQuery query, NamedPropertyDeleter remover, NamedPropertyEnumerator enumerator, Handle<Value> data) argument
1170 SetIndexedInstancePropertyHandler( IndexedPropertyGetter getter, IndexedPropertySetter setter, IndexedPropertyQuery query, IndexedPropertyDeleter remover, IndexedPropertyEnumerator enumerator, Handle<Value> data) argument
1263 SetAccessor(v8::Handle<String> name, AccessorGetter getter, AccessorSetter setter, v8::Handle<Value> data, AccessControl settings, PropertyAttribute attribute) argument
1286 SetNamedPropertyHandler(NamedPropertyGetter getter, NamedPropertySetter setter, NamedPropertyQuery query, NamedPropertyDeleter remover, NamedPropertyEnumerator enumerator, Handle<Value> data) argument
1356 SetIndexedPropertyHandler( IndexedPropertyGetter getter, IndexedPropertySetter setter, IndexedPropertyQuery query, IndexedPropertyDeleter remover, IndexedPropertyEnumerator enumerator, Handle<Value> data) argument
3054 SetAccessor(Handle<String> name, AccessorGetter getter, AccessorSetter setter, v8::Handle<Value> data, AccessControl settings, PropertyAttribute attributes) argument
[all...]
/external/chromium/testing/gtest/src/
H A Dgtest.cc4451 // Sets the OS stack trace getter.
4453 // Does nothing if the input and the current OS stack trace getter are
4454 // the same; otherwise, deletes the old getter and makes the input the
4455 // current getter.
4457 OsStackTraceGetterInterface* getter) {
4458 if (os_stack_trace_getter_ != getter) {
4460 os_stack_trace_getter_ = getter;
4464 // Returns the current OS stack trace getter if it is not NULL;
4466 // getter, and returns it.
4456 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc4391 // Sets the OS stack trace getter.
4393 // Does nothing if the input and the current OS stack trace getter are
4394 // the same; otherwise, deletes the old getter and makes the input the
4395 // current getter.
4397 OsStackTraceGetterInterface* getter) {
4398 if (os_stack_trace_getter_ != getter) {
4400 os_stack_trace_getter_ = getter;
4404 // Returns the current OS stack trace getter if it is not NULL;
4406 // getter, and returns it.
4396 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest.cc4451 // Sets the OS stack trace getter.
4453 // Does nothing if the input and the current OS stack trace getter are
4454 // the same; otherwise, deletes the old getter and makes the input the
4455 // current getter.
4457 OsStackTraceGetterInterface* getter) {
4458 if (os_stack_trace_getter_ != getter) {
4460 os_stack_trace_getter_ = getter;
4464 // Returns the current OS stack trace getter if it is not NULL;
4466 // getter, and returns it.
4456 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
/external/clang/include/clang-c/
H A DIndex.h5497 const CXIdxEntityInfo *getter; member in struct:__anon15062
/external/gtest/src/
H A Dgtest.cc4451 // Sets the OS stack trace getter.
4453 // Does nothing if the input and the current OS stack trace getter are
4454 // the same; otherwise, deletes the old getter and makes the input the
4455 // current getter.
4457 OsStackTraceGetterInterface* getter) {
4458 if (os_stack_trace_getter_ != getter) {
4460 os_stack_trace_getter_ = getter;
4464 // Returns the current OS stack trace getter if it is not NULL;
4466 // getter, and returns it.
4456 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
/external/llvm/utils/unittest/googletest/
H A Dgtest.cc4419 // Sets the OS stack trace getter.
4421 // Does nothing if the input and the current OS stack trace getter are
4422 // the same; otherwise, deletes the old getter and makes the input the
4423 // current getter.
4425 OsStackTraceGetterInterface* getter) {
4426 if (os_stack_trace_getter_ != getter) {
4428 os_stack_trace_getter_ = getter;
4432 // Returns the current OS stack trace getter if it is not NULL;
4434 // getter, and returns it.
4424 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
/external/mesa3d/src/gtest/src/
H A Dgtest.cc4451 // Sets the OS stack trace getter.
4453 // Does nothing if the input and the current OS stack trace getter are
4454 // the same; otherwise, deletes the old getter and makes the input the
4455 // current getter.
4457 OsStackTraceGetterInterface* getter) {
4458 if (os_stack_trace_getter_ != getter) {
4460 os_stack_trace_getter_ = getter;
4464 // Returns the current OS stack trace getter if it is not NULL;
4466 // getter, and returns it.
4456 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
/external/open-vcdiff/gtest/src/
H A Dgtest.cc4240 // Sets the OS stack trace getter.
4242 // Does nothing if the input and the current OS stack trace getter are
4243 // the same; otherwise, deletes the old getter and makes the input the
4244 // current getter.
4246 OsStackTraceGetterInterface* getter) {
4247 if (os_stack_trace_getter_ != getter) {
4249 os_stack_trace_getter_ = getter;
4253 // Returns the current OS stack trace getter if it is not NULL;
4255 // getter, and returns it.
4245 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
/external/protobuf/gtest/src/
H A Dgtest.cc4209 // Sets the OS stack trace getter.
4211 // Does nothing if the input and the current OS stack trace getter are
4212 // the same; otherwise, deletes the old getter and makes the input the
4213 // current getter.
4215 OsStackTraceGetterInterface* getter) {
4216 if (os_stack_trace_getter_ != getter) {
4218 os_stack_trace_getter_ = getter;
4222 // Returns the current OS stack trace getter if it is not NULL;
4224 // getter, and returns it.
4214 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp907 /// mustSynthesizeSetterGetterMethod - returns true if setter or getter has not
911 bool getter) {
912 return getter ? !IMP->getInstanceMethod(PD->getGetterName())
939 // Generate the 'getter' function.
945 if (mustSynthesizeSetterGetterMethod(IMD, PD, true /*getter*/)) {
1102 // When method is a synthesized one, such as a getter/setter there is
7307 if (mustSynthesizeSetterGetterMethod(IDecl, PD, true /*getter*/))
909 mustSynthesizeSetterGetterMethod(ObjCImplementationDecl *IMP, ObjCPropertyDecl *PD, bool getter) argument
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1009 // Sets the OS stack trace getter.
1011 // Does nothing if the input and the current OS stack trace getter
1012 // are the same; otherwise, deletes the old getter and makes the
1013 // input the current getter.
1014 void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter);
1016 // Returns the current OS stack trace getter if it is not NULL;
1018 // getter, and returns it.
1296 // The OS stack trace getter. Will be deleted when the UnitTest
1298 // but the user can set this field to use a custom getter if that is
6052 // Sets the OS stack trace getter
6057 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
[all...]

Completed in 1018 milliseconds

12345