Searched refs:set (Results 101 - 125 of 10365) sorted by relevance

1234567891011>>

/external/ceres-solver/internal/ceres/
H A Dvisibility.h43 #include <set>
52 // Given a compressed row block structure, computes the set of
62 vector<set<int> >* visibility);
77 Graph<int>* CreateSchurComplementGraph(const vector<set<int> >& visibility);
/external/chromium_org/chrome/browser/
H A Dflags_storage.h8 #include <set>
20 // Retrieves the flags as a set of strings.
21 virtual std::set<std::string> GetFlags() = 0;
23 virtual bool SetFlags(const std::set<std::string>& flags) = 0;
/external/chromium_org/chrome/browser/install_verification/win/
H A Dmodule_verification_test.h8 #include <set>
20 bool GetLoadedModuleInfoSet(std::set<ModuleInfo>* loaded_module_info_set);
24 static std::set<size_t> reported_module_ids_;
/external/chromium_org/extensions/common/permissions/
H A Dpermission_message_util.h8 #include <set>
22 const std::set<std::string>& hosts);
24 std::set<std::string> GetDistinctHosts(
/external/chromium_org/sql/test/
H A Dscoped_error_ignorer.h8 #include <set>
54 std::set<int> ignore_errors_;
57 std::set<int> errors_ignored_;
/external/libcxx/test/containers/associative/set/
H A Dmax_size.pass.cpp10 // <set>
12 // class set
16 #include <set>
24 typedef std::set<int> M;
30 typedef std::set<int, std::less<int>, min_allocator<int>> M;
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DFixedKeySet.java21 private Set set; field in class:FixedKeySet
26 set = Collections.unmodifiableSet(new HashSet(Arrays.asList(keys)));
30 return set.iterator();
/external/chromium_org/third_party/icu/source/common/
H A Duset_props.cpp35 UnicodeSet* set = new UnicodeSet(pat, *ec); local
37 if(set == 0) {
43 delete set;
44 set = NULL;
46 return (USet*) set;
55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec); local
57 if(set == 0) {
63 delete set;
64 set = NULL;
66 return (USet*) set;
71 uset_applyPattern(USet *set, const UChar *pattern, int32_t patternLength, uint32_t options, UErrorCode *status) argument
100 uset_applyIntPropertyValue(USet* set, UProperty prop, int32_t value, UErrorCode* ec) argument
106 uset_applyPropertyAlias(USet* set, const UChar *prop, int32_t propLength, const UChar *value, int32_t valueLength, UErrorCode* ec) argument
129 uset_toPattern(const USet* set, UChar* result, int32_t resultCapacity, UBool escapeUnprintable, UErrorCode* ec) argument
139 uset_closeOver(USet* set, int32_t attributes) argument
[all...]
/external/icu/icu4c/source/common/
H A Duset_props.cpp35 UnicodeSet* set = new UnicodeSet(pat, *ec); local
37 if(set == 0) {
43 delete set;
44 set = NULL;
46 return (USet*) set;
55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec); local
57 if(set == 0) {
63 delete set;
64 set = NULL;
66 return (USet*) set;
71 uset_applyPattern(USet *set, const UChar *pattern, int32_t patternLength, uint32_t options, UErrorCode *status) argument
100 uset_applyIntPropertyValue(USet* set, UProperty prop, int32_t value, UErrorCode* ec) argument
106 uset_applyPropertyAlias(USet* set, const UChar *prop, int32_t propLength, const UChar *value, int32_t valueLength, UErrorCode* ec) argument
129 uset_toPattern(const USet* set, UChar* result, int32_t resultCapacity, UBool escapeUnprintable, UErrorCode* ec) argument
139 uset_closeOver(USet* set, int32_t attributes) argument
[all...]
/external/deqp/framework/delibs/depool/
H A DdePoolSet.c21 * \brief Memory pool set class.
34 deTestSet* set = deTestSet_create(pool); local
37 /* Test exists() on empty set. */
38 DE_TEST_ASSERT(deTestSet_getNumElements(set) == 0);
40 DE_TEST_ASSERT(!deTestSet_exists(set, (deInt16)i));
44 deTestSet_insert(set, (deInt16)i);
46 DE_TEST_ASSERT(deTestSet_getNumElements(set) == 5000);
50 deBool found = deTestSet_exists(set, (deInt16)i);
56 deTestSet_delete(set, (deInt16)i);
58 DE_TEST_ASSERT(deTestSet_getNumElements(set)
[all...]
H A DdePoolMultiSet.c32 deTestMultiSet* set = deTestMultiSet_create(pool); local
35 /* Test exists() on empty set. */
36 DE_TEST_ASSERT(deTestMultiSet_getNumElements(set) == 0);
38 DE_TEST_ASSERT(!deTestMultiSet_exists(set, (deInt16)i));
42 deTestMultiSet_insert(set, (deInt16)i);
44 DE_TEST_ASSERT(deTestMultiSet_getNumElements(set) == 5000);
48 deBool found = deTestMultiSet_exists(set, (deInt16)i);
54 deTestMultiSet_delete(set, (deInt16)i);
56 DE_TEST_ASSERT(deTestMultiSet_getNumElements(set) == 4000);
60 deBool found = deTestMultiSet_exists(set, (deInt1
[all...]
/external/llvm/lib/Target/R600/
H A DR600RegisterInfo.cpp32 Reserved.set(AMDGPU::ZERO);
33 Reserved.set(AMDGPU::HALF);
34 Reserved.set(AMDGPU::ONE);
35 Reserved.set(AMDGPU::ONE_INT);
36 Reserved.set(AMDGPU::NEG_HALF);
37 Reserved.set(AMDGPU::NEG_ONE);
38 Reserved.set(AMDGPU::PV_X);
39 Reserved.set(AMDGPU::ALU_LITERAL_X);
40 Reserved.set(AMDGPU::ALU_CONST);
41 Reserved.set(AMDGP
[all...]
/external/chromium_org/chrome/installer/util/
H A Dproduct_operations.h8 #include <set>
38 std::set<base::string16>* options) const = 0;
42 std::set<base::string16>* options) const = 0;
47 // uninstallation, the uninstaller will check if any one of a potential set of
52 virtual void AddKeyFiles(const std::set<base::string16>& options,
58 const std::set<base::string16>& options,
61 // Given a command line, appends the set of product-specific flags. These are
64 virtual void AppendProductFlags(const std::set<base::string16>& options,
67 // Given a command line, appends the set of product-specific rename flags.
68 virtual void AppendRenameFlags(const std::set<bas
[all...]
H A Dchrome_app_host_operations.h21 std::set<base::string16>* options) const OVERRIDE;
24 std::set<base::string16>* options) const OVERRIDE;
27 const std::set<base::string16>& options,
31 const std::set<base::string16>& options,
34 virtual void AppendProductFlags(const std::set<base::string16>& options,
37 virtual void AppendRenameFlags(const std::set<base::string16>& options,
40 virtual bool SetChannelFlags(const std::set<base::string16>& options,
41 bool set,
45 const std::set<base::string16>& options) const OVERRIDE;
53 const std::set<bas
[all...]
H A Dchrome_binaries_operations.h21 std::set<base::string16>* options) const OVERRIDE;
24 std::set<base::string16>* options) const OVERRIDE;
27 const std::set<base::string16>& options,
31 const std::set<base::string16>& options,
34 virtual void AppendProductFlags(const std::set<base::string16>& options,
37 virtual void AppendRenameFlags(const std::set<base::string16>& options,
40 virtual bool SetChannelFlags(const std::set<base::string16>& options,
41 bool set,
45 const std::set<base::string16>& options) const OVERRIDE;
53 const std::set<bas
[all...]
H A Dchrome_browser_operations.h20 std::set<base::string16>* options) const OVERRIDE;
23 std::set<base::string16>* options) const OVERRIDE;
26 const std::set<base::string16>& options,
30 const std::set<base::string16>& options,
33 virtual void AppendProductFlags(const std::set<base::string16>& options,
36 virtual void AppendRenameFlags(const std::set<base::string16>& options,
39 virtual bool SetChannelFlags(const std::set<base::string16>& options,
40 bool set,
44 const std::set<base::string16>& options) const OVERRIDE;
52 const std::set<bas
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_util_unittest.cc13 std::set<int> src;
14 std::set<int> dst;
20 // Merge an empty set into a set with elements.
21 std::set<int> src;
22 std::set<int> dst;
29 // Merge two sets where the source elements are already in the target set.
30 std::set<int> src;
31 std::set<int> dst;
40 std::set<in
[all...]
/external/chromium_org/v8/test/perf-test/Collections/
H A Dset.js14 var set; variable
19 set = new Set;
21 set.add(i);
39 if (!set.has(i)) {
44 if (set.has(i)) {
55 set.delete(i);
61 set.forEach(function(v, k) {
/external/oprofile/libutil++/tests/
H A Dcomma_list_tests.cpp32 c1.set("2");
37 c1.set("3");
42 c1.set("2,3");
48 c1.set("all");
56 c2.set("6,all");
61 c2.set("all,6");
66 c2.set("10");
/external/chromium_org/third_party/cython/src/Cython/Includes/libcpp/
H A Dset.pxd3 cdef extern from "<set>" namespace "std":
4 cdef cppclass set[T]:
21 set() nogil except +
22 set(set&) nogil except +
23 #set(key_compare&)
24 #set& operator=(set&)
25 bint operator==(set&, set
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DListHashSetTest.cpp273 Set set; local
274 set.add(ptr);
277 EXPECT_EQ(ptr, set.first());
282 EXPECT_TRUE(set.contains(ptr));
283 EXPECT_TRUE(set.contains(rawPtr));
290 set.remove(rawPtr);
310 Set set; local
311 set.add(-1);
312 set.add(0);
313 set
344 Set set; local
401 Set set; local
459 Set set; local
541 Set set; local
591 OwnPtrSet set; local
629 OwnPtrSet set; local
644 OwnPtrSet set; local
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/
H A DSkPdfFont.cpp20 gPdfStandardFonts.set("Arial", SkPdfStandardFontEntry("Arial", false, false));
21 gPdfStandardFonts.set("Arial,Bold", SkPdfStandardFontEntry("Arial", true, false));
22 gPdfStandardFonts.set("Arial,BoldItalic", SkPdfStandardFontEntry("Arial", true, true));
23 gPdfStandardFonts.set("Arial,Italic", SkPdfStandardFontEntry("Arial", false, true));
24 gPdfStandardFonts.set("Arial-Bold", SkPdfStandardFontEntry("Arial", true, false));
25 gPdfStandardFonts.set("Arial-BoldItalic", SkPdfStandardFontEntry("Arial", true, true));
26 gPdfStandardFonts.set("Arial-BoldItalicMT", SkPdfStandardFontEntry("Arial", true, true));
27 gPdfStandardFonts.set("Arial-BoldMT", SkPdfStandardFontEntry("Arial", true, false));
28 gPdfStandardFonts.set("Arial-Italic", SkPdfStandardFontEntry("Arial", false, true));
29 gPdfStandardFonts.set("Aria
[all...]
/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/skia/experimental/PdfViewer/
H A DSkPdfFont.cpp20 gPdfStandardFonts.set("Arial", SkPdfStandardFontEntry("Arial", false, false));
21 gPdfStandardFonts.set("Arial,Bold", SkPdfStandardFontEntry("Arial", true, false));
22 gPdfStandardFonts.set("Arial,BoldItalic", SkPdfStandardFontEntry("Arial", true, true));
23 gPdfStandardFonts.set("Arial,Italic", SkPdfStandardFontEntry("Arial", false, true));
24 gPdfStandardFonts.set("Arial-Bold", SkPdfStandardFontEntry("Arial", true, false));
25 gPdfStandardFonts.set("Arial-BoldItalic", SkPdfStandardFontEntry("Arial", true, true));
26 gPdfStandardFonts.set("Arial-BoldItalicMT", SkPdfStandardFontEntry("Arial", true, true));
27 gPdfStandardFonts.set("Arial-BoldMT", SkPdfStandardFontEntry("Arial", true, false));
28 gPdfStandardFonts.set("Arial-Italic", SkPdfStandardFontEntry("Arial", false, true));
29 gPdfStandardFonts.set("Aria
[all...]
/external/chromium_org/base/
H A Dstl_util_unittest.cc7 #include <set>
38 std::set<int> set; local
39 set.insert(24);
40 set.insert(1);
41 set.insert(12);
42 EXPECT_TRUE(STLIsSorted(set));
46 std::set<ComparableValue> set; local
47 set
[all...]

Completed in 562 milliseconds

1234567891011>>