Searched defs:set (Results 401 - 425 of 843) sorted by relevance

<<11121314151617181920>>

/external/mockftpserver/tags/2.x_Before_IDEA/src/test/java/org/mockftpserver/test/
H A DAbstractTest.java82 * @param mock - the mock to set in replay mode
238 protected static Set set(Object e1, Object e2) { method in class:AbstractTest
239 Set set = new HashSet();
240 set.add(e1);
241 set.add(e2);
242 return set;
252 protected static Set set(Object e1, Object e2, Object e3) { method in class:AbstractTest
253 Set set = set(e1, e2);
254 set
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DFrame.java539 * @param local the index of the local that must be set.
540 * @param type the value of the local that must be set.
542 private void set(final int local, final int type) { method in class:Frame
933 set(arg, t1);
938 set(arg - 1, TOP);
946 set(arg, t1);
947 set(arg + 1, TOP);
952 set(arg - 1, TOP);
1114 set(arg, INTEGER);
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DInsnList.java46 * {@link #set set}, {@link #insert(AbstractInsnNode, AbstractInsnNode)},
221 public void set(final AbstractInsnNode location, final AbstractInsnNode insn) { method in class:InsnList
634 public void set(Object o) { method in class:InsnList.InsnListIterator
635 InsnList.this.set(next.prev, (AbstractInsnNode) o);
/external/nist-sip/java/gov/nist/core/
H A DNameValueList.java123 public void set(NameValue nv) { method in class:NameValueList
130 public void set(String name, Object value) { method in class:NameValueList
220 retval.set((NameValue) ((NameValue) it.next()).clone());
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSettings.java69 /** If set, flow control is disabled for streams directed to the sender of these settings. */
73 private int set; field in class:Settings
85 set = persistValue = persisted = 0;
89 Settings set(int id, int idFlags, int value) { method in class:Settings
95 set |= bit;
114 return (set & bit) != 0;
132 return Integer.bitCount(set);
138 return (bit & set) != 0 ? values[UPLOAD_BANDWIDTH] : defaultValue;
144 return (bit & set) != 0 ? values[HEADER_TABLE_SIZE] : -1;
150 return (bit & set) !
[all...]
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DUnknownFieldSetTest.java437 private void checkEqualsIsConsistent(UnknownFieldSet set) { argument
439 assertEquals(set, set);
442 UnknownFieldSet copy = UnknownFieldSet.newBuilder(set).build();
443 assertEquals(set, copy);
444 assertEquals(copy, set);
445 assertEquals(set.hashCode(), copy.hashCode());
/external/regex-re2/re2/
H A Dstringpiece.h55 void set(const char* data, int len) { ptr_ = data; length_ = len; } function in class:re2::StringPiece
56 void set(const char* str) { function in class:re2::StringPiece
63 void set(const void* data, int len) { function in class:re2::StringPiece
/external/regex-re2/util/
H A Dsparse_array.h49 // Briggs & Torczon describe a sparse set implementation. I have
71 // the array very easy: set size_ to 0. Lookups are slightly more
79 // To insert a new entry, set sparse_to_dense_[i] to size_,
161 inline iterator set(int i, Value v);
213 // Since it doesn't set the value associated with i,
307 typename SparseArray<Value>::iterator SparseArray<Value>::set(int i, Value v) { function in class:re2::SparseArray
/external/replicaisland/src/com/replica/replicaisland/
H A DGrid.java150 public void set(int quadX, int quadY, float[][] positions, float[][] uvs) { method in class:Grid
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowResources.java44 if (shadowResources.resourceLoader != null) throw new RuntimeException("ResourceLoader already set!");
228 public TypedArray obtainStyledAttributes(AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) { argument
H A DShadowTime.java41 set(other);
45 public void set(Time other) { method in class:ShadowTime
61 set(System.currentTimeMillis());
86 set(millis);
103 public void set(long millis) { method in class:ShadowTime
106 set(
123 public void set(int second, int minute, int hour, int monthDay, int month, int year) { method in class:ShadowTime
137 public void set(int monthDay, int month, int year) { method in class:ShadowTime
138 set(0, 0, 0, monthDay, month, year);
203 set(d
[all...]
/external/selinux/policycoreutils/gui/
H A DbooleansPage.py64 def set(self,value): member in class:Modifier
/external/skia/include/core/
H A DSkRect.h37 r.set(0, 0, w, h);
43 r.set(0, 0, size.width(), size.height());
49 rect.set(l, t, r, b);
55 r.set(x, y, x + w, y + h);
127 void set(int32_t left, int32_t top, int32_t right, int32_t bottom) { function in struct:SkIRect
133 // alias for set(l, t, r, b)
135 this->set(left, top, right, bottom);
183 /** Offset set the rectangle by adding dx to its left and right,
279 /** If r intersects this rectangle, return true and set this rectangle to that
287 /** If rectangles a and b intersect, return true and set thi
[all...]
H A DSkRegion.h61 bool set(const SkRegion& src) { function in class:SkRegion
111 * If rect is non-empty, set this region to that rectangle and return true,
112 * otherwise set this region to empty and return false.
117 * If left < right and top < bottom, set this region to that rectangle and
118 * return true, otherwise set this region to empty and return false.
125 * 0, then this region is set to the empty region.
267 rect.set(left, top, right, bottom);
425 // field set on each scanline. That is computed as part of this call
434 // If the runs define a simple rect, return true and set bounds to that
/external/skia/include/gpu/
H A DGrShaderVar.h88 void set(GrSLType type, function in class:GrShaderVar
102 void set(GrSLType type, function in class:GrShaderVar
/external/skia/include/utils/
H A DSkCamera.h20 void set(SkScalar x, SkScalar y, SkScalar z) { function in struct:SkUnit3D
30 void set(SkScalar x, SkScalar y, SkScalar z) { function in struct:SkPoint3D
/external/skia/samplecode/
H A DSampleFilterQuality.cpp86 void set(SkScalar value, SkScalar min, SkScalar max) { function in struct:AnimValue
140 fCell.set(256, 256);
142 fScale.set(1, SK_Scalar1 / 8, 1);
214 size.set(info.width(), info.height());
243 fCell.set(this->height() / 2, this->height() / 2);
/external/skia/src/core/
H A DSkGeometry.h223 void set(const SkPoint pts[3], SkScalar w) { function in struct:SkConic
228 void set(const SkPoint& p0, const SkPoint& p1, const SkPoint& p2, SkScalar w) { function in struct:SkConic
322 conic.set(pts, weight);
H A DSkMetaData.cpp68 this->set(rec->name(), rec->data(), rec->fDataLen, (Type)rec->fType, rec->fDataCount);
76 (void)this->set(name, &value, sizeof(int32_t), kS32_Type, 1);
81 (void)this->set(name, &value, sizeof(SkScalar), kScalar_Type, 1);
88 return (SkScalar*)this->set(name, values, sizeof(SkScalar), kScalar_Type, count);
94 (void)this->set(name, value, sizeof(char), kString_Type, SkToInt(strlen(value) + 1));
99 (void)this->set(name, &pair, sizeof(PtrPair), kPtr_Type, 1);
104 (void)this->set(name, &value, sizeof(bool), kBool_Type, 1);
108 (void)this->set(name, data, sizeof(char), kData_Type, SkToInt(byteCount));
111 void* SkMetaData::set(const char name[], const void* data, size_t dataSize, Type type, int count) function in class:SkMetaData
H A DSkTHash.h39 // set(), find() and foreach() all allow mutable access to table entries.
45 // The pointers returned by set() and find() are valid only until the next call to set().
50 T* set(const T& val) { function in class:SkTHashTable
202 // N.B. The pointers returned by set() and find() are valid only until the next call to set().
206 V* set(const K& key, const V& val) { function in class:SkTHashMap
208 Pair* out = fTable.set(in);
250 // A set of T. T is treated as an ordiary copyable C++ type.
256 // Clear the set
[all...]
/external/skia/src/fonts/
H A DSkFontMgr_indirect.cpp168 familyName->set(fFamilyNames->atStr(index));
172 SkRemotableFontIdentitySet* set = fProxy->getIndex(index); local
173 if (NULL == set) {
176 return SkNEW_ARGS(SkStyleSet_Indirect, (this, index, set));
/external/skia/src/gpu/
H A DGrBatchAtlas.h54 // To ensure the atlas does not evict a given entry, the client must set the last use token
73 this->set(index);
88 void set(int index) { function in class:GrBatchAtlas::BulkUseTokenUpdater
/external/skia/src/pathops/
H A DSkPathOpsConic.h41 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);
H A DSkPathOpsCubic.h78 return cubic.set(a).findInflections(tValues);
108 const SkDCubic& set(const SkPoint pts[kPointCount]) { function in struct:SkDCubic
120 return cubic.set(a).subDivide(t1, t2);
128 cubic.set(pts).subDivide(a, d, t1, t2, p);
139 /* Given the set [0, 1, 2, 3], and two of the four members, compute an XOR mask
H A DSkPathOpsPoint.h21 void set(const SkVector& pt) { function in struct:SkDVector
84 void set(const SkPoint& pt) { function in struct:SkDPoint
149 dA.set(a);
161 dA.set(a);
162 dB.set(b);
213 dA.set(a);
214 dB.set(b);

Completed in 665 milliseconds

<<11121314151617181920>>