/external/vogar/src/vogar/target/ |
Package.java | 22 import java.util.Set; 33 private final Set<String> subpackageNames; 34 private final Set<Class<?>> topLevelClasses; 37 Set<String> subpackageNames, Set<Class<?>> topLevelClasses) { 43 public Set<Class<?>> getTopLevelClassesRecursive() throws IOException { 44 Set<Class<?>> set = new TreeSet<Class<?>>(ClassPathScanner.ORDER_CLASS_BY_NAME); local 45 addTopLevelClassesTo(set); 46 return set; [all...] |
/frameworks/av/camera/ |
CameraParameters2.cpp | 92 void CameraParameters2::set(const char *key, const char *value) function in class:android::CameraParameters2 110 void CameraParameters2::set(const char *key, int value) 114 set(key, str); 121 set(key, str); 165 ALOGW("%s: Key1 (%s) was not set", __FUNCTION__, key1); 168 ALOGW("%s: Key2 (%s) was not set", __FUNCTION__, key2); 239 set(CameraParameters::KEY_PREVIEW_SIZE, str); 269 set(CameraParameters::KEY_VIDEO_SIZE, str); 288 set(CameraParameters::KEY_PREVIEW_FRAME_RATE, fps); 307 set(CameraParameters::KEY_PREVIEW_FPS_RANGE, str.string()) [all...] |
/frameworks/av/media/mtp/ |
MtpStringBuffer.cpp | 37 set(src); 44 set(src); 58 void MtpStringBuffer::set(const char* src) { function in class:android::MtpStringBuffer 103 void MtpStringBuffer::set(const uint16_t* src) { function in class:android::MtpStringBuffer
|
/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
Stream.cpp | 40 * Set the strategy to follow for this stream. 45 * @return NO_ERROR if the strategy is set correctly, error code otherwise. 48 status_t Element<audio_stream_type_t>::set<routing_strategy>(routing_strategy strategy) function in class:android::audio_policy::Element
|
/frameworks/base/core/java/android/animation/ |
RectEvaluator.java | 80 mRect.set(left, top, right, bottom);
|
/frameworks/base/core/java/android/text/ |
TextPaint.java | 64 public void set(TextPaint tp) { method in class:TextPaint 65 super.set(tp);
|
/frameworks/base/core/java/android/util/ |
Property.java | 21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)} 48 * {@link #isReadOnly() readOnly}. Calling the {@link #set(Object, Object)} method on such 67 * Returns true if the {@link #set(Object, Object)} method does not set the value on the target 68 * object (in which case the {@link #set(Object, Object) set()} method should throw a {@link 81 * to set the value on the target object it will throw an {@link UnsupportedOperationException} 84 public void set(T object, V value) { method in class:Property
|
/frameworks/base/core/java/com/google/android/collect/ |
Sets.java | 28 * Provides static methods for creating mutable {@code Set} instances easily and 40 * <p><b>Note:</b> if you only need an <i>immutable</i> empty Set, 55 * <p>{@code Set<Base> set = Sets.newHashSet(sub1, sub2);} 60 * <p>{@code Set<Base> set = Sets.<Base>newHashSet(sub1, sub2);} 62 * @param elements the elements that the set should contain 68 HashSet<E> set = new HashSet<E>(capacity); local 69 Collections.addAll(set, elements); 70 return set; 90 SortedSet<E> set = new TreeSet<E>(); local 107 ArraySet<E> set = new ArraySet<E>(capacity); local [all...] |
/frameworks/base/core/tests/coretests/src/android/util/ |
LogTest.java | 40 /* TODO: This test is commented out because we will not be able to set properities. Fix the test. 43 SystemProperties.set(PROPERTY_TAG, null); 56 // Set the log level to be VERBOSE for this tag. 57 SystemProperties.set(PROPERTY_TAG, "VERBOSE"); 67 // Set the log level to be DEBUG for this tag. 68 SystemProperties.set(PROPERTY_TAG, "DEBUG"); 78 // Set the log level to be INFO for this tag. 79 SystemProperties.set(PROPERTY_TAG, "INFO"); 89 // Set the log level to be WARN for this tag. 90 SystemProperties.set(PROPERTY_TAG, "WARN") [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListWithDisappearingItemBug.java | 61 AnimationSet set = new AnimationSet(true); local 65 set.addAnimation(animation); 72 set.addAnimation(animation); 75 new LayoutAnimationController(set, 0.5f);
|
/frameworks/base/core/tests/systemproperties/src/android/os/ |
SystemPropertiesTest.java | 31 SystemProperties.set(PERSIST_KEY, Long.toString(i)); 40 SystemProperties.set(KEY, Long.toString(i)); 50 SystemProperties.set(KEY, ""); 54 SystemProperties.set(KEY, "SA"); 61 SystemProperties.set(KEY, "");
|
/frameworks/base/graphics/java/android/graphics/ |
Point.java | 43 * Set the point's x and y coordinates 45 public void set(int x, int y) { method in class:Point 136 * Set the point's coordinates from the data stored in the specified
|
/frameworks/base/libs/hwui/ |
RevealClip.h | 34 void set(bool shouldClip, float x, float y, float radius) { function in class:android::uirenderer::RevealClip 51 outBounds->set(mX - mRadius, mY - mRadius,
|
/frameworks/base/services/core/java/com/android/server/am/ |
AppErrorResult.java | 20 public void set(int res) { method in class:AppErrorResult
|
/frameworks/base/test-runner/src/android/test/ |
ActivityTestCase.java | 32 * The activity that will be set up for use in each test method. 44 * Set the activity under test. 70 field.set(this, null);
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
Camera.java | 109 mField.set(mData, 0, true);
|
/frameworks/base/tools/layoutlib/bridge/src/android/os/ |
Looper_Accessor.java | 31 sMainLooper.set(null, null);
|
/frameworks/data-binding/library/src/main/java/android/databinding/ |
ObservableBoolean.java | 64 * Set the stored value. 66 public void set(boolean value) { method in class:ObservableBoolean
|
ObservableByte.java | 64 * Set the stored value. 66 public void set(byte value) { method in class:ObservableByte
|
ObservableChar.java | 64 * Set the stored value. 66 public void set(char value) { method in class:ObservableChar
|
ObservableDouble.java | 64 * Set the stored value. 66 public void set(double value) { method in class:ObservableDouble
|
ObservableFloat.java | 64 * Set the stored value. 66 public void set(float value) { method in class:ObservableFloat
|
ObservableInt.java | 65 * Set the stored value. 67 public void set(int value) { method in class:ObservableInt
|
ObservableLong.java | 64 * Set the stored value. 66 public void set(long value) { method in class:ObservableLong
|
ObservableShort.java | 64 * Set the stored value. 66 public void set(short value) { method in class:ObservableShort
|