/external/skia/bench/ |
GrOrderedSetBench.cpp | 17 // Time how long it takes to build a set 44 GrOrderedSet<int> set; variable 46 set.insert(fData[j]); 48 set.reset(); 58 // Time how long it takes to find elements in a set 99 // Time how long it takes to iterate over and remove all elements from set
|
/external/skia/include/gpu/ |
GrGpuResourceRef.h | 105 void set(T* resource, GrIOType ioType) { this->setResource(resource, ioType); } function in class:GrTGpuResourceRef 127 void set(GrTexture* texture, GrIOType ioType) { this->setResource(texture, ioType); } function in class:GrTGpuResourceRef 148 void set(GrRenderTarget* rt, GrIOType ioType) { this->setResource(rt, ioType); } function in class:GrTGpuResourceRef
|
/external/skia/platform_tools/android/gyp_gen/ |
vars_dict_lib.py | 11 # The goal of this class is to store a set of unique items in the order in 16 """Ordered set of unique items that supports addition and removal. 25 """Add item, if it is not already in the set. 27 item is appended to the end if it is not already in the set. 36 """Whether the set contains item. 39 item: The item to search for in the set. 42 bool: Whether the item is in the set. 47 """Iterator for the set. 53 Remove item from the set. 59 ValueError if item is not in the set 78 def set(self, other): member in class:OrderedSet [all...] |
/external/skia/src/gpu/gl/ |
GrGLShaderVar.h | 26 kDefault_Origin, // when set to kDefault the origin field is ignored. 83 void set(GrSLType type, function in class:GrGLShaderVar 91 INHERITED::set(type, name, typeModifier, precision); 99 void set(GrSLType type, function in class:GrGLShaderVar 107 INHERITED::set(type, name, typeModifier, precision); 113 * Set all var options 115 void set(GrSLType type, function in class:GrGLShaderVar 124 INHERITED::set(type, name, typeModifier, precision, count); 130 * Set all var options 132 void set(GrSLType type function in class:GrGLShaderVar [all...] |
/external/skia/tests/ |
GrOrderedSetTest.cpp | 14 typedef GrOrderedSet<int> Set; 18 Set set; local 20 REPORTER_ASSERT(reporter, set.empty()); 28 Set::Iter xi = set.insert(x); 30 REPORTER_ASSERT(reporter, !set.empty()); 33 set.insert(0); 35 set.insert(999); 41 REPORTER_ASSERT(reporter, *set.begin() == 0) [all...] |
/external/v8/test/cctest/ |
test-unique.cc | 148 UniqueSet<String>* set = new(&zone) UniqueSet<String>(); local 150 CHECK_EQ(0, set->size()); 151 set->Add(A, &zone); 152 CHECK_EQ(1, set->size()); 153 set->Add(A, &zone); 154 CHECK_EQ(1, set->size()); 155 set->Add(B, &zone); 156 CHECK_EQ(2, set->size()); 157 set->Add(C, &zone); 158 CHECK_EQ(3, set->size()) 175 UniqueSet<String>* set = new(&zone) UniqueSet<String>(); local 215 UniqueSet<String>* set = new(&zone) UniqueSet<String>(); local 246 UniqueSet<String>* set = new(&zone) UniqueSet<String>(); local 382 UniqueSet<T>* set = new(zone) UniqueSet<T>(); local [all...] |
/external/valgrind/coregrind/m_gdbserver/ |
valgrind-low-arm.c | 120 dlog(1, "set pc to %p\n", C2v (newpc)); 122 dlog(1, "set pc not changed %p\n", C2v (newpc)); 127 // If the thumb bit (bit 0) is already set, we trust it. 129 dlog (1, "%p = thumb (bit0 is set)\n", C2v (pc)); 133 // Here, bit 0 is not set. 137 // address and we set the thumb bit. 140 dlog (1, "bit0 not set, bit1 set => %p = thumb\n", C2v (pc)); 149 // the debug info with the bit0 set 182 int set = abs_regno / num_regs local [all...] |
valgrind-low-arm64.c | 131 dlog(1, "set pc to %p\n", C2v (newpc)); 133 dlog(1, "set pc not changed %p\n", C2v (newpc)); 143 int set = abs_regno / num_regs; local 147 VexGuestARM64State* arm = (VexGuestARM64State*) get_arch (set, tst);
|
valgrind-low-ppc32.c | 38 /* this is only the basic set of registers. 170 dlog(1, "set pc to %p\n", C2v (newpc)); 172 dlog(1, "set pc not changed %p\n", C2v (newpc)); 182 int set = abs_regno / num_regs; local 186 VexGuestPPC32State* ppc32 = (VexGuestPPC32State*) get_arch (set, tst);
|
valgrind-low-ppc64.c | 167 dlog(1, "set pc to %p\n", C2v (newpc)); 169 dlog(1, "set pc not changed %p\n", C2v (newpc)); 179 int set = abs_regno / num_regs; local 183 VexGuestPPC64State* ppc64 = (VexGuestPPC64State*) get_arch (set, tst);
|
valgrind-low-tilegx.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 VexGuestTILEGXState* tilegx = (VexGuestTILEGXState*) get_arch (set, tst);
|
/frameworks/base/core/java/android/os/ |
BatteryProperties.java | 36 public void set(BatteryProperties other) { method in class:BatteryProperties
|
SystemProperties.java | 118 * Set the value for the given key. 122 public static void set(String key, String val) { method in class:SystemProperties
|
/frameworks/base/graphics/java/android/graphics/ |
PointF.java | 43 * Set the point's x and y coordinates 45 public final void set(float x, float y) { method in class:PointF 51 * Set the point's x and y coordinates to the coordinates of p 53 public final void set(PointF p) { method in class:PointF 152 * Set the point's coordinates from the data stored in the specified
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
ExpandableOutlineView.java | 83 mOutlineRect.set((int) left, (int) top, (int) right, (int) bottom);
|
/frameworks/base/services/core/java/com/android/server/policy/ |
StatusBarController.java | 158 AnimationSet set = (AnimationSet) animation; local 159 for (int i = 0; i < set.getAnimations().size(); i++) { 160 Animation a = set.getAnimations().get(i);
|
/frameworks/base/test-runner/src/android/test/ |
ClassPathPackageInfo.java | 22 import java.util.Set; 34 private final Set<String> subpackageNames; 35 private final Set<Class<?>> topLevelClasses; 38 Set<String> subpackageNames, Set<Class<?>> topLevelClasses) { 45 public Set<ClassPathPackageInfo> getSubpackages() { 46 Set<ClassPathPackageInfo> info = Sets.newHashSet(); 53 public Set<Class<?>> getTopLevelClassesRecursive() { 54 Set<Class<?>> set = Sets.newHashSet() local [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
FrameValues.java | 128 Array.set(curValue, index, value);
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
RenderState.java | 93 mField.set(item, 0, true);
|
Texture2D.java | 105 mField.set(mData, 0, true);
|
TextureCube.java | 106 mField.set(mData, 0, true);
|
Transform.java | 67 mField.set(mTransformData, 0, true); 90 mField.set(mTransformData, 0, true);
|
/frameworks/base/tools/layoutlib/bridge/src/android/widget/ |
SimpleMonthView_Delegate.java | 67 view.mDayOfWeekLabelCalendar.set(Calendar.DAY_OF_WEEK, dayOfWeek);
|
/frameworks/opt/net/voip/src/jni/rtp/ |
G711Codec.cpp | 37 int set(int sampleRate, const char *fmtp) { function in class:__anon23195::UlawCodec 88 int set(int sampleRate, const char *fmtp) { function in class:__anon23195::AlawCodec
|
/frameworks/rs/driver/ |
rsdVertexArray.cpp | 54 void RsdVertexArray::Attrib::set(uint32_t type, uint32_t size, uint32_t stride, function in class:RsdVertexArray::Attrib
|