/external/replicaisland/src/com/replica/replicaisland/ |
Vector2.java | 33 set(xValue, yValue); method 37 set(other); 72 public final void set(Vector2 other) { method in class:Vector2 77 public final void set(float xValue, float yValue) { method in class:Vector2 113 set(0.0f, 0.0f);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAlarmManager.java | 24 public void set(int type, long triggerAtTime, PendingIntent operation) { method in class:ShadowAlarmManager
|
ShadowSyncResult.java | 21 f.set(result, new SyncStats());
|
/external/skia/include/core/ |
SkSize.h | 24 void set(T w, T h) { function in struct:SkTSize 40 /** Set the width and height to 0 */ 48 /** If width or height is < 0, it is set to 0 */ 87 this->set(SkIntToScalar(src.fWidth), SkIntToScalar(src.fHeight)); 93 s.set(SkScalarRoundToInt(fWidth), SkScalarRoundToInt(fHeight)); 99 s.set(SkScalarCeilToInt(fWidth), SkScalarCeilToInt(fHeight)); 105 s.set(SkScalarFloorToInt(fWidth), SkScalarFloorToInt(fHeight));
|
SkTDict.h | 26 bool set(const char name[], const T& value) { function in class:SkTDict 27 return set(name, strlen(name), value); 30 bool set(const char name[], size_t len, const T& value) { function in class:SkTDict
|
SkTLazy.h | 50 * previous instance had been initialized (either from init() or set()) it 68 T* set(const T& src) { function in class:SkTLazy 78 * Destroy the lazy object (if it was created via init() or set()) 171 fLazy.set(*fObj);
|
/external/skia/src/core/ |
SkPictureContentInfo.cpp | 135 void SkPictureContentInfo::set(const SkPictureContentInfo& src) { function in class:SkPictureContentInfo
|
SkRecord.h | 81 return fRecords[fCount++].set(this->allocCommand<T>()); 94 return fRecords[i].set(this->allocCommand<T>()); 107 return fRecords[i].set(this->allocCommand<T>()); 157 T* set(T* ptr) { function in struct:SkRecord::Record
|
/external/skia/src/pathops/ |
SkPathOpsConic.h | 41 const SkDConic& set(const SkPoint pts[kPointCount], SkScalar weight) { function in struct:SkDConic 42 fPts.set(pts); 101 conic.set(a, weight); 112 conic.set(pts, weight);
|
SkPathOpsQuad.h | 50 const SkDQuad& set(const SkPoint pts[kPointCount]) { function in struct:SkDQuad 79 quad.set(a); 86 quad.set(pts);
|
/external/skia/src/xml/ |
SkBML_XMLParser.cpp | 38 static void set(char* array[256], int index, SkStream& s, int data) function 96 set(rec.fNames, rec.fNextName++, s, data); 98 set(rec.fValues, rec.fNextValue++, s, 31); 102 set(rec.fNames, rec.fNextName++, s, data); 108 set(rec.fValues, rec.fNextValue++, s, 31); 131 set(rec.fElems, rec.fNextElem++, s, data);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/ |
VariableSizeListIterator.java | 107 @Override public void set(T t) { throw new UnsupportedOperationException(); } method in class:VariableSizeListIterator
|
/external/valgrind/coregrind/m_gdbserver/ |
valgrind-low-amd64.c | 143 dlog(1, "set pc to %p\n", C2v (newpc)); 145 dlog(1, "set pc not changed %p\n", C2v (newpc)); 155 int set = abs_regno / dyn_num_regs; local 159 VexGuestAMD64State* amd64 = (VexGuestAMD64State*) get_arch (set, tst); 184 /* we can only retrieve the real flags (set 0) 186 if (set == 0)
|
valgrind-low-x86.c | 110 dlog(1, "set pc to %p\n", C2v (newpc)); 112 dlog(1, "set pc not changed %p\n", C2v (newpc)); 122 int set = abs_regno / num_regs; local 126 VexGuestX86State* x86 = (VexGuestX86State*) get_arch (set, tst); 143 /* we can only retrieve the real flags (set 0) 145 if (set == 0)
|
/external/vixl/test/ |
test-invalset.cc | 98 TestSet set; local 99 VIXL_CHECK(set.empty() && (set.size() == 0)); 102 set.insert(Obj(i, i)); 104 VIXL_CHECK(set.size() == kNPreallocatedElements); 106 set.insert(Obj(-123, 456)); 107 set.insert(Obj(2718, 2871828)); 108 VIXL_CHECK(set.size() == kNPreallocatedElements + 2); 109 VIXL_CHECK(set.min_element() == Obj(-123, 456)); 111 set.erase(Obj(-123, 456)) 128 TestSet set; local 147 TestSet set; local 180 TestSet set; local 215 TestSet set; local [all...] |
/frameworks/base/core/java/android/test/ |
AndroidTestCase.java | 63 * latter is provided by the context set with the {@link #setContext} 164 field.set(this, null);
|
/frameworks/base/core/java/android/webkit/ |
DateSorter.java | 126 c.set(Calendar.HOUR_OF_DAY, 0); 127 c.set(Calendar.MINUTE, 0); 128 c.set(Calendar.SECOND, 0); 129 c.set(Calendar.MILLISECOND, 0);
|
/frameworks/base/include/androidfw/ |
AssetDir.h | 109 void set(const String8& path, FileType type) { function in class:android::AssetDir::FileInfo
|
/frameworks/base/libs/hwui/ |
Program.cpp | 156 void Program::set(const mat4& projectionMatrix, const mat4& modelViewMatrix, function in class:android::uirenderer::Program
|
Vertex.h | 35 * Program::set()), and used to make geometry damage rect calculation conservative (see 43 static inline void set(Vertex* vertex, float x, float y) { function in struct:android::uirenderer::Vertex 48 static inline void set(Vertex* vertex, Vector2 val) { function in struct:android::uirenderer::Vertex 49 set(vertex, val.x, val.y); 53 set(vertex, src.x + x, src.y + y); 67 static inline void set(TextureVertex* vertex, float x, float y, float u, float v) { function in struct:android::uirenderer::TextureVertex 87 static inline void set(ColorTextureVertex* vertex, float x, float y, function in struct:android::uirenderer::ColorTextureVertex 107 static inline void set(AlphaVertex* vertex, float x, float y, float alpha) { function in struct:android::uirenderer::AlphaVertex 113 AlphaVertex::set(vertex, src.x + x, src.y + y, src.alpha);
|
/frameworks/base/media/jni/ |
android_media_PlaybackParams.h | 40 jfieldID set; member in struct:android::PlaybackParams::fields_t 63 set = env->GetFieldID(clazz, "mSet", "I"); 90 int set = env->GetIntField(params, fields.set); local 92 speedSet = set & fields.set_speed; 93 pitchSet = set & fields.set_pitch; 94 audioFallbackModeSet = set & fields.set_audio_fallback_mode; 95 audioStretchModeSet = set & fields.set_audio_stretch_mode; 108 params, fields.set,
|
android_media_SyncParams.h | 43 jfieldID set; member in struct:android::SyncParams::fields_t
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
FieldPort.java | 65 mField.set(mFilter, mValue); 108 // Since a frame was set, mark this port as having a frame to pull
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/ |
Point.java | 38 public void set(float x, float y) { method in class:Point
|
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
EffectsTest.java | 141 ev.set(position); 180 public void set(int position) { method in class:EffectsTest.EffectView
|