HomeSort by relevance Sort by last modified time
    Searched full:holder (Results 301 - 325 of 3637) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8MessageEventCustom.cpp 78 MessageEvent* event = V8MessageEvent::toNative(info.Holder());
83 result = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::data(info.GetIsolate()));
110 result = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::stringData(info.GetIsolate()));
119 result = toV8(event->dataAsBlob(), info.Holder(), info.GetIsolate());
123 result = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::arrayBufferData(info.GetIsolate()));
125 result = toV8(event->dataAsArrayBuffer(), info.Holder(), info.GetIsolate());
132 info.Holder()->ForceSet(v8AtomicString(info.GetIsolate(), "data"), result, dataAttr);
138 MessageEvent* event = V8MessageEvent::toNative(info.Holder());
158 V8HiddenValue::setHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::data(info.GetIsolate()), dataArg);
V8XMLHttpRequestCustom.cpp 67 v8::Handle<v8::Object> wrapper = info.Holder();
74 XMLHttpRequest* xmlHttpRequest = V8XMLHttpRequest::toNative(info.Holder());
75 ExceptionState exceptionState(ExceptionState::GetterContext, "responseText", "XMLHttpRequest", info.Holder(), info.GetIsolate());
88 XMLHttpRequest* xmlHttpRequest = V8XMLHttpRequest::toNative(info.Holder());
118 ExceptionState exceptionState(ExceptionState::GetterContext, "response", "XMLHttpRequest", info.Holder(), info.GetIsolate());
160 ExceptionState exceptionState(ExceptionState::ExecutionContext, "open", "XMLHttpRequest", info.Holder(), info.GetIsolate());
168 XMLHttpRequest* xmlHttpRequest = V8XMLHttpRequest::toNative(info.Holder());
206 XMLHttpRequest* xmlHttpRequest = V8XMLHttpRequest::toNative(info.Holder());
210 ExceptionState exceptionState(ExceptionState::ExecutionContext, "send", "XMLHttpRequest", info.Holder(), info.GetIsolate());
V8MessageChannelCustom.cpp 49 v8::Local<v8::Object> wrapper = info.Holder();
54 V8HiddenValue::setHiddenValue(info.GetIsolate(), wrapper, V8HiddenValue::port1(info.GetIsolate()), toV8(obj->port1(), info.Holder(), info.GetIsolate()));
55 V8HiddenValue::setHiddenValue(info.GetIsolate(), wrapper, V8HiddenValue::port2(info.GetIsolate()), toV8(obj->port2(), info.Holder(), info.GetIsolate()));
  /external/chromium_org/v8/test/webkit/fast/js/
