/frameworks/base/core/java/android/accounts/ |
ChooseAccountTypeActivity.java | 185 ViewHolder holder; local 189 holder = new ViewHolder(); 190 holder.text = (TextView) convertView.findViewById(R.id.account_row_text); 191 holder.icon = (ImageView) convertView.findViewById(R.id.account_row_icon); 192 convertView.setTag(holder); 194 holder = (ViewHolder) convertView.getTag(); 197 holder.text.setText(mInfos.get(position).name); 198 holder.icon.setImageDrawable(mInfos.get(position).drawable);
|
/development/samples/Support7Demos/src/com/example/android/supportv7/widget/adapter/ |
SimpleStringAdapter.java | 92 public void onBindViewHolder(ViewHolder holder, int position) { 93 holder.mBoundString = mValues.get(position); 94 holder.mTextView.setText(position + ":" + mValues.get(position)); 95 holder.mTextView.setMinHeight((200 + mValues.get(position).length() * 10)); 96 holder.mTextView.setBackgroundColor(getBackgroundColor(position));
|
/external/chromium_org/third_party/WebKit/Source/bindings/templates/ |
attributes.cpp | 15 {# holder #} 19 v8::Handle<v8::Object> holder = {{v8_class}}::findInstanceInPrototypeChain(info.This(), info.GetIsolate()); variable 20 if (holder.IsEmpty()) 23 v8::Handle<v8::Object> holder = info.Holder(); variable 28 {{cpp_class}}* impl = {{v8_class}}::toNative(holder); 30 v8::Handle<v8::Value> v8Value = V8HiddenValue::getHiddenValue(info.GetIsolate(), holder, propertyName); 37 {{cpp_class}}* impl = {{v8_class}}::toNative(holder); 52 ExceptionState exceptionState(ExceptionState::GetterContext, "{{attribute.name}}", "{{interface_name}}", holder, info.GetIsolate()); 94 V8HiddenValue::setHiddenValue(info.GetIsolate(), holder, propertyName, {{attribute.cpp_value_to_v8_value}}) 223 v8::Handle<v8::Object> holder = info.Holder(); variable [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8HTMLAllCollectionCustom.cpp | 53 return toV8(namedItems.at(0).release(), info.Holder(), info.GetIsolate()); 57 return toV8(NamedNodesCollection::create(namedItems), info.Holder(), info.GetIsolate()); 75 return toV8(result.release(), info.Holder(), info.GetIsolate()); 80 HTMLAllCollection* impl = V8HTMLAllCollection::toNative(info.Holder()); 89 HTMLAllCollection* impl = V8HTMLAllCollection::toNative(info.Holder());
|
/external/chromium_org/v8/src/ |
lookup.h | 67 Handle<JSReceiver> holder, 76 holder_map_(holder->map()), 78 maybe_holder_(holder), 145 // Methods that fetch data from the holder ensure they always have a holder.
|
json.js | 16 function Revive(holder, name, reviver) { 17 var val = holder[name]; 38 return %_CallFunction(holder, name, val, reviver); 128 function JSONSerialize(key, holder, replacer, stack, indent, gap) { 129 var value = holder[key]; 137 value = %_CallFunction(holder, key, value, replacer); 237 var holder = {}; 238 holder[key] = object; 239 // No need to pass the actual holder since there is no replacer function. 240 return JSONSerialize(key, holder, UNDEFINED, new InternalArray(), "", "") [all...] |
stub-cache.h | 58 Handle<JSObject> holder); 356 // Generates code that verifies that the property holder has not changed 360 // of the holder has not changed. If necessary the function also generates 364 // The scratch and holder registers are always clobbered, but the object 365 // register is only clobbered if it the same as the holder register. The 366 // function returns a register containing the holder - either object_reg or 370 Handle<JSObject> holder, 395 static void LookupPostInterceptor(Handle<JSObject> holder, 452 Handle<JSObject> holder, 460 Handle<JSObject> holder, [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
ListRowPresenter.java | 178 protected void initializeRowViewHolder(RowPresenter.ViewHolder holder) { 179 super.initializeRowViewHolder(holder); 180 final ViewHolder rowViewHolder = (ViewHolder) holder; 358 protected void onRowViewSelected(RowPresenter.ViewHolder holder, boolean selected) { 359 super.onRowViewSelected(holder, selected); 360 ViewHolder vh = (ViewHolder) holder; 399 protected void onRowViewExpanded(RowPresenter.ViewHolder holder, boolean expanded) { 400 super.onRowViewExpanded(holder, expanded); 401 ViewHolder vh = (ViewHolder) holder; 411 protected void onBindRowViewHolder(RowPresenter.ViewHolder holder, Object item) [all...] |
RowPresenter.java | 77 * wrapped row view holder 93 * A view holder for a {@link Row}. 148 * Returns the view holder for the Row header for this Row. 189 * @param parent The parent View for the Row's view holder. 225 public final ViewHolder getRowViewHolder(Presenter.ViewHolder holder) { 226 if (holder instanceof ContainerViewHolder) { 227 return ((ContainerViewHolder) holder).mRowViewHolder; 229 return (ViewHolder) holder; 236 * @param holder The Row ViewHolder to set expanded state on. 239 public final void setRowViewExpanded(Presenter.ViewHolder holder, boolean expanded) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/rpcsvc/ |
klm_prot.x | 26 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 58 int pid; /* holder of the lock */ 65 * lock holder identifier 69 int svid; /* holder of the lock (pid) */ 87 struct klm_holder holder;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/ |
klm_prot.x | 26 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 58 int pid; /* holder of the lock */ 65 * lock holder identifier 69 int svid; /* holder of the lock (pid) */ 87 struct klm_holder holder;
|
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/ |
CubeWallpaper2.java | 169 public void onSurfaceChanged(SurfaceHolder holder, int format, int width, int height) { 170 super.onSurfaceChanged(holder, format, width, height); 178 public void onSurfaceCreated(SurfaceHolder holder) { 179 super.onSurfaceCreated(holder); 183 public void onSurfaceDestroyed(SurfaceHolder holder) { 184 super.onSurfaceDestroyed(holder); 217 final SurfaceHolder holder = getSurfaceHolder(); local 218 final Rect frame = holder.getSurfaceFrame(); 224 c = holder.lockCanvas(); 231 if (c != null) holder.unlockCanvasAndPost(c) [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/ |
Artistic.txt | 10 Package may be copied, such that the Copyright Holder maintains some 19 Copyright Holder, and derivatives of that collection of files 24 of the Copyright Holder as specified below. 26 "Copyright Holder" is whoever is named in the copyright or 35 Copyright Holder, but only to the computing community at large 48 derived from the Public Domain or from the Copyright Holder. A Package 59 site such as uunet.uu.net, or by allowing the Copyright Holder to include 69 d) make other distribution arrangements with the Copyright Holder. 85 d) make other distribution arrangements with the Copyright Holder. 124 9. The name of the Copyright Holder may not be used to endorse or promot [all...] |
/frameworks/base/core/java/android/app/ |
NativeActivity.java | 263 public void surfaceCreated(SurfaceHolder holder) { 265 mCurSurfaceHolder = holder; 266 onSurfaceCreatedNative(mNativeHandle, holder.getSurface()); 270 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { 272 mCurSurfaceHolder = holder; 273 onSurfaceChangedNative(mNativeHandle, holder.getSurface(), format, width, height); 277 public void surfaceRedrawNeeded(SurfaceHolder holder) { 279 mCurSurfaceHolder = holder; 280 onSurfaceRedrawNeededNative(mNativeHandle, holder.getSurface()); 284 public void surfaceDestroyed(SurfaceHolder holder) { [all...] |
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
AccessibilityInputFilter.java | 247 MotionEventHolder holder = MotionEventHolder.obtain(event, policyFlags); local 248 holder.next = mEventQueue; 249 mEventQueue.previous = holder; 250 mEventQueue = holder; 387 MotionEventHolder holder = sPool.acquire(); local 388 if (holder == null) { 389 holder = new MotionEventHolder(); 391 holder.event = MotionEvent.obtain(event); 392 holder.policyFlags = policyFlags; 393 return holder; [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
V8TestTypedefs.cpp | 51 v8::Handle<v8::Object> holder = info.Holder(); local 52 TestTypedefs* impl = V8TestTypedefs::toNative(holder); 65 v8::Handle<v8::Object> holder = info.Holder(); local 66 ExceptionState exceptionState(ExceptionState::SetterContext, "uLongLongAttribute", "TestTypedefs", holder, info.GetIsolate()); 67 TestTypedefs* impl = V8TestTypedefs::toNative(holder); 83 V8PerContextData* perContextData = V8PerContextData::from(info.Holder()->CreationContext()); 102 TestTypedefs* impl = V8TestTypedefs::toNative(info.Holder()); 129 TestTypedefs* impl = V8TestTypedefs::toNative(info.Holder()); [all...] |
V8TestException.cpp | 47 v8::Handle<v8::Object> holder = info.Holder(); local 48 TestException* impl = V8TestException::toNative(holder); 61 v8::Handle<v8::Object> holder = info.Holder(); local 62 TestException* impl = V8TestException::toNative(holder); 75 TestException* impl = V8TestException::toNative(info.Holder());
|
V8TestInterfaceGarbageCollected.cpp | 49 v8::Handle<v8::Object> holder = info.Holder(); local 50 TestInterfaceGarbageCollected* impl = V8TestInterfaceGarbageCollected::toNative(holder); 63 v8::Handle<v8::Object> holder = info.Holder(); local 64 TestInterfaceGarbageCollected* impl = V8TestInterfaceGarbageCollected::toNative(holder); 82 TestInterfaceGarbageCollected* impl = V8TestInterfaceGarbageCollected::toNative(info.Holder()); 112 v8::Handle<v8::Object> wrapper = info.Holder(); 136 v8SetReturnValue(info, info.Holder());
|
/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/gin/ |
object_template_builder.cc | 54 NamedInterceptorFromV8(isolate, info.Holder()); 67 NamedInterceptorFromV8(isolate, info.Holder()); 79 NamedInterceptorFromV8(isolate, info.Holder()); 92 NamedInterceptorFromV8(isolate, info.Holder()); 103 IndexedInterceptorFromV8(isolate, info.Holder()); 114 IndexedInterceptorFromV8(isolate, info.Holder()); 124 IndexedInterceptorFromV8(isolate, info.Holder());
|
/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) {
|
/frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/base/ |
BaseLayerModule.java | 136 * Holder for AtomicReference<FailureHandler> which allows updating it at runtime. 140 private final AtomicReference<FailureHandler> holder; 144 holder = new AtomicReference<FailureHandler>(defaultHandler); 148 holder.set(handler); 152 return holder.get(); 157 FailureHandler provideFailureHandler(FailureHandlerHolder holder) { 158 return holder.get();
|
/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/cc/layers/ |
texture_layer.cc | 121 !mailbox.Equals(holder_ref_->holder()->mailbox()) || 161 !mailbox.Equals(holder_ref_->holder()->mailbox()) || 162 mailbox.sync_point() != holder_ref_->holder()->mailbox().sync_point()); 246 TextureMailboxHolder* holder = holder_ref_->holder(); local 247 texture_mailbox = holder->mailbox(); 248 release_callback = holder->GetCallbackForImplThread(); 266 TextureMailboxHolder* holder) 267 : holder_(holder) {
|