HomeSort by relevance Sort by last modified time
    Searched defs:getter (Results 1 - 25 of 267) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/v8/test/mjsunit/regress/
regress-992.js 33 var getter = desc.get; variable
40 assertEquals(desc.get, getter);
regress-crbug-352586.js 7 function getter() { function
14 a.__defineGetter__('message', getter);
regress-4534.js 8 function getter() { return 111; } function
11 dp(obj1, "golf", { get: getter, configurable: true });
15 dp(obj2, "golf", { get: getter, configurable: true });
regress-874.js 30 var getter = function(){ return 42; }; function
32 x.__defineGetter__(0, getter);
36 assertEquals (getter, Object.getOwnPropertyDescriptor(x, 0).get);
regress-crbug-137689.js 30 function getter() { return 10; } function
37 Object.defineProperty(o, "foo", { get: getter, configurable: true });
38 Object.defineProperty(o2, "foo", { get: getter, configurable: true });
regress-2163.js 33 function getter() { return 111; } function
39 // obj1 and obj2 share the getter accessor.
41 dp(obj1, "alpha", { get: getter, set: setter });
43 dp(obj2, "alpha", { get: getter });
49 // obj1, obj2, and obj3 share the getter accessor.
51 dp(obj1, "alpha", { get: getter, set: setter });
53 dp(obj2, "alpha", { get: getter });
57 dp(obj3, "alpha", { get: getter });
60 // obj1 and obj2 share the getter and setter accessor.
62 dp(obj1, "alpha", { get: getter, set: setter })
    [all...]
compare-map-elim1.js 35 function getter() { function
46 Object.defineProperty(o1, "foo1", {get:getter});
47 Object.defineProperty(o2, "foo1", {get:getter});
  /external/v8/test/mjsunit/compiler/
deopt-during-eval-lookup.js 34 function getter() { function
40 Object.defineProperty(this, "eval", {get: getter });
  /external/v8/test/mjsunit/
accessor-map-sharing.js 34 function getter() { return 111; } function
40 // Two objects with the same getter.
42 dp(obj1, "alpha", { get: getter });
44 dp(obj2, "alpha", { get: getter });
47 // Two objects with the same getter, oldskool.
49 obj1.__defineGetter__("bravo", getter);
50 assertEquals(getter, obj1.__lookupGetter__("bravo"));
52 obj2.__defineGetter__("bravo", getter);
53 assertEquals(getter, obj2.__lookupGetter__("bravo"));
72 // Two objects with the same getter and setter
    [all...]
  /external/v8/test/webkit/
dfg-inline-arguments-use-from-all-the-places-broken.js 33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments];
36 function getter() { function
37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56));
41 o.__defineGetter__("f", getter);
dfg-inline-arguments-use-from-all-the-places.js 33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments];
36 function getter() { function
37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56));
41 o.__defineGetter__("f", getter);
  /external/v8/test/webkit/fast/js/
