/art/test/069-field-type/src/ |
Holder.java | 5 public class Holder {
|
Main.java | 10 Holder holder = new Holder(); local 15 holder.mValue = blah; 21 holder.mValue.run(); 28 //Comparable cmpx = holder.mValue; /* compiler rejects */ 29 Comparable cmp = (Comparable) holder.mValue;
|
/dalvik/tests/069-field-type/src/ |
Holder.java | 5 public class Holder {
|
Main.java | 10 Holder holder = new Holder(); local 15 holder.mValue = blah; 21 holder.mValue.run(); 28 //Comparable cmpx = holder.mValue; /* compiler rejects */ 29 Comparable cmp = (Comparable) holder.mValue;
|
/external/guava/guava-tests/test/com/google/common/collect/ |
CountTest.java | 33 Count holder = new Count(20); local 34 assertEquals(20, holder.getAndAdd(1)); 35 assertEquals(21, holder.get()); 39 Count holder = new Count(20); local 40 assertEquals(21, holder.addAndGet(1)); 44 Count holder = new Count(10); local 45 assertEquals(10, holder.getAndSet(20)); 46 assertEquals(20, holder.get()); 50 Count holder = new Count(10); local 51 holder.set(20) [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/ |
AsyncResultHolderTests.java | 32 private <T> void setAfterGivenTime(final AsyncResultHolder<T> holder, final T value, 42 holder.set(value); 48 final AsyncResultHolder<Integer> holder = new AsyncResultHolder<Integer>(); local 49 final int resultValue = holder.get(DEFAULT_VALUE, TIMEOUT_IN_MILLISECONDS); 54 final AsyncResultHolder<Integer> holder = new AsyncResultHolder<Integer>(); local 55 setAfterGivenTime(holder, SET_VALUE, TIMEOUT_IN_MILLISECONDS + MARGIN_IN_MILLISECONDS); 56 final int resultValue = holder.get(DEFAULT_VALUE, TIMEOUT_IN_MILLISECONDS); 61 final AsyncResultHolder<Integer> holder = new AsyncResultHolder<Integer>(); local 62 holder.set(SET_VALUE); 63 final int resultValue = holder.get(DEFAULT_VALUE, TIMEOUT_IN_MILLISECONDS) 68 final AsyncResultHolder<Integer> holder = new AsyncResultHolder<Integer>(); local [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ |
AttributeCertificateHolder.java | 15 import org.bouncycastle.asn1.x509.Holder; 24 * The Holder object. 27 * Holder ::= SEQUENCE { 30 * -- the holder's Public Key Certificate 34 * -- used to directly authenticate the holder, 49 final Holder holder; field in class:AttributeCertificateHolder 53 holder = Holder.getInstance(seq); 59 holder = new Holder(new IssuerSerial [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2980.js | 29 function test(expected, holder) { 30 assertEquals(expected, holder.property); 33 var holder = {} 34 holder.__proto__ = null; 35 holder.property = "foo"; 36 delete holder.property; 37 test(undefined, holder); 38 test(undefined, holder); 39 test(undefined, holder); 40 holder.property = "bar" [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
AppViewHolder.java | 13 // View Holder used when displaying views 29 AppViewHolder holder = new AppViewHolder(); local 30 holder.rootView = convertView; 31 holder.appName = (TextView) convertView.findViewById(R.id.app_name); 32 holder.appIcon = (ImageView) convertView.findViewById(R.id.app_icon); 33 holder.appSize = (TextView) convertView.findViewById(R.id.app_size); 34 holder.disabled = (TextView) convertView.findViewById(R.id.app_disabled); 35 holder.checkBox = (CheckBox) convertView.findViewById(R.id.app_on_sdcard); 36 convertView.setTag(holder); 37 return holder; [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
AttributeCertificateHolder.java | 25 import org.bouncycastle.asn1.x509.Holder; 34 * The Holder object. 37 * Holder ::= SEQUENCE { 40 * -- the holder's Public Key Certificate 44 * -- used to directly authenticate the holder, 53 final Holder holder; field in class:AttributeCertificateHolder 57 holder = Holder.getInstance(seq); 63 holder = new org.bouncycastle.asn1.x509.Holder(new IssuerSerial [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
Holder.java | 12 * The Holder object. 17 * Holder ::= SEQUENCE { 20 * -- the holder's Public Key Certificate 24 * -- used to directly authenticate the holder, 40 public class Holder 54 public static Holder getInstance(Object obj) 56 if (obj instanceof Holder) 58 return (Holder)obj; 62 return new Holder(ASN1TaggedObject.getInstance(obj)); 66 return new Holder(ASN1Sequence.getInstance(obj)) [all...] |
/external/skia/tools/copyright/ |
main.py | 11 while keeping the year and holder intact. 13 year and default holder. 23 # Only modify copyright stanzas if the copyright holder is one of these. 50 (year, holder) = parser.GetCopyrightBlockAttributes(old_copyright_block) 51 if holder and not ConfirmAllowedCopyrightHolder(holder): 53 'unrecognized copyright holder "%s" in file %s, skipping...' % ( 54 holder, filepath)) 56 new_copyright_block = parser.CreateCopyrightBlock(year, holder) 99 def ConfirmAllowedCopyrightHolder(holder) [all...] |
/cts/tests/tests/nativeopengl/src/com/android/opengl/cts/ |
GLTestActivity.java | 34 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { 35 setSurface(holder.getSurface()); 39 public void surfaceCreated(SurfaceHolder holder) { 40 setSurface(holder.getSurface()); 44 public void surfaceDestroyed(SurfaceHolder holder) {
|
/packages/wallpapers/NoiseField/src/com/android/noisefield/ |
NoiseFieldView.java | 19 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { 20 super.surfaceChanged(holder, format, w, h); 25 mRS.setSurface(holder, w, h);
|
/packages/wallpapers/PhaseBeam/src/com/android/phasebeam/ |
PhaseBeamView.java | 19 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { 20 super.surfaceChanged(holder, format, w, h); 25 mRS.setSurface(holder, w, h);
|
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaAdapter.java | 109 ViewHolder holder = null; local 115 holder = (ViewHolder) view.getTag(); 118 if (holder == null) { 119 holder = new ViewHolder(); 120 view.setTag(holder); 121 holder.title = (TextView) view.findViewById(R.id.title); 122 holder.when = (TextView) view.findViewById(R.id.when); 123 holder.where = (TextView) view.findViewById(R.id.where); 124 holder.textContainer = (LinearLayout) 126 holder.selectedMarker = view.findViewById(R.id.selected_marker) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
GeometryMathUtils.java | 47 // Holder class for Geometry data. 217 private static void concatMirrorMatrix(Matrix m, GeometryHolder holder) { 218 Mirror type = holder.mirror; 220 if (holder.rotation.value() == 90 221 || holder.rotation.value() == 270) { 225 if (holder.rotation.value() == 90 226 || holder.rotation.value() == 270) { 254 GeometryHolder holder = new GeometryHolder(); local 255 unpackGeometry(holder, geometry); 256 return holder; 304 GeometryHolder holder = unpackGeometry(geometry); local 341 GeometryHolder holder = unpackGeometry(geometry); local 388 GeometryHolder holder = unpackGeometry(res); local 486 GeometryHolder holder = unpackGeometry(res); local [all...] |
/external/chromium_org/v8/test/webkit/fast/js/ |
JSON-parse-reviver-expected.txt | 30 Ensure the holder for our array is indeed an array 34 Ensure that the holder already has all the properties present at the start of filtering 41 Ensure the holder for our array is indeed an array 45 Ensure that we always get the same holder 48 Ensure that returning undefined has removed the property 0 from the holder during filtering. 51 Ensure the holder for our array is indeed an array 55 Ensure that we always get the same holder 64 Ensure the holder for our array is indeed an array 68 Ensure that we always get the same holder 77 Ensure the holder for our array is indeed an arra [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
RecentsPanelView.java | 149 ViewHolder holder = new ViewHolder(); local 150 holder.thumbnailView = convertView.findViewById(R.id.app_thumbnail); 151 holder.thumbnailViewImage = 155 updateThumbnail(holder, mRecentTasksLoader.getDefaultThumbnail(), false, false); 156 holder.iconView = (ImageView) convertView.findViewById(R.id.app_icon); 157 holder.iconView.setImageDrawable(mRecentTasksLoader.getDefaultIcon()); 158 holder.labelView = (TextView) convertView.findViewById(R.id.app_label); 159 holder.calloutLine = convertView.findViewById(R.id.recents_callout_line); 160 holder.descriptionView = (TextView) convertView.findViewById(R.id.app_description); 162 convertView.setTag(holder); 170 final ViewHolder holder = (ViewHolder) convertView.getTag(); local 231 ViewHolder holder = (ViewHolder) v.getTag(); local 556 final ViewHolder holder = mItemToAnimateInWhenWindowAnimationIsFinished; local 655 ViewHolder holder = (ViewHolder) view.getTag(); local [all...] |
/art/test/069-field-type/ |
info.txt | 3 versions of the field-holder class we can bypass the compiler's type
|
/dalvik/tests/069-field-type/ |
info.txt | 3 versions of the field-holder class we can bypass the compiler's type
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-coretext.h | 12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR 15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, 21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
hb-deprecated.h | 12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR 15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, 21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
hb-ft.h | 12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR 15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, 21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
hb-glib.h | 13 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR 16 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 19 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, 22 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|