HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 176 - 200 of 2219) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/skia/src/gpu/gl/
GrGLVertexArray.cpp 14 void GrGLAttribArrayState::set(const GrGpuGL* gpu, function in class:GrGLAttribArrayState
  /external/skia/src/pathops/
SkPathOpsCubic.h 24 void set(const SkPoint pts[4]) { function in struct:SkDCubic
49 cubic.set(a);
64 cubic.set(a);
73 cubic.set(pts);
SkPathOpsQuad.h 27 void set(const SkPoint pts[3]) { function in struct:SkDQuad
52 quad.set(a);
59 quad.set(pts);
SkPathOpsRect.h 43 void set(const SkDPoint& pt) { function in struct:SkDRect
  /external/skia/tests/
TSetTest.cpp 101 SkTSet<int> set; local
105 REPORTER_ASSERT(reporter, set.add(2 * i));
109 REPORTER_ASSERT(reporter, set.mergeInto(setOdd) == 0);
110 REPORTER_ASSERT(reporter, set.count() == 2 * COUNT);
113 REPORTER_ASSERT(reporter, set.mergeInto(setOdd) == setOdd.count());
114 REPORTER_ASSERT(reporter, set.count() == 2 * COUNT);
117 REPORTER_ASSERT(reporter, set.contains(i));
122 REPORTER_ASSERT(reporter, set[i] == 2 * i);
123 REPORTER_ASSERT(reporter, set[COUNT + i] == 2 * i + 1);
127 set.validate()
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
IndexedSection.java 49 items.set(i, item);
OffsettedSection.java 47 items.set(i, item);
  /external/srec/portable/include/
ArrayList.h 131 ESR_ReturnCode(*set)(struct ArrayList_t* self, size_t index, void* element); member in struct:ArrayList_t
  /external/srec/shared/include/
Int8ArrayList.h 99 ESR_ReturnCode(*set)(struct Int8ArrayList_t* self, size_t index, asr_int8_t element); member in struct:Int8ArrayList_t
IntArrayList.h 99 ESR_ReturnCode(*set)(struct IntArrayList_t* self, size_t index, int element); member in struct:IntArrayList_t
  /external/valgrind/main/coregrind/m_gdbserver/
valgrind-low-mips32.c 136 dlog(1, "set pc to %p\n", C2v (newpc));
138 dlog(1, "set pc not changed %p\n", C2v (newpc));
148 int set = abs_regno / num_regs; local
152 VexGuestMIPS32State* mips1 = (VexGuestMIPS32State*) get_arch (set, tst);
valgrind-low-s390x.c 113 dlog(1, "set pc to %p\n", C2v (newpc));
115 dlog(1, "set pc not changed %p\n", C2v (newpc));
125 int set = abs_regno / num_regs; local
129 VexGuestS390XState* s390x = (VexGuestS390XState*) get_arch (set, tst);
  /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
98 void MtpStringBuffer::set(const uint16_t* src) { function in class:android::MtpStringBuffer
  /frameworks/base/core/java/android/text/
TextPaint.java 60 public void set(TextPaint tp) { method in class:TextPaint
61 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/jni/
TimeUtils.h 67 void set(int64_t millis);
69 inline void set(int sec, int min, int hour, int mday, int mon, int year, function in class:android::Time
  /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/services/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);

Completed in 1120 milliseconds

1 2 3 4 5 6 78 91011>>