Searched refs:set (Results 151 - 175 of 10365) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1323.js43 function set(a, index, value) { function
46 for (var i = 0; i < 5; i++) set(a, 0, 4.5);
47 %OptimizeFunctionOnNextCall(set);
48 set(a, 0, 4.5);
H A Dregress-340125.js30 assertThrows(function () { a.set(b, 1e10); }, RangeError);
/external/chromium_org/v8/test/webkit/
H A Darray-defineOwnProperty.js29 // The length property can be set, and can be made read-only.
42 // The value of an indexed property can be set.
49 shouldBe("var foo = 0; Object.defineProperty([], '0', { set:function(x){foo = x;} })[0] = 42; foo", '42');
76 Object.defineProperty(Array.prototype, "0", { set: function () { throw false; } });
77 Object.defineProperty(Array.prototype, "1", { set: function () { throw false; } });
79 Object.defineProperty(arrObj, "0", { set: function (x) { this.set = x === 42; } });
80 shouldBeTrue("arrObj[0] = 42; arrObj.set;");
/external/llvm/test/MC/ELF/
H A Drelax.s8 .set zed,foo
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_linkage.h39 util_semantic_set_contains(struct util_semantic_set *set, unsigned char value) argument
41 return !!(set->masks[value / (sizeof(long) * 8)] & (1 << (value / (sizeof(long) * 8))));
44 unsigned util_semantic_set_from_program_file(struct util_semantic_set *set, const struct tgsi_token *tokens, enum tgsi_file_type file);
54 void util_semantic_layout_from_set(unsigned char *layout, const struct util_semantic_set *set, unsigned efficient_slots, unsigned num_slots);
/external/valgrind/main/include/
H A Dpub_tool_libcsignal.h43 extern Int VG_(sigprocmask) ( Int how, const vki_sigset_t* set,
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duset.h62 * The resulting set is a superset of the input for the code points but
66 * the original set to their full case folding equivalents.
70 * an input character directly against the closure set.
72 * set with an incremental case folding of the string in question.
74 * The closure set will also contain single code points if the original
75 * set contained case-equivalent strings (like U+00DF for "ss" or "Ss" etc.).
78 * set contained the code point or a string.
89 * of each existing element in the set.
97 * the current character is contained vs. not contained in the set.
106 * - Using a complemented (inverted) set an
[all...]
/external/icu/icu4c/source/common/unicode/
H A Duset.h62 * The resulting set is a superset of the input for the code points but
66 * the original set to their full case folding equivalents.
70 * an input character directly against the closure set.
72 * set with an incremental case folding of the string in question.
74 * The closure set will also contain single code points if the original
75 * set contained case-equivalent strings (like U+00DF for "ss" or "Ss" etc.).
78 * set contained the code point or a string.
89 * of each existing element in the set.
97 * the current character is contained vs. not contained in the set.
106 * - Using a complemented (inverted) set an
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractImmutableSetTest.java62 Set<String> set = of();
63 assertEquals(Collections.<String>emptySet(), set);
64 assertSame(of(), set);
68 Set<String> set = of("a");
69 assertEquals(Collections.singleton("a"), set);
73 Set<String> set = of("a", "b");
74 assertEquals(Sets.newHashSet("a", "b"), set);
78 Set<String> set = of("a", "b", "c");
79 assertEquals(Sets.newHashSet("a", "b", "c"), set);
83 Set<String> set
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILEvergreenDevice.cpp91 mSWBits.set(AMDGPUDeviceInfo::ArenaSegment);
92 mHWBits.set(AMDGPUDeviceInfo::ArenaUAV);
93 mHWBits.set(AMDGPUDeviceInfo::HW64BitDivMod);
95 mSWBits.set(AMDGPUDeviceInfo::Signed24BitOps);
97 mHWBits.set(AMDGPUDeviceInfo::ByteStores);
100 mSWBits.set(AMDGPUDeviceInfo::LocalMem);
101 mSWBits.set(AMDGPUDeviceInfo::RegionMem);
103 mHWBits.set(AMDGPUDeviceInfo::LocalMem);
104 mHWBits.set(AMDGPUDeviceInfo::RegionMem);
106 mHWBits.set(AMDGPUDeviceInf
[all...]
/external/llvm/test/MC/Mips/
H A Delf-tls.s21 .set nomips16
27 .set noreorder
28 .set nomacro
29 .set noat
43 .set at
44 .set macro
45 .set reorder
53 .set nomips16
59 .set noreorder
60 .set nomacr
[all...]
H A Dmips_directives.s13 # CHECK: .set noreorder
21 .set noreorder
25 .set nomacro
26 .set noat
34 .set at=$12
35 .set macro
36 # CHECK: .set reorder
43 .set reorder
48 .set at=$a0
49 .set STORE_MAS
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILEvergreenDevice.cpp91 mSWBits.set(AMDGPUDeviceInfo::ArenaSegment);
92 mHWBits.set(AMDGPUDeviceInfo::ArenaUAV);
93 mHWBits.set(AMDGPUDeviceInfo::HW64BitDivMod);
95 mSWBits.set(AMDGPUDeviceInfo::Signed24BitOps);
97 mHWBits.set(AMDGPUDeviceInfo::ByteStores);
100 mSWBits.set(AMDGPUDeviceInfo::LocalMem);
101 mSWBits.set(AMDGPUDeviceInfo::RegionMem);
103 mHWBits.set(AMDGPUDeviceInfo::LocalMem);
104 mHWBits.set(AMDGPUDeviceInfo::RegionMem);
106 mHWBits.set(AMDGPUDeviceInf
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DvalidationES3.cpp36 typedef std::set<ES3FormatCombination> ES3FormatCombinationSet;
38 static inline void InsertES3FormatCombo(ES3FormatCombinationSet *set, GLenum internalFormat, GLenum format, GLenum type) argument
44 set->insert(info);
49 ES3FormatCombinationSet set; local
55 InsertES3FormatCombo(&set, GL_RGBA8, GL_RGBA, GL_UNSIGNED_BYTE );
56 InsertES3FormatCombo(&set, GL_RGB5_A1, GL_RGBA, GL_UNSIGNED_BYTE );
57 InsertES3FormatCombo(&set, GL_RGBA4, GL_RGBA, GL_UNSIGNED_BYTE );
58 InsertES3FormatCombo(&set, GL_SRGB8_ALPHA8, GL_RGBA, GL_UNSIGNED_BYTE );
59 InsertES3FormatCombo(&set, GL_RGBA8_SNORM, GL_RGBA, GL_BYTE );
60 InsertES3FormatCombo(&set, GL_RGBA
695 CopyConversionSet set; local
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dusettest.c27 static void expect(const USet* set,
31 static void expectContainment(const USet* set,
35 static void expectItems(const USet* set,
82 USet* set; local
87 set = uset_openEmpty();
88 expect(set, "", "abc{ab}", NULL);
89 uset_close(set);
91 set = uset_open(1, 0);
92 expect(set, "", "abc{ab}", NULL);
93 uset_close(set);
236 expect(const USet* set, const char* inList, const char* outList, UErrorCode* ec) argument
253 expectContainment(const USet* set, const char* list, UBool isIn) argument
355 expectItems(const USet* set, const char* items) argument
479 USet *set; local
529 USet *set = uset_openPattern(buf, len, &ec); local
[all...]
/external/chromium_org/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/icu/icu4c/source/test/cintltst/
H A Dusettest.c27 static void expect(const USet* set,
31 static void expectContainment(const USet* set,
35 static void expectItems(const USet* set,
82 USet* set; local
87 set = uset_openEmpty();
88 expect(set, "", "abc{ab}", NULL);
89 uset_close(set);
91 set = uset_open(1, 0);
92 expect(set, "", "abc{ab}", NULL);
93 uset_close(set);
236 expect(const USet* set, const char* inList, const char* outList, UErrorCode* ec) argument
253 expectContainment(const USet* set, const char* list, UBool isIn) argument
355 expectItems(const USet* set, const char* items) argument
479 USet *set; local
529 USet *set = uset_openPattern(buf, len, &ec); local
[all...]
/external/chromium-trace/trace-viewer/build/
H A Dcheck_grit.py35 u = set(grit_files).union(set(known_images))
36 i = set(grit_files).intersection(set(known_images))
43 in_grit_only = list(set(grit_files) - set(known_images))
44 in_known_only = list(set(known_images) - set(grit_files))
H A Dcheck_gyp.py30 u = set(gyp_files).union(set(known_files))
31 i = set(gyp_files).intersection(set(known_files))
38 in_gyp_only = list(set(gyp_files) - set(known_files))
39 in_known_only = list(set(known_files) - set(gyp_files))
/external/chromium_org/chrome/browser/apps/drive/
H A Ddrive_service_bridge.h8 #include <set>
29 std::set<BrowserContextKeyedServiceFactory*>* factories);
/external/chromium_org/chrome/browser/install_verification/win/
H A Dinstall_verification.cc7 #include <set>
32 std::set<ModuleInfo> loaded_modules;
H A Dmodule_verification_common.h8 #include <set>
20 // Retrieves a ModuleInfo set representing all currenly loaded modules. Returns
22 bool GetLoadedModules(std::set<ModuleInfo>* loaded_modules);
/external/chromium_org/chrome/browser/
H A Dremove_rows_table_model.h8 #include <set>
16 typedef std::set<size_t> Rows;
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dcapabilities_holder.js31 set: function(capabilities) {
/external/chromium_org/chrome/browser/sync/sessions/
H A Dsynced_window_delegates_getter.h8 #include <set>
19 virtual const std::set<SyncedWindowDelegate*> GetSyncedWindowDelegates();

Completed in 1169 milliseconds

1234567891011>>