Searched defs:set (Results 501 - 525 of 1028) sorted by relevance

<<21222324252627282930>>

/external/mesa3d/src/gallium/state_trackers/vega/
H A Dshader.c79 void shader_set_color_transform(struct shader *shader, VGboolean set) argument
81 shader->color_transform = set;
84 void shader_set_masking(struct shader *shader, VGboolean set) argument
86 shader->masking = set;
193 * whether any sampler/textures have been set. the actual numbering
/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.java65 /** If set, flow control is disabled for streams directed to the sender of these settings. */
69 private int set; field in class:Settings
81 set = persistValue = persisted = 0;
85 Settings set(int id, int idFlags, int value) { method in class:Settings
91 set |= bit;
110 return (set & bit) != 0;
128 return Integer.bitCount(set);
134 return (bit & set) != 0 ? values[UPLOAD_BANDWIDTH] : defaultValue;
140 return (bit & set) != 0 ? values[HEADER_TABLE_SIZE] : -1;
146 return (bit & set) !
[all...]
/external/openssl/crypto/asn1/
H A Dx_name.c203 entry->set = i;
262 int i, set = -1; local
267 if(entry->set != set) {
273 set = entry->set;
324 int i, set = -1, ret = 0; local
343 if(entry->set != set)
350 set
[all...]
/external/qemu/include/qom/
H A Dobject.h170 * .abstract = true, // or set a default in my_device_class_init
298 * Called when trying to get/set a property.
323 ObjectPropertyAccessor *set; member in struct:ObjectProperty
415 * has occurred to allow a class to set its default virtual method pointers.
781 * @set: the setter to be called to write a property. If this is NULL,
791 ObjectPropertyAccessor *set,
1088 * @set: the setter or NULL if the property is read-only
1096 void (*set)(Object *, const char *, Error **),
1104 * @set: the setter or NULL if the property is read-only
1112 void (*set)(Objec
[all...]
/external/qemu/target-i386/
H A Dhax-darwin.c82 dprint("has set phys mem failed\n");
268 int hax_sync_fpu(CPUState *cpu, struct fx_layout *fl, int set) argument
276 if (set)
283 int hax_sync_msr(CPUState *cpu, struct hax_msr_data *msrs, int set) argument
290 if (set)
297 int hax_sync_vcpu_state(CPUState *cpu, struct vcpu_state_t *state, int set) argument
305 if (set)
H A Dhax-windows.c402 int hax_sync_fpu(CPUState *cpu, struct fx_layout *fl, int set) argument
415 if (set)
435 int hax_sync_msr(CPUState *cpu, struct hax_msr_data *msrs, int set) argument
447 if (set)
467 int hax_sync_vcpu_state(CPUState *cpu, struct vcpu_state_t *state, int set) argument
480 if (set)
/external/qemu/util/
H A Dqemu-thread-posix.c313 * - free->set, when setting the event
314 * - busy->set, when setting the event, followed by futex_wake
315 * - set->free, when resetting the event
318 * set->busy does not happen (it can be observed from the outside but
319 * it really is set->free->busy).
321 * busy->free provably cannot happen; to enforce it, the set->free transition
380 * event will be either set or busy.
395 sigset_t set, oldset; local
411 sigfillset(&set);
412 pthread_sigmask(SIG_SETMASK, &set,
[all...]
/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/skia/experimental/Intersection/
H A DConvexHull_Test.cpp230 const CubicDataSet& set = cubicDataSet[index]; local
231 for (size_t inner = firstInner; inner < set.size; ++inner) {
232 const Cubic& cubic = set.data[inner];
/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);
125 void set(int32_t left, int32_t top, int32_t right, int32_t bottom) { function in struct:SkIRect
131 // alias for set(l, t, r, b)
133 this->set(left, top, right, bottom);
174 /** Offset set the rectangle by adding dx to its left and right,
266 /** If r intersects this rectangle, return true and set this rectangle to that
275 /** 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
112 * If rect is non-empty, set this region to that rectangle and return true,
113 * otherwise set this region to empty and return false.
118 * If left < right and top < bottom, set this region to that rectangle and
119 * return true, otherwise set this region to empty and return false.
126 * 0, then this region is set to the empty region.
268 rect.set(left, top, right, bottom);
426 // field set on each scanline. That is computed as part of this call
435 // If the runs define a simple rect, return true and set bounds to that
/external/skia/include/gpu/
H A DGrTypesPriv.h119 * Each binding other than kEffect may not appear more than once in the current set of attributes.
154 inline void set(GrVertexAttribType type, size_t offset, GrVertexAttribBinding binding) { function in struct:GrVertexAttrib
/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/src/core/
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
/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/pathops/
H A DSkPathOpsPoint.h21 void set(const SkVector& pt) { function in struct:SkDVector
81 void set(const SkPoint& pt) { function in struct:SkDPoint
130 dA.set(a);
142 dA.set(a);
143 dB.set(b);
/external/skia/src/utils/
H A DSkRTConf.cpp154 // register a configuration variable after its value has been set by the parser.
156 // user might set the value after initialization time and we need to have
169 fConfs.set(conf->getName(),confArray);
291 template <typename T> void SkRTConfRegistry::set(const char *name, function in class:SkRTConfRegistry
297 SkDebugf("WARNING: Attempting to set configuration value \"%s\","
308 concrete->set(value);
313 template void SkRTConfRegistry::set(const char *name, bool value, bool);
314 template void SkRTConfRegistry::set(const char *name, int value, bool);
315 template void SkRTConfRegistry::set(const char *name, unsigned int value, bool);
316 template void SkRTConfRegistry::set(cons
[all...]
/external/skia/tools/flags/
H A DSkCommandLineFlags.cpp17 info->fDefaultString.set(defaultValue);
54 static bool string_is_in(const char* target, const char* set[], size_t len) { argument
56 if (0 == strcmp(target, set[i])) {
66 * @param result Pointer to a boolean which will be set to the value in the string, if the
98 // In this case, go ahead and set the value.
138 gUsage.set(usage);
256 // Can be handled by match, above, but can also be set by the next
301 // Since all of the flags have been set, release the memory used by each

Completed in 526 milliseconds

<<21222324252627282930>>