Object-defineProperty.js 48 shouldBe("Object.getOwnPropertyDescriptor(Object.defineProperty([1,2,3], '1', {get:getter, configurable: true}), '1').get", "getter");
49 shouldThrow("Object.defineProperty([1,2,3], '1', {get:getter, configurable: true})[1]", "'called getter'");
78 function getter(){ throw "called getter"; } function
91 shouldThrow("Object.defineProperty({}, 'foo', {get: getter}).foo", "'called getter'");
92 shouldThrow("Object.defineProperty(Object.defineProperty({}, 'foo', {get: getter}), 'foo', {get: getter1})");
93 shouldThrow("Object.defineProperty(Object.defineProperty({}, 'foo', {get: getter}), 'foo', {set: setter1})")
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/chicken/
swigclosprefix.scm 14 (define-method (compute-getter-and-setter (class <swig-metaclass-$module>) slot allocator)
17 (let ((getter (let search-get ((lst slot))
30 (lambda (o) (getter (slot-ref o 'swig-this)))
  /external/skia/src/gpu/gl/iOS/
GrGLCreateNativeInterface_iOS.cpp 49 const GLProcGetter* getter = (const GLProcGetter*) ctx; local
50 return getter->getProc(name);
54 GLProcGetter getter; local
55 return GrGLAssembleGLESInterface(&getter, ios_get_gl_proc);
  /external/skia/src/gpu/gl/mac/
GrGLCreateNativeInterface_mac.cpp 53 const GLProcGetter* getter = (const GLProcGetter*) ctx; local
54 return getter->getProc(name);
58 GLProcGetter getter; local
59 return GrGLAssembleGLInterface(&getter, mac_get_gl_proc);
  /hardware/intel/common/omx-components/videocodec/
OMXComponentCodecBase.h 76 virtual OMX_ERRORTYPE AddHandler(OMX_INDEXTYPE type, OMXHANDLER getter, OMXHANDLER setter);
80 // return getter or setter
89 OMXHANDLER getter; member in struct:OMXComponentCodecBase::HandlerEntry
  /hardware/qcom/gps/core/
ContextBase.cpp 50 getLBSProxy_t* getter = (getLBSProxy_t*)dlsym(lib, "getLBSProxy"); local
51 if (NULL != getter) {
52 proxy = (*getter)();
73 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
74 if(getter != NULL) {
75 LOC_LOGD("%s:%d]: getter is not NULL for LocApiV02", __func__, __LINE__);
76 locApi = (*getter)(mMsgTask, exMask, this);
85 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
86 if (NULL != getter) {
87 LOC_LOGD("%s:%d]: getter is not NULL in RPC", __func__, __LINE__)
    [all...]
  /hardware/qcom/gps/msm8084/core/
ContextBase.cpp 52 getLBSProxy_t* getter = (getLBSProxy_t*)dlsym(lib, "getLBSProxy"); local
53 if (NULL != getter) {
54 proxy = (*getter)();
57 LOC_LOGD("%s:%d]: getter is NULL. Reason: %s", __func__, __LINE__, dlerror());
82 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
83 if(getter != NULL) {
84 LOC_LOGD("%s:%d]: getter is not NULL for LocApiV02", __func__, __LINE__);
85 locApi = (*getter)(mMsgTask,exMask, this);
88 LOC_LOGD("%s:%d]: getter is NULL. Reason: %s", __func__, __LINE__, dlerror());
97 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi") local
    [all...]
  /hardware/qcom/gps/msm8909/core/
ContextBase.cpp 50 getLBSProxy_t* getter = (getLBSProxy_t*)dlsym(lib, "getLBSProxy"); local
51 if (NULL != getter) {
52 proxy = (*getter)();
73 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
74 if(getter != NULL) {
75 LOC_LOGD("%s:%d]: getter is not NULL for LocApiV02", __func__, __LINE__);
76 locApi = (*getter)(mMsgTask, exMask, this);
85 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
86 if (NULL != getter) {
87 LOC_LOGD("%s:%d]: getter is not NULL in RPC", __func__, __LINE__)
    [all...]
  /hardware/qcom/gps/msm8960/core/
ContextBase.cpp 50 getIzatProxy_t* getter = (getIzatProxy_t*)dlsym(lib, "getIzatProxy"); local
51 if (NULL != getter) {
52 proxy = (*getter)();
72 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
73 if(getter != NULL) {
74 LOC_LOGD("%s:%d]: getter is not NULL for LocApiV02", __func__, __LINE__);
75 locApi = (*getter)(mMsgTask,exMask);
84 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
85 if (NULL != getter) {
86 LOC_LOGD("%s:%d]: getter is not NULL in RPC", __func__, __LINE__)
    [all...]
  /hardware/qcom/gps/msm8994/core/
ContextBase.cpp 50 getLBSProxy_t* getter = (getLBSProxy_t*)dlsym(lib, "getLBSProxy"); local
51 if (NULL != getter) {
52 proxy = (*getter)();
73 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
74 if(getter != NULL) {
75 LOC_LOGD("%s:%d]: getter is not NULL for LocApiV02", __func__, __LINE__);
76 locApi = (*getter)(mMsgTask, exMask, this);
85 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
86 if (NULL != getter) {
87 LOC_LOGD("%s:%d]: getter is not NULL in RPC", __func__, __LINE__)
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkVars.java 193 VarGetter getter = VAR_MAP.get(command.get(1)); local
194 if (getter == null) {
197 return new MonkeyCommandReturn(true, getter.get());
  /external/skia/src/gpu/gl/win/
GrGLCreateNativeInterface_win.cpp 57 const GLProcGetter* getter = (const GLProcGetter*) ctx; local
58 return getter->getProc(name);
71 GLProcGetter getter; local
72 if (!getter.isInitialized()) {
76 GrGLGetStringProc getString = (GrGLGetStringProc)getter.getProc("glGetString");
84 return GrGLAssembleGLESInterface(&getter, win_get_gl_proc);
86 return GrGLAssembleGLInterface(&getter, win_get_gl_proc);
  /hardware/qcom/gps/msm8996/core/
ContextBase.cpp 71 getLBSProxy_t* getter = (getLBSProxy_t*)dlsym(lib, "getLBSProxy"); local
72 if (NULL != getter) {
73 proxy = (*getter)();
94 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
95 if(getter != NULL) {
96 LOC_LOGD("%s:%d]: getter is not NULL for LocApiV02", __func__, __LINE__);
97 locApi = (*getter)(mMsgTask, exMask, this);
106 getLocApi_t* getter = (getLocApi_t*)dlsym(handle, "getLocApi"); local
107 if (NULL != getter) {
108 LOC_LOGD("%s:%d]: getter is not NULL in RPC", __func__, __LINE__)
    [all...]
  /hardware/qcom/gps/msmcobalt/core/
ContextBase.cpp 71 getLBSProxy_t* getter = (getLBSProxy_t*)dlsym(lib, "getLBSProxy"); local
72 if (NULL != getter) {
73 proxy = (*getter)();
99 getLocApi_t* getter = (getLocApi_t*) dlsym(handle, "getLocApi"); local
100 if (getter != NULL) {
101 LOC_LOGD("%s:%d]: getter is not NULL for LocApiV02", __func__,
103 locApi = (*getter)(mMsgTask, exMask, this);
112 getLocApi_t* getter = (getLocApi_t*) dlsym(handle, "getLocApi"); local
113 if (NULL != getter) {
114 LOC_LOGD("%s:%d]: getter is not NULL in RPC", __func__
    [all...]

Completed in 1810 milliseconds

1 2 3 4 5 6 7 8 91011