/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/ |
ComplexProperty.java | 61 * Sets the text. 75 * Sets the tooltip text. 96 * Sets the sub-properties. 103 * Sets the sub-properties. 111 * Sets the "modified" flag.
|
/external/glide/library/src/main/java/com/bumptech/glide/provider/ |
ChildLoadProvider.java | 39 * Sets the {@link com.bumptech.glide.load.ResourceDecoder} to use for decoding the resource from the disk cache. 48 * Sets the {@link com.bumptech.glide.load.ResourceDecoder} to use to decoding the resource from the original data. 57 * Sets the {@link com.bumptech.glide.load.ResourceEncoder} to use to write the decoded and transformed resource to 67 * Sets the {@link com.bumptech.glide.load.resource.transcode.ResourceTranscoder} to use to transcode the decoded 77 * Sets the {@link com.bumptech.glide.load.Encoder} to use to write the original data to the disk cache.
|
/external/libxml2/os400/iconv/ |
README.iconv | 4 - Supported character sets names are all of the form IBMCCSIDccsid..., where 20 http://www.iana.org/assignments/character-sets/character-sets.xhtml 33 - http://www.iana.org/assignments/character-sets/character-sets.xhtml provides
|
/frameworks/base/core/java/android/hardware/usb/ |
IUsbManager.aidl | 46 /* Sets the default package for a USB device 51 /* Sets the default package for a USB accessory 90 /* Sets the current USB function. */ 93 /* Sets whether USB data (for example, MTP exposed pictures) should be made 117 /* Sets the port's current role. */
|
/frameworks/base/core/java/android/speech/tts/ |
SynthesisRequest.java | 135 * Sets the locale for the request. 144 * Sets the voice name for the request. 151 * Sets the speech rate. 158 * Sets the pitch. 165 * Sets Caller Uid
|
/frameworks/base/core/java/android/view/ |
ContextMenu.java | 43 * Sets the context menu header's title to the title given in <var>titleRes</var> 52 * Sets the context menu header's title to the title given in <var>title</var>. 60 * Sets the context menu header's icon to the icon given in <var>iconRes</var> 69 * Sets the context menu header's icon to the icon given in <var>icon</var> 78 * Sets the header of the context menu to the {@link View} given in
|
SubMenu.java | 37 * Sets the submenu header's title to the title given in <var>titleRes</var> 46 * Sets the submenu header's title to the title given in <var>title</var>. 54 * Sets the submenu header's icon to the icon given in <var>iconRes</var> 63 * Sets the submenu header's icon to the icon given in <var>icon</var> 72 * Sets the header of the submenu to the {@link View} given in
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicBoolean.java | 62 * Atomically sets the value to the given updated value 77 * Atomically sets the value to the given updated value 95 * Unconditionally sets to the given value. 104 * Eventually sets to the given value. 115 * Atomically sets to the given value and returns the previous value.
|
AtomicReference.java | 59 * Sets to the given value. 68 * Eventually sets to the given value. 78 * Atomically sets the value to the given updated value 90 * Atomically sets the value to the given updated value 106 * Atomically sets to the given value and returns the old value.
|
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
PhotoDecodeRunnable.java | 41 // Sets the log tag 62 * Sets the Thread that this instance is running on 74 * Sets the actions for each state of the PhotoTask instance. 92 * Sets the Bitmap for the ImageView being displayed. 141 // Sets up options for creating a Bitmap object from the 146 * Sets the desired image height and width based on the 173 * Sets horizontal and vertical scaling factors so that the 181 * Sets the sample size to be larger of the horizontal or 272 // Sets the ImageView Bitmap 279 // Sets the current Thread to null, releasing its storag [all...] |
PhotoView.java | 119 * Sets the visibility of the PhotoView 136 * Sets the image in this ImageView to null, and makes the View visible 190 // If this View still exists, clears the weak reference, then sets the reference to null 196 // Sets the downloader thread to null 224 * Sets the current View weak reference to be the incoming View. See the definition of 243 * Sets the View state to visible if the method is called with a null argument (the 244 * image is being cleared). Otherwise, sets the View state to invisible before refreshing 270 * Sets the URI for the Image 306 // Sets the Drawable for this ImageView 315 // Sets the cache fla [all...] |
DisplayActivity.java | 65 // Sets a tag to use in logging 69 * Sets full screen mode on the device, by setting parameters in the current 74 // If full screen is set, sets the fullscreen flag in the Window manager 79 // Sets the global fullscreen flag to the current setting 85 // Sets the View to be "low profile". Status and navigation bar icons will be dimmed 121 // Sets the current back stack count 124 // Re-sets the global stack count to be the current count 152 * This callback is invoked when the Activity is first created. It sets up the Activity's 157 // Sets fullscreen-related flags for the display 170 // Sets the content view for the Activit [all...] |
/external/bison/tests/ |
sets.at | 1 # Exercising Bison Grammar Sets. -*- Autotest -*- 22 # Extract the information about the grammar sets from a bison 59 AT_BANNER([[Grammar Sets (Firsts etc.).]]) 81 AT_BISON_CHECK([[--trace=sets input.y]], [], [], [stderr]) 82 AT_EXTRACT_SETS([stderr], [sets]) 83 AT_CHECK([[cat sets]], [], 165 AT_BISON_CHECK([[--trace=sets input.y]], [], [], [stderr]) 211 AT_BISON_CHECK([[--trace=sets input.y]], [], [], [stderr]) 212 AT_EXTRACT_SETS([stderr], [sets]) 213 AT_CHECK([[cat sets]], [], [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableSortedSetTest.java | 428 copyOf(Sets.newTreeSet(asList("e", "a", "f", "b", "d", "c"))); 433 SortedSet<String> set = copyOf(Sets.<String>newTreeSet()); 482 SortedSet<String> input = Sets.newTreeSet(STRING_LENGTH); 489 SortedSet<String> input = Sets.newTreeSet( 497 Sets.newTreeSet(asList("in", "the", "quick", "jumped", "over", "a")); 503 SortedSet<String> input = Sets.newTreeSet(STRING_LENGTH); 512 assertEquals(set, Sets.newTreeSet(asList("a", "b", "c"))); 513 assertEquals(Sets.newTreeSet(asList("a", "b", "c")), set); 514 assertFalse(set.equals(Sets.newTreeSet(asList("a", "b", "d")))); 515 assertFalse(Sets.newTreeSet(asList("a", "b", "d")).equals(set)) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableSortedSetTest.java | 586 copyOf(Sets.newTreeSet(asList("e", "a", "f", "b", "d", "c"))); 591 SortedSet<String> set = copyOf(Sets.<String>newTreeSet()); 640 SortedSet<String> input = Sets.newTreeSet(STRING_LENGTH); 647 SortedSet<String> input = Sets.newTreeSet( 655 Sets.newTreeSet(asList("in", "the", "quick", "jumped", "over", "a")); 661 SortedSet<String> input = Sets.newTreeSet(STRING_LENGTH); 670 assertEquals(set, Sets.newTreeSet(asList("a", "b", "c"))); 671 assertEquals(Sets.newTreeSet(asList("a", "b", "c")), set); 672 assertFalse(set.equals(Sets.newTreeSet(asList("a", "b", "d")))); 673 assertFalse(Sets.newTreeSet(asList("a", "b", "d")).equals(set)) [all...] |
/frameworks/base/core/java/android/print/ |
PrintJobInfo.java | 228 * Sets the unique print job id. 248 * Sets the human readable job label. 268 * Sets the unique target pritner id. 290 * Sets the name of the target printer. 318 * Sets the current job state. 329 * Sets the owning application id. 340 * Sets the owning application id. 362 * Sets the optional tag assigned by a print service. 382 * Sets the wall time in milliseconds when this print job was created. 405 * Sets the number of copies [all...] |
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicBlend.java | 65 * Sets dst = {0, 0, 0, 0} 85 * Sets dst = src 104 * Sets dst = dst 125 * Sets dst = src + dst * (1.0 - src.a) 144 * Sets dst = dst + src * (1.0 - dst.a) 163 * Sets dst = src * dst.a 182 * Sets dst = dst * src.a 201 * Sets dst = src * (1.0 - dst.a) 220 * Sets dst = dst * (1.0 - src.a) 281 * Sets dst = {src.r ^ dst.r, src.g ^ dst.g, src.b ^ dst.b, src.a ^ dst.a [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableSet.java | 29 * GWT emulated version of {@link ImmutableSet}. For the unsorted sets, they 32 * empty, singleton and regular sets respectively. For the sorted sets, it's 118 Set<E> delegate = Sets.newLinkedHashSet(); 142 Set<E> set = Sets.newLinkedHashSet(); 159 return Sets.equalsImpl(this, obj); 163 return Sets.hashCodeImpl(this);
|
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/ |
CartoonEdgeFilter.java | 113 * sets the depth sensitivity<br> 134 * sets the depth threshold<br> 155 * sets the edge intensity<br> 175 * sets the witdh of the edge in pixels default is 1 196 * sets the normals sensitivity default is 1 217 * sets the normal threshold default is 0.5 236 * Sets the edge color, default is black
|
/external/llvm/include/llvm/TableGen/ |
SetTheory.h | 1 //===- SetTheory.h - Generate ordered sets from DAG expressions -*- C++ -*-===// 10 // This file implements the SetTheory class that computes ordered sets of 14 // The user may define named sets as Records of predefined classes. Set 19 // elements (defs), other sets (defs of expandable classes), lists, or DAG 22 // - (add S1, S2 ...) Union sets. This is also how sets are created from element 82 /// users to define named sets that can be used in DAG expressions.
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/ |
XMPDateTime.java | 40 /** @param year Sets the year */ 46 /** @param month Sets the month 1..12 */ 52 /** @param day Sets the day 1..31 */ 58 /** @param hour Sets the hour in the range 0..23. */ 64 /** @param minute Sets the minute in the range 0..59. */ 70 /** @param second Sets the second in the range 0..59. */ 80 * @param nanoSecond Sets the milli-, micro- and nano seconds.
|
/frameworks/native/services/surfaceflinger/ |
FrameTracker.h | 50 // setDesiredPresentTime sets the time at which the current frame 55 // setFrameReadyTime sets the time at which the current frame became ready 61 // setFrameReadyFence sets the fence that is used to get the time at which 65 // setActualPresentTime sets the timestamp at which the current frame became 69 // setActualPresentFence sets the fence that is used to get the time 73 // setDisplayRefreshPeriod sets the display refresh period in nanoseconds. 120 // resetFrameCounteresLocked sets all elements of the mNumFrames array to
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/ |
ErrorFragment.java | 54 * Sets the drawable displayed in the browse fragment title. 71 * Sets a title for the browse fragment. 88 * Sets the default background. 107 * Sets a drawable for the fragment background. 130 * Sets the drawable to be used for the error image. 147 * Sets the error message. 164 * Sets the button text.
|
ErrorSupportFragment.java | 56 * Sets the drawable displayed in the browse fragment title. 73 * Sets a title for the browse fragment. 90 * Sets the default background. 109 * Sets a drawable for the fragment background. 132 * Sets the drawable to be used for the error image. 149 * Sets the error message. 166 * Sets the button text.
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/util/ |
ContactAggregatorHelperTest.java | 21 import com.google.android.collect.Sets; 74 MoreAsserts.assertContentsInAnyOrder(connectedRawContactSets, Sets.newHashSet(100l, 75 101l), Sets.newHashSet(102l, 103l), Sets.newHashSet(104l, 105l, 106l, 107l)); 104 MoreAsserts.assertContentsInAnyOrder(connectedRawContactSets, Sets.newHashSet(100l, 105 101l), Sets.newHashSet(102l), Sets.newHashSet(103l));
|