Searched defs:set (Results 201 - 225 of 843) sorted by relevance

1234567891011>>

/external/replicaisland/src/com/replica/replicaisland/
H A DInterpolator.java52 public void set(float current, float target, float acceleration) { method in class:Interpolator
H A DVector2.java33 set(xValue, yValue);
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/
H A DShadowLayoutInflater.java64 @Override protected void set(ShadowApplication shadowApplication, LayoutInflater instance) { method in class:ShadowLayoutInflater.LayoutInflaterAppSingletonizer
H A DShadowMatrix.java28 set(src);
32 public void set(Matrix src) { method in class:ShadowMatrix
/external/skia/include/core/
H A DSkSize.h24 void set(T w, T h) { function in struct:SkTSize
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));
/external/skia/include/gpu/
H A DGrGpuResourceRef.h105 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
H A DGrRect.h25 r.set(0, 0, w, h);
31 r.set(x, y, x + w, y + h);
42 void set(int16_t left, int16_t top, int16_t right, int16_t bottom) { function in struct:GrIRect16
49 void set(const SkIRect& r) { function in struct:GrIRect16
/external/skia/src/animator/
H A DSkDrawMatrix.h49 void set(SkMatrix& src) { function in class:SkDrawMatrix
/external/skia/src/core/
H A DSkPtrRecorder.h18 * Maintains a set of ptrs, assigning each a unique ID [1...N]. Duplicate ptrs
19 * return the same ID (since its a set). Subclasses can override inPtr()
21 * set. decPtr() is called on each ptr when the set is destroyed or reset.
28 * Search for the specified ptr in the set. If it is found, return its
34 * Add the specified ptr to the set, returning a unique 32bit ID for it
42 * Return the number of (non-null) ptrs in the set.
47 * Copy the ptrs in the set into the specified array (allocated by the
56 * Call decPtr() on each ptr in the set, and the reset the size of the set
66 Iter(const SkPtrSet& set) argument
[all...]
/external/skia/src/gpu/
H A DGrPipelineBuilder.cpp69 // These have no equivalent in GrPaint, set them to defaults
95 void GrPipelineBuilder::AutoRestoreFragmentProcessors::set(GrPipelineBuilder* pipelineBuilder) { function in class:GrPipelineBuilder::AutoRestoreFragmentProcessors
/external/skia/src/gpu/gl/
H A DGrGLVertexArray.cpp12 void GrGLAttribArrayState::set(const GrGLGpu* gpu, function in class:GrGLAttribArrayState
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DVariableSizeListIterator.java107 @Override public void set(T t) { throw new UnsupportedOperationException(); } method in class:VariableSizeListIterator
/external/v8/src/
H A Dhydrogen-gvn.h37 bool ContainsAnyOf(SideEffects set) const { return (bits_ & set.bits_) != 0; }
38 void Add(SideEffects set) { bits_ |= set.bits_; } argument
/external/v8/test/cctest/
H A Dtest-unique.cc148 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
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/
H A Dvalgrind-low-arm.c120 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 local
[all...]
H A Dvalgrind-low-arm64.c131 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);
H A Dvalgrind-low-ppc32.c38 /* 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);
H A Dvalgrind-low-ppc64.c167 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);
H A Dvalgrind-low-s390x.c112 dlog(1, "set pc to %p\n", C2v (newpc));
114 dlog(1, "set pc not changed %p\n", C2v (newpc));
124 int set = abs_regno / num_regs; local
128 VexGuestS390XState* s390x = (VexGuestS390XState*) get_arch (set, tst);
H A Dvalgrind-low-tilegx.c136 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);
/external/vixl/test/
H A Dtest-invalset.cc98 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
128 TestSet set; local
147 TestSet set; local
180 TestSet set; local
215 TestSet set; local
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntervalSet.java38 /** A set of integers that relies on ranges being common to do
58 /** Create a set with no elements */
67 /** Create a set with a single element, el. */
74 /** Create a set with all ints within range [a..b] (inclusive) */
81 /** Add a single element to the set. An isolated element is stored
88 /** Add interval; i.e., add all integers from a to b to set.
115 iter.set(bigger);
123 iter.previous(); // move backwards to what we just set
124 iter.set(bigger.union(next)); // set t
187 addAll(IntSet set) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DFieldVector.java323 * Set a set of consecutive elements.
324 * @param index index of first element to be set.
325 * @param v vector containing the values to set.
334 * Set a set of consecutive elements.
335 * @param index index of first element to be set.
336 * @param v vector containing the values to set.
346 * @param value single value to set for all elements
348 void set(T value); method in interface:FieldVector
/external/bison/lib/
H A Dsigprocmask.c114 sigismember (const sigset_t *set, int sig) argument
123 return (*set >> sig) & 1;
130 sigemptyset (sigset_t *set) argument
132 *set = 0;
137 sigaddset (sigset_t *set, int sig) argument
146 *set |= 1U << sig;
157 sigdelset (sigset_t *set, int sig) argument
166 *set &= ~(1U << sig);
178 sigfillset (sigset_t *set) argument
180 *set
205 sigpending(sigset_t *set) argument
222 sigprocmask(int operation, const sigset_t *set, sigset_t *old_set) argument
[all...]
/external/boringssl/src/crypto/x509/
H A Dx509name.c151 /* else we need to fixup the set field */
153 set_prev=(sk_X509_NAME_ENTRY_value(sk,loc-1))->set;
155 set_prev=ret->set-1;
156 set_next=sk_X509_NAME_ENTRY_value(sk,loc)->set;
158 /* set_prev is the previous set
159 * set is the current set
162 * set 1 1 2 2
168 sk_X509_NAME_ENTRY_value(sk,i)->set--;
173 unsigned char *bytes, int len, int loc, int set)
172 X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, unsigned char *bytes, int len, int loc, int set) argument
184 X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, unsigned char *bytes, int len, int loc, int set) argument
196 X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, const unsigned char *bytes, int len, int loc, int set) argument
210 X509_NAME_add_entry(X509_NAME *name, X509_NAME_ENTRY *ne, int loc, int set) argument
[all...]

Completed in 344 milliseconds

1234567891011>>