JSON-parse-reviver.js 32 debug("Ensure the holder for our array is indeed an array");
37 debug("Ensure that we always get the same holder");
44 debug("Ensure that the holder already has all the properties present at the start of filtering");
54 debug("Ensure that returning undefined has removed the property 0 from the holder during filtering.");
106 debug("Ensure that we created the root holder as specified in ES5");
119 debug("Ensure that we get the same holder object for each property");
127 debug("Ensure that the holder already has all the properties present at the start of filtering");
136 debug("Ensure that returning undefined has correctly removed the property 'a property' from the holder object");
176 debug("Ensure that we created the root holder as specified in ES5");
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
Camera2SurfaceViewCtsActivity.java 83 public void surfaceCreated(SurfaceHolder holder) {
87 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
95 public void surfaceDestroyed(SurfaceHolder holder) {
  /developers/samples/android/wearable/wear/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/ui/
SpeedPickerListAdapter.java 70 public void onBindViewHolder(WearableListView.ViewHolder holder,
73 ItemViewHolder itemHolder = (ItemViewHolder) holder;
78 holder.itemView.setTag(position);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceWillBeGarbageCollected.cpp 49 v8::Handle<v8::Object> holder = info.Holder(); local
50 TestInterfaceWillBeGarbageCollected* impl = V8TestInterfaceWillBeGarbageCollected::toNative(holder);
63 v8::Handle<v8::Object> holder = info.Holder(); local
64 TestInterfaceWillBeGarbageCollected* impl = V8TestInterfaceWillBeGarbageCollected::toNative(holder);
82 TestInterfaceWillBeGarbageCollected* impl = V8TestInterfaceWillBeGarbageCollected::toNative(info.Holder());
112 v8::Handle<v8::Object> wrapper = info.Holder();
138 v8SetReturnValue(info, info.Holder());
148 toV8(documentPtr, info.Holder(), isolate)
    [all...]
  /external/chromium_org/third_party/libva/va/x11/
va_dri2.h 17 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
24 * Except as contained in this notice, the name of a copyright holder shall
27 * the copyright holder.
  /external/chromium_org/third_party/mesa/src/src/glx/
dri_common.h 18 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
25 * Except as contained in this notice, the name of a copyright holder shall
28 * the copyright holder.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-323942.js 33 var holder = { f: function() { return 42; } };
36 receiver.__proto__.__proto__ = holder;
56 receiver.__proto__.__proto__ = holder;
  /external/elfutils/0.153/po/
Makevars 14 # This is the copyright holder that gets inserted into the header of the
15 # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
17 # sources, belong to the copyright holder of the package.) Translators are
  /external/mesa3d/src/glx/
dri_common.h 18 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
25 * Except as contained in this notice, the name of a copyright holder shall
28 * the copyright holder.
  /frameworks/base/core/java/android/view/
SurfaceHolder.java 77 * @param holder The SurfaceHolder whose surface is being created.
79 public void surfaceCreated(SurfaceHolder holder);
87 * @param holder The SurfaceHolder whose surface has changed.
92 public void surfaceChanged(SurfaceHolder holder, int format, int width,
102 * @param holder The SurfaceHolder whose surface is being destroyed.
104 public void surfaceDestroyed(SurfaceHolder holder);
119 * @param holder The SurfaceHolder whose surface has changed.
121 public void surfaceRedrawNeeded(SurfaceHolder holder);
125 * Add a Callback interface for this holder. There can several Callback
126 * interfaces associated with a holder
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
CameraBinderTest.java 171 BinderHolder holder = new BinderHolder(); local
174 CameraBinderTestUtils.USE_CALLING_UID, holder);
175 ICamera cameraUser = ICamera.Stub.asInterface(holder.getBinder());
195 BinderHolder holder = new BinderHolder(); local
198 clientPackageName, CameraBinderTestUtils.USE_CALLING_UID, holder);
199 IProCameraUser cameraUser = IProCameraUser.Stub.asInterface(holder.getBinder());
217 BinderHolder holder = new BinderHolder(); local
223 CameraBinderTestUtils.USE_CALLING_UID, holder);
224 cameraUser = ICamera.Stub.asInterface(holder.getBinder());
300 BinderHolder holder = new BinderHolder() local
    [all...]
  /frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
FountainFboView.java 35 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
36 super.surfaceChanged(holder, format, w, h);
40 mRS.setSurface(holder, w, h);
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SceneGraphView.java 53 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
54 super.surfaceChanged(holder, format, w, h);
59 mRS.setSurface(holder, w, h);
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchView.java 53 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
54 super.surfaceChanged(holder, format, w, h);
59 mRS.setSurface(holder, w, h);
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
RSTestView.java 55 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
56 super.surfaceChanged(holder, format, w, h);
60 mRS.setSurface(holder, w, h);
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
RSTestView.java 55 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
56 super.surfaceChanged(holder, format, w, h);
60 mRS.setSurface(holder, w, h);
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
RSTestView.java 55 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
56 super.surfaceChanged(holder, format, w, h);
60 mRS.setSurface(holder, w, h);
  /hardware/intel/common/libva/va/x11/
va_dri2.h 17 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
24 * Except as contained in this notice, the name of a copyright holder shall
27 * the copyright holder.
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/
AnimatedRecyclerView.java 120 MyViewHolder holder = (MyViewHolder) mRecyclerView.getChildViewHolder(parent); local
121 mAdapter.selectItem(holder, selected);
126 MyViewHolder holder = (MyViewHolder) mRecyclerView.getChildViewHolder(parent); local
127 mAdapter.toggleExpanded(holder);
128 mAdapter.notifyItemChanged(holder.getPosition());
454 public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
456 ((MyViewHolder) holder).textView.setText(itemText);
457 ((MyViewHolder) holder).expandedText.setText("More text for the expanded version");
462 ((MyViewHolder) holder).checkBox.setChecked(selected);
465 ((MyViewHolder) holder).expandedText.setVisibility(View.VISIBLE)
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
AdapterHelperTest.java 91 for (ViewHolder holder : mViewHolders) {
92 if (holder.mPosition >= positionEnd) {
93 holder.offsetPosition(-itemCount, true);
94 } else if (holder.mPosition >= positionStart) {
95 holder.flagRemovedAndOffsetPosition(positionStart - 1, -itemCount, true);
104 for (ViewHolder holder : mViewHolders) {
105 if (holder.mPosition >= positionEnd) {
106 holder.offsetPosition(-itemCount, false);
107 } else if (holder.mPosition >= positionStart) {
108 holder.flagRemovedAndOffsetPosition(positionStart - 1, -itemCount, false)
    [all...]
  /art/test/064-field-access/src/
GetNonexistent.java 19 Object obj = Holder.mObject;
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
LocalPlayer.java 388 // add surface holder callback
389 SurfaceHolder holder = mSurfaceView.getHolder(); local
390 holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
391 holder.addCallback(this);
411 // remove surface holder callback
412 SurfaceHolder holder = mSurfaceView.getHolder(); local
413 holder.removeCallback(this);
452 public void surfaceChanged(SurfaceHolder holder, int format,
457 setSurface(holder);
461 public void surfaceCreated(SurfaceHolder holder) {
550 SurfaceHolder holder = mPresentationSurfaceView.getHolder(); local
    [all...]

Completed in 1718 milliseconds

<<11121314151617181920>>