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

12345

/external/chromium_org/v8/src/ic/arm/
H A Dhandler-compiler-arm.cc21 Handle<JSFunction> getter) {
30 if (!getter.is_null()) {
31 // Call the JavaScript getter with the receiver on the stack.
39 ParameterCount expected(getter);
40 __ InvokeFunction(getter, expected, actual, CALL_FUNCTION,
684 Address getter_address = v8::ToCData<Address>(callback->getter());
698 DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
756 DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
19 GenerateLoadViaGetter( MacroAssembler* masm, Handle<HeapType> type, Register receiver, Handle<JSFunction> getter) argument
/external/chromium_org/v8/src/ic/arm64/
H A Dhandler-compiler-arm64.cc254 Handle<JSFunction> getter) {
258 if (!getter.is_null()) {
259 // Call the JavaScript getter with the receiver on the stack.
267 ParameterCount expected(getter);
268 __ InvokeFunction(getter, expected, actual, CALL_FUNCTION,
733 Address getter_address = v8::ToCData<Address>(callback->getter());
749 DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
806 DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
252 GenerateLoadViaGetter( MacroAssembler* masm, Handle<HeapType> type, Register receiver, Handle<JSFunction> getter) argument
/external/chromium_org/v8/src/ic/mips/
H A Dhandler-compiler-mips.cc21 Handle<JSFunction> getter) {
30 if (!getter.is_null()) {
31 // Call the JavaScript getter with the receiver on the stack.
39 ParameterCount expected(getter);
40 __ InvokeFunction(getter, expected, actual, CALL_FUNCTION,
685 Address getter_address = v8::ToCData<Address>(callback->getter());
699 DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
756 DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
19 GenerateLoadViaGetter( MacroAssembler* masm, Handle<HeapType> type, Register receiver, Handle<JSFunction> getter) argument
/external/chromium_org/v8/src/ic/mips64/
H A Dhandler-compiler-mips64.cc21 Handle<JSFunction> getter) {
30 if (!getter.is_null()) {
31 // Call the JavaScript getter with the receiver on the stack.
39 ParameterCount expected(getter);
40 __ InvokeFunction(getter, expected, actual, CALL_FUNCTION,
685 Address getter_address = v8::ToCData<Address>(callback->getter());
699 DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
756 DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
19 GenerateLoadViaGetter( MacroAssembler* masm, Handle<HeapType> type, Register receiver, Handle<JSFunction> getter) argument
/external/chromium_org/v8/test/mjsunit/
H A Dobject-define-property.js231 // Add a getter - should not touch the setter.
243 // The above should also work if redefining just a getter or setter on
244 // an existing property with both a getter and a setter.
545 // Different getter.
1096 // An object with a getter on the prototype chain.
1097 function getter() { return 111; } function
1105 Object.defineProperty(obj1, "quebec", { get: getter, configurable: true });
1161 { get: getter, set: setter, configurable: true });
1172 { get: getter, set: undefined, configurable: true });
1179 assertTrue(/which has only a getter/
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderStateQueryTests.cpp1319 const char* getter; member in struct:deqp::gles2::Functional::__anon19904::ProgramUniformCase::UniformType
1372 frag << " gl_FragColor = vec4(" << uniformTypes[ndx].getter << ");\n";
/external/chromium_org/chrome/browser/net/
H A Dpredictor.cc187 net::URLRequestContextGetter* getter,
192 url_request_context_getter_ = getter;
216 proxy_advisor_.reset(new ProxyAdvisor(user_prefs, getter));
1324 net::URLRequestContextGetter* getter,
184 InitNetworkPredictor(PrefService* user_prefs, PrefService* local_state, IOThread* io_thread, net::URLRequestContextGetter* getter, ProfileIOData* profile_io_data) argument
1320 InitNetworkPredictor( PrefService* user_prefs, PrefService* local_state, IOThread* io_thread, net::URLRequestContextGetter* getter, ProfileIOData* profile_io_data) argument
/external/chromium_org/v8/src/compiler/
H A Dast-graph-builder.cc944 accessor_table.lookup(key)->second->getter = property->value();
957 VisitForValueOrNull(it->second->getter);
960 Node* getter = environment()->Pop(); local
965 Node* call = NewNode(op, literal, name, getter, setter, attr);
/external/chromium_org/v8/src/ic/
H A Dic.cc228 // If there is a getter, return; otherwise loop to perform the lookup.
230 if (!holder->GetNamedInterceptor()->getter()->IsUndefined()) {
980 DCHECK(!holder->GetNamedInterceptor()->getter()->IsUndefined());
1009 if (v8::ToCData<Address>(info->getter()) == 0) break;
1020 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(),
1022 if (!getter->IsJSFunction()) break;
1024 Handle<JSFunction> function = Handle<JSFunction>::cast(getter);
1240 } else if (!info->getter()->IsUndefined() ||
2557 Address getter_address = v8::ToCData<Address>(interceptor_info->getter());
2558 v8::NamedPropertyGetterCallback getter = local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderStateQueryTests.cpp1553 const char* getter; member in struct:deqp::gles3::Functional::__anon20073::ProgramUniformCase::UniformType
1632 frag << " fragColor = vec4(" << uniformTypes[ndx].getter << ");\n";
/external/chromium_org/v8/src/
H A Dglobals.h543 Object* (*getter)(Isolate* isolate, Object* object, void* data); member in struct:v8::internal::AccessorDescriptor
H A Dheap-snapshot-generator.cc1439 SetInternalReference(executable_accessor_info, entry, "getter",
1440 executable_accessor_info->getter(),
1454 SetInternalReference(accessors, entry, "getter", accessors->getter(),
1712 Object* getter = accessors->getter(); local
1713 if (!getter->IsOddball()) {
1714 SetPropertyReference(js_obj, entry, String::cast(key), getter, "get %s");
H A Dmirror-debugger.js1511 * Returns whether this property has a getter defined through __defineGetter__.
1512 * @return {booolean} True if this property has a getter
1529 * Returns the getter for this property defined through __defineGetter__.
1530 * @return {Mirror} FunctionMirror reflecting the getter function or
1531 * UndefinedMirror if there is no getter for this property
1533 PropertyMirror.prototype.getter = function() {
/external/chromium_org/v8/test/cctest/
H A Dtest-heap.cc3374 static const char* getter = "error.stack"; local
3383 ReleaseStackTraceDataTest(isolate, source1, getter);
3384 ReleaseStackTraceDataTest(isolate, source2, getter);
3385 ReleaseStackTraceDataTest(isolate, source3, getter);
3386 ReleaseStackTraceDataTest(isolate, source4, getter);
H A Dtest-heap-profiler.cc2021 const v8::HeapGraphNode* getter = local
2022 GetProperty(length_accessor, v8::HeapGraphEdge::kInternal, "getter");
2023 CHECK_NE(NULL, getter);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
H A DExtensionAPI.js417 function getter()
425 object.__defineGetter__(oldName, getter);
994 // Override chrome.devtools as a workaround for a error-throwing getter being exposed
/external/clang/lib/CodeGen/
H A DCGObjC.cpp580 /// evaluation for the getter.
661 // emission for the getter.
741 /// \brief Generate an Objective-C property getter function.
751 assert(OMD && "Invalid call to generate getter (empty method)");
760 const Expr *getter = propImpl->getGetterCXXConstructor(); local
761 if (!getter) return true;
769 if (getter->isGLValue())
773 if (const CXXConstructExpr *construct = dyn_cast<CXXConstructExpr>(getter))
778 assert(isa<ExprWithCleanups>(getter));
878 CGM.ErrorUnsupported(propImpl, "Obj-C getter requirin
[all...]
/external/lldb/source/Symbol/
H A DClangASTType.cpp4907 ObjCMethodDecl *getter = ObjCMethodDecl::Create (*m_ast, local
4922 if (getter && metadata)
4923 ClangASTContext::SetMetadata(m_ast, getter, *metadata);
4925 getter->setMethodParams(*m_ast, ArrayRef<ParmVarDecl*>(), ArrayRef<SourceLocation>());
4927 class_interface_decl->addDecl(getter);
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc4844 // Sets the OS stack trace getter.
4846 // Does nothing if the input and the current OS stack trace getter are
4847 // the same; otherwise, deletes the old getter and makes the input the
4848 // current getter.
4850 OsStackTraceGetterInterface* getter) {
4851 if (os_stack_trace_getter_ != getter) {
4853 os_stack_trace_getter_ = getter;
4857 // Returns the current OS stack trace getter if it is not NULL;
4859 // getter, and returns it.
4849 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.h5148 const CXIdxEntityInfo *getter; member in struct:__anon17676
/external/gtest/src/
H A Dgtest.cc4568 // Sets the OS stack trace getter.
4570 // Does nothing if the input and the current OS stack trace getter are
4571 // the same; otherwise, deletes the old getter and makes the input the
4572 // current getter.
4574 OsStackTraceGetterInterface* getter) {
4575 if (os_stack_trace_getter_ != getter) {
4577 os_stack_trace_getter_ = getter;
4581 // Returns the current OS stack trace getter if it is not NULL;
4583 // getter, and returns it.
4573 set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) argument
/external/llvm/utils/unittest/googletest/src/
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/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

Completed in 538 milliseconds

12345