HomeSort by relevance Sort by last modified time
    Searched refs:set (Results 276 - 300 of 8780) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.special/
swap_noexcept.pass.cpp 10 // <set>
12 // void swap(set& c)
18 #include <set>
40 typedef std::set<MoveOnly> C;
45 typedef std::set<MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C;
50 typedef std::set<MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C;
55 typedef std::set<MoveOnly, some_comp<MoveOnly>> C;
  /dalvik/dx/src/com/android/dx/dex/code/
Dops.java 1239 private static void set(Dop opcode) { method in class:Dops
    [all...]
  /external/chromium/chrome/browser/history/
starred_url_database.h 9 #include <set>
139 std::set<StarredNode*>* roots,
140 std::set<StarID>* folders_with_duplicate_ids,
141 std::set<StarredNode*>* unparented_urls,
142 std::set<StarID>* empty_url_ids);
152 const std::set<StarredNode*>& nodes,
165 std::set<StarredNode*>* roots,
166 const std::set<StarID>& folders_with_duplicate_ids,
167 std::set<StarredNode*>* unparented_urls,
168 const std::set<StarID>& empty_url_ids)
    [all...]
  /external/chromium_org/chrome/installer/util/
chrome_binaries_operations.cc 19 std::set<string16>* options) const {
25 std::set<string16>* options) const {
31 const std::set<string16>& options,
38 const std::set<string16>& options,
43 const std::set<string16>& options,
55 const std::set<string16>& options,
67 const std::set<string16>& options,
68 bool set,
74 const std::set<string16>& options) const {
87 const std::set<string16>& options
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
naclsdk.bat 9 set SCRIPT_DIR=%~dp0
10 set SDK_TOOLS=%SCRIPT_DIR%sdk_tools
11 set SDK_TOOLS_UPDATE=%SCRIPT_DIR%sdk_tools_update
12 set PYTHON_DIR=%SCRIPT_DIR%python
22 set PYTHONPATH=%SCRIPT_DIR%
  /external/skia/tests/
TestSize.cpp 14 a.set(0, 0);
16 a.set(5, -5);
20 b.set(5, 0);
23 a.set(3, 5);
42 a.set(0, 0);
44 a.set(x, -x);
48 b.set(x, 0);
51 a.set(y, x);
61 ia.set(ix, iy);
62 a.set(x, y)
    [all...]
  /frameworks/base/libs/hwui/
Vertex.h 33 * Program::set()), and used to make geometry damage rect calculation conservative (see
40 static inline void set(Vertex* vertex, float x, float y) { function in struct:android::uirenderer::Vertex
45 static inline void set(Vertex* vertex, vec2 val) { function in struct:android::uirenderer::Vertex
46 set(vertex, val.x, val.y);
50 set(vertex, src.position[0] + x, src.position[1] + y);
62 static inline void set(TextureVertex* vertex, float x, float y, float u, float v) { function in struct:android::uirenderer::TextureVertex
81 static inline void set(ColorTextureVertex* vertex, float x, float y, function in struct:android::uirenderer::ColorTextureVertex
83 TextureVertex::set(vertex, x, y, u, v);
99 static inline void set(AlphaVertex* vertex, float x, float y, float alpha) { function in struct:android::uirenderer::AlphaVertex
100 Vertex::set(vertex, x, y)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
BitSetTest.java 69 bs.set(128);
80 bs.set(10);
93 bs.set(0, bs.size() - 1); // ensure all bits are 1's
94 bs.set(bs.size() - 1);
105 // Check to see all other bits are still set
134 bs.set(25);
151 bitset.set(i);
159 bs.set(0, initialSize);
173 bs.set(0, initialSize);
188 bs.set(0, initialSize)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_set.h 0 // Set implementation -*- C++ -*-
81 * The private tree data is declared exactly the same way for set and
87 class set class
112 _Rep_type _M_t; // Red-black tree representing set.
122 // DR 103. set::iterator is required to be modifiable,
136 set() function in class:set
140 * @brief Creates a %set with no elements.
145 set(const _Compare& __comp, function in class:set
150 * @brief Builds a %set from a range.
154 * Create a %set consisting of copies of the elements from [first,last)
159 set(_InputIterator __first, _InputIterator __last) function in class:set
175 set(_InputIterator __first, _InputIterator __last, function in class:set
188 set(const set& __x) function in class:set
199 set(set&& __x) function in class:set
212 set(initializer_list<value_type> __l, function in class:set
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_set.h 0 // Set implementation -*- C++ -*-
81 * The private tree data is declared exactly the same way for set and
87 class set class
112 _Rep_type _M_t; // Red-black tree representing set.
122 // DR 103. set::iterator is required to be modifiable,
136 set() function in class:set
140 * @brief Creates a %set with no elements.
145 set(const _Compare& __comp, function in class:set
150 * @brief Builds a %set from a range.
154 * Create a %set consisting of copies of the elements from [first,last)
159 set(_InputIterator __first, _InputIterator __last) function in class:set
175 set(_InputIterator __first, _InputIterator __last, function in class:set
188 set(const set& __x) function in class:set
199 set(set&& __x) function in class:set
212 set(initializer_list<value_type> __l, function in class:set
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_set.h 0 // Set implementation -*- C++ -*-
81 * The private tree data is declared exactly the same way for set and
87 class set class
112 _Rep_type _M_t; // Red-black tree representing set.
122 // DR 103. set::iterator is required to be modifiable,
136 set() function in class:set
140 * @brief Creates a %set with no elements.
145 set(const _Compare& __comp, function in class:set
150 * @brief Builds a %set from a range.
154 * Create a %set consisting of copies of the elements from [first,last)
159 set(_InputIterator __first, _InputIterator __last) function in class:set
175 set(_InputIterator __first, _InputIterator __last, function in class:set
188 set(const set& __x) function in class:set
199 set(set&& __x) function in class:set
212 set(initializer_list<value_type> __l, function in class:set
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_set.h 0 // Set implementation -*- C++ -*-
81 * The private tree data is declared exactly the same way for set and
87 class set class
112 _Rep_type _M_t; // Red-black tree representing set.
122 // DR 103. set::iterator is required to be modifiable,
136 set() function in class:set
140 * @brief Creates a %set with no elements.
145 set(const _Compare& __comp, function in class:set
150 * @brief Builds a %set from a range.
154 * Create a %set consisting of copies of the elements from [first,last)
159 set(_InputIterator __first, _InputIterator __last) function in class:set
175 set(_InputIterator __first, _InputIterator __last, function in class:set
188 set(const set& __x) function in class:set
199 set(set&& __x) function in class:set
212 set(initializer_list<value_type> __l, function in class:set
    [all...]
  /external/skia/bench/
Matrix44Bench.cpp 45 fM1.set(0, 0, 0);
46 fM2.set(3, 3, 0);
82 fM0.set(0, 0, -1.1);
83 fM0.set(0, 1, 2.1);
84 fM0.set(0, 2, -3.1);
85 fM0.set(0, 3, 4.1);
86 fM0.set(1, 0, 5.1);
87 fM0.set(1, 1, -6.1);
88 fM0.set(1, 2, 7.1);
89 fM0.set(1, 3, 8.1)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILDevice.cpp 69 mSWBits.set(AMDGPUDeviceInfo::HalfOps);
70 mSWBits.set(AMDGPUDeviceInfo::ByteOps);
71 mSWBits.set(AMDGPUDeviceInfo::ShortOps);
72 mSWBits.set(AMDGPUDeviceInfo::HW64BitDivMod);
74 mSWBits.set(AMDGPUDeviceInfo::NoInline);
77 mSWBits.set(AMDGPUDeviceInfo::MacroDB);
80 mSWBits.set(AMDGPUDeviceInfo::ConstantMem);
82 mHWBits.set(AMDGPUDeviceInfo::ConstantMem);
85 mSWBits.set(AMDGPUDeviceInfo::PrivateMem);
87 mHWBits.set(AMDGPUDeviceInfo::PrivateMem)
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILDevice.cpp 69 mSWBits.set(AMDGPUDeviceInfo::HalfOps);
70 mSWBits.set(AMDGPUDeviceInfo::ByteOps);
71 mSWBits.set(AMDGPUDeviceInfo::ShortOps);
72 mSWBits.set(AMDGPUDeviceInfo::HW64BitDivMod);
74 mSWBits.set(AMDGPUDeviceInfo::NoInline);
77 mSWBits.set(AMDGPUDeviceInfo::MacroDB);
80 mSWBits.set(AMDGPUDeviceInfo::ConstantMem);
82 mHWBits.set(AMDGPUDeviceInfo::ConstantMem);
85 mSWBits.set(AMDGPUDeviceInfo::PrivateMem);
87 mHWBits.set(AMDGPUDeviceInfo::PrivateMem)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_set.h 0 // Set implementation -*- C++ -*-
81 * The private tree data is declared exactly the same way for set and
87 class set class
112 _Rep_type _M_t; // Red-black tree representing set.
122 // DR 103. set::iterator is required to be modifiable,
136 set() function in class:set
140 * @brief Creates a %set with no elements.
145 set(const _Compare& __comp, function in class:set
150 * @brief Builds a %set from a range.
154 * Create a %set consisting of copies of the elements from [first,last)
159 set(_InputIterator __first, _InputIterator __last) function in class:set
175 set(_InputIterator __first, _InputIterator __last, function in class:set
188 set(const set& __x) function in class:set
199 set(set&& __x) function in class:set
212 set(initializer_list<value_type> __l, function in class:set
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/
unisetperf.cpp 53 set.applyPattern(pattern, status);
54 prefrozen=set;
56 set.freeze();
91 // Count spans of characters that are in the set,
92 // and spans of characters that are not in the set.
93 // If the very first character is in the set, then one additional
111 if(tf!=set.contains(c)) {
128 UnicodeSet set; member in class:UnicodeSetPerformanceTest
158 // Verify that the frozen set is equal to the unfrozen one.
159 UnicodeSet set; local
176 const UnicodeSet &set=testcase.set; local
209 UnicodeSet set; local
238 const UnicodeSet &set=testcase.set; local
260 UnicodeSet set; local
289 const UnicodeSet &set=testcase.set; local
315 UnicodeSet set; local
339 const UnicodeSet &set=testcase.set; local
361 UnicodeSet set; local
385 const UnicodeSet &set=testcase.set; local
    [all...]
  /external/icu4c/test/perf/unisetperf/
unisetperf.cpp 53 set.applyPattern(pattern, status);
54 prefrozen=set;
56 set.freeze();
91 // Count spans of characters that are in the set,
92 // and spans of characters that are not in the set.
93 // If the very first character is in the set, then one additional
111 if(tf!=set.contains(c)) {
128 UnicodeSet set; member in class:UnicodeSetPerformanceTest
158 // Verify that the frozen set is equal to the unfrozen one.
159 UnicodeSet set; local
176 const UnicodeSet &set=testcase.set; local
209 UnicodeSet set; local
238 const UnicodeSet &set=testcase.set; local
260 UnicodeSet set; local
289 const UnicodeSet &set=testcase.set; local
315 UnicodeSet set; local
339 const UnicodeSet &set=testcase.set; local
361 UnicodeSet set; local
385 const UnicodeSet &set=testcase.set; local
    [all...]
  /external/chromium/chrome/common/extensions/
extension_l10n_util.h 11 #include <set>
25 // Set the locale for this process to a fixed value, rather than using the
26 // normal file-based lookup mechanisms. This is used to set the locale inside
56 bool AddLocale(const std::set<std::string>& chrome_locales,
59 std::set<std::string>* valid_locales,
67 void GetAllLocales(std::set<std::string>* all_locales);
77 std::set<std::string>* locales,
89 const std::set<std::string>& valid_locales,
96 // |all_locales| is a set of all valid Chrome locales.
99 const std::set<std::string>& all_locales)
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/obsolete/
probslet.h 61 ** Override PR_MAX_SELECT_DESC if you need more space in the select set.
89 ** with its own maximum number of elements in the set.
92 ** A set describing the io descriptors for which ready for reading
96 ** A set describing the io descriptors for which ready for writing
100 ** A set describing the io descriptors for which exception pending
113 ** A set describing the io descriptors which are ready for reading.
116 ** A set describing the io descriptors which are ready for writing.
119 ** A set describing the io descriptors which have pending exception.
137 ** PR_FD_ZERO(&fdset) initializes a descriptor set fdset to the null set
150 NSPR_API(void) PR_FD_ZERO(PR_fd_set *set); variable
    [all...]
  /external/valgrind/main/coregrind/
pub_core_libcsignal.h 45 /* --- Signal set ops --- */
46 extern Int VG_(sigfillset) ( vki_sigset_t* set );
47 extern Int VG_(sigemptyset) ( vki_sigset_t* set );
49 extern Bool VG_(isfullsigset) ( const vki_sigset_t* set );
50 extern Bool VG_(isemptysigset) ( const vki_sigset_t* set );
54 extern Int VG_(sigaddset) ( vki_sigset_t* set, Int signum );
55 extern Int VG_(sigdelset) ( vki_sigset_t* set, Int signum );
56 extern Int VG_(sigismember) ( const vki_sigset_t* set, Int signum );
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboAlbumSet.java 35 for (MediaSet set : mSets) {
36 set.addContentListener(this);
44 for (MediaSet set : mSets) {
45 int size = set.getSubMediaSetCount();
47 return set.getSubMediaSet(index);
57 for (MediaSet set : mSets) {
58 count += set.getSubMediaSetCount();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DosUtils.java 44 cal.set(Calendar.MILLISECOND, 0);
45 cal.set(Calendar.SECOND, (dosTime & 0x1f) * 2);
46 cal.set(Calendar.MINUTE, (dosTime >> 5) & 0x3f);
47 cal.set(Calendar.HOUR_OF_DAY, dosTime >> 11);
49 cal.set(Calendar.DATE, dosDate & 0x1f);
50 cal.set(Calendar.MONTH, ((dosDate >> 5) & 0x0f) - 1);
51 cal.set(Calendar.YEAR, 1980 + (dosDate >> 9));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ClassicToken.cs 82 set {
91 set {
100 set {
109 set {
118 set {
127 set {
135 set {
143 set {
152 set {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ClassicToken.cs 90 set
102 set
114 set
126 set
138 set
150 set
161 set
172 set
184 set

Completed in 1180 milliseconds

<<11121314151617181920>>