/development/samples/ApiDemos/src/com/example/android/apis/media/ |
MediaPlayerDemo_Video.java | 44 private SurfaceHolder holder; field in class:MediaPlayerDemo_Video 65 holder = mPreview.getHolder(); 66 holder.addCallback(this); 67 holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS); 124 mMediaPlayer.setDisplay(holder); 179 public void surfaceCreated(SurfaceHolder holder) { 216 holder.setFixedSize(mVideoWidth, mVideoHeight);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8MessageEventCustom.cpp | 47 MessageEvent* event = V8MessageEvent::toNative(info.Holder()); 52 result = info.Holder()->GetHiddenValue(V8HiddenPropertyName::data(info.GetIsolate())); 85 result = toV8(event->dataAsBlob(), info.Holder(), info.GetIsolate()); 89 result = toV8(event->dataAsArrayBuffer(), info.Holder(), info.GetIsolate()); 96 info.Holder()->ForceSet(v8AtomicString(info.GetIsolate(), "data"), result, dataAttr); 102 MessageEvent* event = V8MessageEvent::toNative(info.Holder()); 128 info.Holder()->SetHiddenValue(V8HiddenPropertyName::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()); 121 ExceptionState exceptionState(ExceptionState::GetterContext, "response", "XMLHttpRequest", info.Holder(), info.GetIsolate()); 163 ExceptionState exceptionState(ExceptionState::ExecutionContext, "open", "XMLHttpRequest", info.Holder(), info.GetIsolate()); 171 XMLHttpRequest* xmlHttpRequest = V8XMLHttpRequest::toNative(info.Holder()); 209 XMLHttpRequest* xmlHttpRequest = V8XMLHttpRequest::toNative(info.Holder()); 213 ExceptionState exceptionState(ExceptionState::ExecutionContext, "send", "XMLHttpRequest", info.Holder(), info.GetIsolate());
|
V8HTMLFormControlsCollectionCustom.cpp | 52 return toV8(namedItems.at(0).release(), info.Holder(), info.GetIsolate()); 54 return toV8(collection->ownerNode()->radioNodeList(name).get(), info.Holder(), info.GetIsolate()); 60 HTMLFormControlsCollection* imp = V8HTMLFormControlsCollection::toNative(info.Holder());
|
V8MessageChannelCustom.cpp | 50 v8::Local<v8::Object> wrapper = info.Holder(); 55 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "port1", toV8(obj->port1(), info.Holder(), info.GetIsolate())); 56 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "port2", toV8(obj->port2(), info.Holder(), info.GetIsolate()));
|
V8OscillatorNodeCustom.cpp | 36 v8::Handle<v8::Object> holder = info.Holder(); local 37 OscillatorNode* imp = V8OscillatorNode::toNative(holder);
|
V8TextTrackCueCustom.cpp | 20 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 50 ExceptionState exceptionState(ExceptionState::ConstructionContext, "TextTrackCue", info.Holder(), info.GetIsolate()); 64 v8::Handle<v8::Object> wrapper = wrap(impl.get(), info.Holder(), info.GetIsolate());
|
V8XSLTProcessorCustom.cpp | 55 XSLTProcessor* imp = V8XSLTProcessor::toNative(info.Holder()); 67 XSLTProcessor* imp = V8XSLTProcessor::toNative(info.Holder()); 83 XSLTProcessor* imp = V8XSLTProcessor::toNative(info.Holder());
|
/external/v8/src/ |
ic-inl.h | 100 JSObject* holder) { 102 return GetCodeCacheForObject(JSObject::cast(object), holder); 111 JSObject* holder) { 114 // when holder == object). It works because slow properties objects having 117 if (holder != object && 127 JSObject* IC::GetCodeCacheHolder(Object* object, InlineCacheHolderFlag holder) { 128 Object* map_owner = (holder == OWN_MAP ? object : object->GetPrototype());
|
/frameworks/base/graphics/java/android/renderscript/ |
RSSurfaceView.java | 74 SurfaceHolder holder = getHolder(); local 75 holder.addCallback(this); 83 public void surfaceCreated(SurfaceHolder holder) { 84 mSurfaceHolder = holder; 92 public void surfaceDestroyed(SurfaceHolder holder) { 106 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { 109 mRS.setSurface(holder, w, h);
|
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
SurfaceAndTextureViews.java | 127 SurfaceHolder holder = getHolder(); local 128 holder.addCallback(this); 133 public void surfaceCreated(SurfaceHolder holder) { 138 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { 140 Canvas canvas = holder.lockCanvas(); 142 holder.unlockCanvasAndPost(canvas); 146 public void surfaceDestroyed(SurfaceHolder holder) {
|
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/ |
CubeWallpaper1.java | 105 public void onSurfaceChanged(SurfaceHolder holder, int format, int width, int height) { 106 super.onSurfaceChanged(holder, format, width, height); 114 public void onSurfaceCreated(SurfaceHolder holder) { 115 super.onSurfaceCreated(holder); 119 public void onSurfaceDestroyed(SurfaceHolder holder) { 120 super.onSurfaceDestroyed(holder); 153 final SurfaceHolder holder = getSurfaceHolder(); local 157 c = holder.lockCanvas(); 164 if (c != null) holder.unlockCanvasAndPost(c);
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ |
X509AttributeCertificateHolder.java | 76 * Return the ASN.1 encoding of this holder's attribute certificate. 103 * Return the holder details for this attribute certificate. 105 * @return this attribute certificate's holder structure. 189 * Return whether or not the holder's attribute certificate contains extensions. 227 * extensions contained in this holder's attribute certificate. 238 * critical extensions contained in this holder's attribute certificate. 249 * non-critical extensions contained in this holder's attribute certificate. 284 * Return the underlying ASN.1 structure for the attribute certificate in this holder. 307 * Validate the signature on the attribute certificate in this holder.
|
/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");
|
/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/embunit/inc/ |
AssertImpl.h | 21 * OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 28 * Except as contained in this notice, the name of a copyright holder 31 * authorization of the copyright holder.
|
HelperMacro.h | 21 * OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 28 * Except as contained in this notice, the name of a copyright holder 31 * authorization of the copyright holder.
|
Test.h | 21 * OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 28 * Except as contained in this notice, the name of a copyright holder 31 * authorization of the copyright holder.
|
TestCaller.h | 21 * OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 28 * Except as contained in this notice, the name of a copyright holder 31 * authorization of the copyright holder.
|
TestListener.h | 21 * OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 28 * Except as contained in this notice, the name of a copyright holder 31 * authorization of the copyright holder.
|
TestResult.h | 21 * OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 28 * Except as contained in this notice, the name of a copyright holder 31 * authorization of the copyright holder.
|
/external/embunit/src/ |
TestCaller.c | 21 * OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 28 * Except as contained in this notice, the name of a copyright holder 31 * authorization of the copyright holder.
|
TestCase.c | 21 * OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 28 * Except as contained in this notice, the name of a copyright holder 31 * authorization of the copyright holder.
|