Home
last modified time | relevance | path

Searched refs:set (Results 1801 - 1825 of 12051) sorted by relevance

1...<<71727374757677787980>>...483

/third_party/typescript/tests/baselines/reference/
H A DtypeGuardsInClassAccessors.js22 set p1(param: string | number) {
45 private set pp1(param: string | number) {
68 static set s1(param: string | number) {
91 private static set ss1(param: string | number) {
126 set: function (param) {
149 set: function (param) {
172 set: function (param) {
195 set: function (param) {
H A DtypeOfThisGeneral.js22 //type of 'this' in member accessor(get and set) body is the class instance type
28 set prop(v) {
62 static set staticProp(v: typeof MyTestClass) {
91 //type of 'this' in member accessor(get and set) body is the class instance type
97 set prop(v) {
131 static set staticProp(v: typeof MyGenericTestClass) {
200 //type of 'this' in member accessor(get and set) body is the class instance type
206 set prop(v) {
231 static set staticProp(v) {
258 //type of 'this' in member accessor(get and set) bod
[all...]
H A DunicodeEscapesInNames01(target=es2015).js185 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
190 _PrivateIdentifierWithEscape1_x.set(this, void 0);
204 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
209 _PrivateIdentifierWithEscape2_xx.set(this, void 0);
223 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
228 _PrivateIdentifierWithExtendedEscape1_x.set(this, void 0);
242 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
247 _PrivateIdentifierWithExtendedEscape2_xx.set(this, void 0);
H A DcomputedPropertyNames3_ES6.js7 set [[0, 1]](v) { }
9 static set [id.toString()](v) { }
18 set [[0, 1]](v) { }
20 static set [id.toString()](v) { }
H A DobjectSpreadSetonlyAccessor.js2 const o1: { foo: number, bar: undefined } = { foo: 1, ... { set bar(_v: number) { } } }
3 const o2: { foo: undefined } = { foo: 1, ... { set foo(_v: number) { } } }
8 const o1 = { foo: 1, ...{ set bar(_v) { } } };
9 const o2 = { foo: 1, ...{ set foo(_v) { } } };
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dbtree_set.h26 // (`std::set` and `std::multiset`) and generally conform to the STL interfaces
30 // Unlike `std::set` and `std::multiset`, which are commonly implemented using
33 // B-tree sets perform better than their `std::set` counterparts, because
37 // `std::set` and `std::multiset` as there are some API differences, which are
59 // values designed to be a more efficient replacement for `std::set` (in most
83 // A `btree_set` supports the same overload set as `std::set`
303 // Supports heterogeneous lookup, provided that the set is provided a
315 // Supports heterogeneous lookup, provided that the set is provided a
333 // Supports heterogeneous lookup, provided that the set i
367 erase_if(btree_set<K, C, A> &set, Pred pred) erase_if() argument
670 erase_if(btree_multiset<K, C, A> &set, Pred pred) erase_if() argument
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dcalregts.cpp153 cal->set(UCAL_YEAR, 1997); in test4100311()
154 cal->set(UCAL_DAY_OF_YEAR, 1); in test4100311()
177 cal->set(97, UCAL_JANUARY, 1, h, 34); in test4074758()
222 cal1->set(UCAL_HOUR, 1); in Test9019()
223 cal2->set(UCAL_HOUR,2); in Test9019()
227 cal1->set(2011,UCAL_MAY,06); in Test9019()
228 cal2->set(2012,UCAL_JANUARY,06); in Test9019()
263 // require the host zone to be set; it can be set in Java. in test4031502()
280 cl->set(190 in test4031502()
[all...]
/third_party/rust/crates/once_cell/tests/
H A Dit.rs31 c.set(90).unwrap(); in once_cell_get_mut()
65 s.set("hello".to_string()).unwrap(); in clone()
90 cell.set("hello".to_string()).unwrap(); in into_inner()
98 cell.set("hello".to_string()).unwrap(); in debug_impl()
106 called.set(called.get() + 1); in lazy_new()
125 called.set(called.get() + 1); in lazy_deref_mut()
144 called.set(called.get() + 1); in lazy_force_mut()
160 called.set(called.get() + 1); in lazy_get_mut()
222 x.set(42).unwrap(); in aliasing_in_get()
224 let _ = x.set(2 in aliasing_in_get()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DRelation.java27 * A Relation is a set of mappings from keys to values.
64 throw (RuntimeException) new IllegalArgumentException("Can't create new set").initCause(e); in Relation()
113 // Set<V> set = data.get(key);
114 // if (set == null || set.size() == 0)
116 // return set.iterator().next();
141 Set<V> set = data.get(key); in put()
142 if (set == null) { in put()
143 data.put(key, set = newSet()); in put()
145 set in put()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DHebrewCalendar.java351 * Constructs a <code>HebrewCalendar</code> with the given date set
354 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
356 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
359 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
365 this.set(YEAR, year); in HebrewCalendar()
366 this.set(MONTH, month); in HebrewCalendar()
367 this.set(DATE, date); in HebrewCalendar()
371 * Constructs a <code>HebrewCalendar</code> with the given date set
374 * @param date The date to which the new calendar is set.
385 * and time set fo
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DRelation.java28 * A Relation is a set of mappings from keys to values.
66 throw (RuntimeException) new IllegalArgumentException("Can't create new set").initCause(e); in Relation()
115 // Set<V> set = data.get(key);
116 // if (set == null || set.size() == 0)
118 // return set.iterator().next();
143 Set<V> set = data.get(key); in put()
144 if (set == null) { in put()
145 data.put(key, set = newSet()); in put()
147 set in put()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DHebrewCalendar.java332 * Constructs a <code>HebrewCalendar</code> with the given date set
335 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
337 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
340 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
345 this.set(YEAR, year); in HebrewCalendar()
346 this.set(MONTH, month); in HebrewCalendar()
347 this.set(DATE, date); in HebrewCalendar()
351 * Constructs a <code>HebrewCalendar</code> with the given date set
354 * @param date The date to which the new calendar is set.
364 * and time set fo
[all...]
/third_party/mesa3d/src/amd/compiler/
H A Daco_util.h234 * Cache-friendly set of 32-bit IDs with O(1) insert/erase/lookup and
237 * Internally implemented as a bit vector: If the set contains an ID, the
238 * corresponding bit is set. It doesn't use std::vector<bool> since we then
241 * The interface resembles a subset of std::set/std::unordered_set.
245 const IDSet* set; member
275 it.set = this; in find()
287 it.set = this; in insert()
313 it.set = this; in cbegin()
327 it.set = this; in cend()
348 uint64_t m = set in operator ++()
[all...]
/third_party/skia/src/core/
H A DSkLineClipper.cpp94 bounds.set(src[0], src[1]); in IntersectLine()
125 tmp[index0].set(sect_with_horizontal(src, clip.fTop), clip.fTop); in IntersectLine()
128 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom); in IntersectLine()
149 tmp[index0].set(clip.fLeft, sect_with_vertical(src, clip.fLeft)); in IntersectLine()
152 tmp[index1].set(clip.fRight, sect_with_vertical(src, clip.fRight)); in IntersectLine()
155 bounds.set(tmp[0], tmp[1]); in IntersectLine()
203 tmp[index0].set(sect_with_horizontal(pts, clip.fTop), clip.fTop); in ClipLine()
207 tmp[index1].set(sect_with_horizontal(pts, clip.fBottom), clip.fBottom); in ClipLine()
245 r->set(clip.fLeft, tmp[index0].fY); in ClipLine()
247 r->set(cli in ClipLine()
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DLazyStringArrayList.java119 list.set(index, s); in get()
126 list.set(index, s); in get()
138 public String set(int index, String s) { in set() method in LazyStringArrayList
140 Object o = list.set(index, s); in set()
239 list.set(index, b); in getByteString()
249 list.set(index, b); in getByteArray()
255 public void set(int index, ByteString s) { in set() method in LazyStringArrayList
261 return list.set(index, s); in setAndReturn()
265 public void set(int index, byte[] s) { in set() method in LazyStringArrayList
271 return list.set(inde in setAndReturn()
342 public byte[] set(int index, byte[] s) { set() method in LazyStringArrayList.ByteArrayListView
385 public ByteString set(int index, ByteString s) { set() method in LazyStringArrayList.ByteStringListView
[all...]
/third_party/vk-gl-cts/modules/glshared/
H A DglsFboUtil.hpp37 #include <set>
138 typedef std::set<ImageFormat> Formats;
144 void addExtensionFormat (ImageFormat format, FormatFlags flags, const std::set<std::string>& requiredExtensions);
149 std::set<std::set<std::string> > getFormatFeatureExtensions (ImageFormat format, FormatFlags requirements) const;
155 std::set<std::string> requiredExtensions;
161 typedef std::map<ImageFormat, std::set<ExtensionInfo> > FormatExtensionMap;
350 typedef std::set<config::Config*> Configs;
380 std::set<std::string> rules;
383 void logRule (tcu::TestLog& log, const std::string& ruleName, const std::set<st
[all...]
/third_party/node/deps/icu-small/source/tools/icuexportdata/
H A Dicuexportdata.cpp442 // The new trie value is the index into the new array with the high order bits set in dumpScriptExtensions()
529 status.set(U_INTERNAL_PROGRAM_ERROR); in writeCanonicalCompositions()
595 status.set(U_INTERNAL_PROGRAM_ERROR); in writeDecompositionData()
618 // NFD expectations don't hold. The set must not contain the half-width in writeDecompositionData()
620 status.set(U_INTERNAL_PROGRAM_ERROR); in writeDecompositionData()
641 status.set(U_INTERNAL_PROGRAM_ERROR); in writeDecompositionData()
652 status.set(U_INTERNAL_PROGRAM_ERROR); in writeDecompositionData()
831 status.set(U_INTERNAL_PROGRAM_ERROR); in computeDecompositions()
837 status.set(U_INTERNAL_PROGRAM_ERROR); in computeDecompositions()
842 status.set(U_INTERNAL_PROGRAM_ERRO in computeDecompositions()
[all...]
/third_party/icu/icu4c/source/tools/icuexportdata/
H A Dicuexportdata.cpp265 // The new trie value is the index into the new array with the high order bits set in dumpScriptExtensions()
352 status.set(U_INTERNAL_PROGRAM_ERROR); in writeCanonicalCompositions()
418 status.set(U_INTERNAL_PROGRAM_ERROR); in writeDecompositionData()
441 // NFD expectations don't hold. The set must not contain the half-width in writeDecompositionData()
443 status.set(U_INTERNAL_PROGRAM_ERROR); in writeDecompositionData()
464 status.set(U_INTERNAL_PROGRAM_ERROR); in writeDecompositionData()
475 status.set(U_INTERNAL_PROGRAM_ERROR); in writeDecompositionData()
627 status.set(U_INTERNAL_PROGRAM_ERROR); in computeDecompositions()
633 status.set(U_INTERNAL_PROGRAM_ERROR); in computeDecompositions()
638 status.set(U_INTERNAL_PROGRAM_ERRO in computeDecompositions()
[all...]
/third_party/skia/src/gpu/v1/
H A DDevice_drawTexture.cpp856 void Device::drawEdgeAAImageSet(const SkCanvas::ImageSetEntry set[], int count, in drawEdgeAAImageSet() argument
866 SkASSERT(!set[i].fHasClip || dstClips); in drawEdgeAAImageSet()
867 SkASSERT(set[i].fMatrixIndex < 0 || preViewMatrices); in drawEdgeAAImageSet()
870 if (set[i].fAlpha != 1.f) { in drawEdgeAAImageSet()
872 entryPaint.writable()->setAlphaf(paintAlpha * set[i].fAlpha); in drawEdgeAAImageSet()
876 set[i].fImage.get(), &set[i].fSrcRect, &set[i].fDstRect, in drawEdgeAAImageSet()
877 set[i].fHasClip ? dstClips + dstClipIndex : nullptr, GrAA::kYes, in drawEdgeAAImageSet()
878 SkToGrQuadAAFlags(set[ in drawEdgeAAImageSet()
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_instr_set.h31 * "instruction set," which is an abstraction for finding duplicate
32 * instructions using a hash set. Note that the question of whether an
42 /** Creates an instruction set, using a given ralloc mem_ctx */
43 struct set *nir_instr_set_create(void *mem_ctx);
45 /** Destroys an instruction set. */
46 void nir_instr_set_destroy(struct set *instr_set);
49 * Adds an instruction to an instruction set if it doesn't exist. If it
58 bool nir_instr_set_add_or_rewrite(struct set *instr_set, nir_instr *instr,
63 * Removes an instruction from an instruction set, so that other instructions
66 void nir_instr_set_remove(struct set *instr_se
[all...]
/third_party/musl/src/signal/
H A Dsigdelset.c4 int sigdelset(sigset_t *set, int sig) in sigdelset() argument
11 set->__bits[s/8/sizeof *set->__bits] &=~(1UL<<(s&8*sizeof *set->__bits-1)); in sigdelset()
H A Dsigaddset.c4 int sigaddset(sigset_t *set, int sig) in sigaddset() argument
11 set->__bits[s/8/sizeof *set->__bits] |= 1UL<<(s&8*sizeof *set->__bits-1); in sigaddset()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H A DStateManager11.cpp299 mShaderConstantsDirty.set();
346 mShaderConstantsDirty.set();
475 mShaderConstantsDirty.set(gl::ShaderType::Compute);
482 mShaderConstantsDirty.set(gl::ShaderType::Vertex);
483 mShaderConstantsDirty.set(gl::ShaderType::Fragment);
491 mShaderConstantsDirty.set(gl::ShaderType::Vertex);
492 mShaderConstantsDirty.set(gl::ShaderType::Fragment);
553 mShaderConstantsDirty.set(gl::ShaderType::Vertex);
596 mShaderConstantsDirty.set(gl::ShaderType::Vertex);
630 mShaderConstantsDirty.set(shaderTyp
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dconfig.h33 int perf_config_set(struct perf_config_set *set,
47 void perf_config_set__delete(struct perf_config_set *set);
48 int perf_config_set__collect(struct perf_config_set *set, const char *file_name,
71 * @set: evlist instance to iterate
75 #define perf_config_set__for_each_entry(set, section, item) \
76 perf_config_sections__for_each_entry(&set->sections, section) \
/kernel/liteos_a/testsuites/unittest/extended/signal/smoke/
H A Dsignal_test_037.cpp37 sigset_t set, oldset; in TestCase() local
41 retval = sigemptyset(&set); in TestCase()
45 retval = sigaddset(&set, SIGTERM); in TestCase()
48 retval = sigprocmask(666, &set, &oldset); // 666, invalid param in TestCase()
56 retval = sigprocmask(SIG_BLOCK, &set, &oldset); in TestCase()

Completed in 19 milliseconds

1...<<71727374757677787980>>...483