Searched refs:Set (Results 1 - 25 of 692) sorted by relevance

1234567891011>>

/external/chromium/base/win/
H A Dscoped_variant.h91 void Set(const wchar_t* str);
94 void Set(int8 i8);
95 void Set(uint8 ui8);
96 void Set(int16 i16);
97 void Set(uint16 ui16);
98 void Set(int32 i32);
99 void Set(uint32 ui32);
100 void Set(int64 i64);
101 void Set(uint64 ui64);
102 void Set(floa
[all...]
/external/proguard/src/proguard/classfile/visitor/
H A DClassCollector.java26 import java.util.Set;
38 private final Set set;
43 * @param set the <code>Set</code> in which all class names will be
46 public ClassCollector(Set set)
H A DMemberCollector.java26 import java.util.Set;
38 private final Set set;
43 * @param set the <code>Set</code> in which all method names/descriptor
46 public MemberCollector(Set set)
H A DClassVersionSetter.java25 import java.util.Set;
37 private final Set newerClassVersions;
54 * @param newerClassVersions the <code>Set</code> in which newer class
58 Set newerClassVersions)
/external/guava/src/com/google/common/collect/
H A DAbstractSetMultimap.java23 import java.util.Set;
30 * {@code Sets}. The {@link #createCollection} method must return a {@code Set}.
47 @Override abstract Set<V> createCollection();
49 @Override public Set<V> get(@Nullable K key) {
50 return (Set<V>) super.get(key);
53 @Override public Set<Map.Entry<K, V>> entries() {
54 return (Set<Map.Entry<K, V>>) super.entries();
57 @Override public Set<V> removeAll(@Nullable Object key) {
58 return (Set<V>) super.removeAll(key);
66 @Override public Set<
[all...]
H A DForwardingSet.java21 import java.util.Set;
37 implements Set<E> {
39 @Override protected abstract Set<E> delegate();
H A DSetMultimap.java23 import java.util.Set;
32 * each return a {@link Set} of values, while {@link #entries} returns a {@code
33 * Set} of map entries. Though the method signature doesn't say so explicitly,
34 * the map returned by {@link #asMap} has {@code Set} values.
45 * method returns a {@link Set}, instead of the {@link java.util.Collection}
48 Set<V> get(@Nullable K key);
54 * method returns a {@link Set}, instead of the {@link java.util.Collection}
57 Set<V> removeAll(@Nullable Object key);
63 * method returns a {@link Set}, instead of the {@link java.util.Collection}
68 Set<
[all...]
/external/chromium/webkit/glue/
H A Dcpp_binding_example.cc15 value->Set(value_);
20 value_.Set(value);
52 my_value.Set(10);
53 my_other_value.Set("Reinitialized!");
62 result->Set(args[0]);
76 result->Set(true);
78 result->Set(7);
80 result->Set(3.14159);
82 result->Set("Success!");
101 // (However, it should only be set using one of the Set() function
[all...]
H A Dcpp_variant.h32 void Set(bool value);
33 void Set(int32_t value);
34 void Set(double value);
39 // this is handled by the other Set() methods and by the destructor.
40 void Set(const char* value); // Must be a null-terminated string.
41 void Set(const std::string& value);
42 void Set(const NPString& new_value);
43 void Set(const NPVariant& new_value);
47 // is no longer needed. The other Set() methods handle this internally.
50 void Set(NPObjec
[all...]
/external/apache-harmony/support/src/test/java/tests/resources/subfolder/tests/resources/
H A Dhyts_resource_fr_FR.java20 import java.util.Set;
24 public Set<String> handleKeySet() {
/external/llvm/include/llvm/ADT/
H A DSmallSet.h36 std::set<T> Set; member in class:llvm::SmallSet
42 bool empty() const { return Vector.empty() && Set.empty(); }
44 return isSmall() ? Vector.size() : Set.size();
53 return Set.count(V);
60 return Set.insert(V).second;
72 Set.insert(Vector.back());
75 Set.insert(V);
87 return Set.erase(V);
98 Set.clear();
101 bool isSmall() const { return Set
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_SetTest.java20 import java.util.Set;
24 Set<Integer> set; // must contain only the Integers 0 to 99
30 public Support_SetTest(String p1, Set<Integer> s) {
38 assertTrue("Set Test - Adding a duplicate element changed the set",
40 assertTrue("Set Test - Removing an element did not change the set", set
43 "Set Test - Adding and removing a duplicate element failed to remove it",
/external/chromium/testing/gtest/samples/
H A Dsample2.h60 Set(a_c_string);
65 Set(string.c_string_);
82 void Set(const char* c_string);
H A Dsample2_unittest.cc94 // Tests the Set method.
95 TEST(MyString, Set) {
98 s.Set(kHelloString);
101 // Set should work when the input pointer is the same as the one
103 s.Set(s.c_string());
107 s.Set(NULL);
/external/gtest/samples/
H A Dsample2.h60 Set(c_string);
65 Set(string.c_string_);
82 void Set(const char * c_string);
H A Dsample2_unittest.cc94 // Tests the Set method.
95 TEST(MyString, Set) {
98 s.Set(kHelloString);
101 // Set should work when the input pointer is the same as the one
103 s.Set(s.c_string());
107 s.Set(NULL);
/external/protobuf/gtest/samples/
H A Dsample2.h60 Set(c_string);
65 Set(string.c_string_);
82 void Set(const char * c_string);
H A Dsample2_unittest.cc94 // Tests the Set method.
95 TEST(MyString, Set) {
98 s.Set(kHelloString);
101 // Set should work when the input pointer is the same as the one
103 s.Set(s.c_string());
107 s.Set(NULL);
/external/chromium/base/synchronization/
H A Dcancellation_flag.cc11 void CancellationFlag::Set() { function in class:base::CancellationFlag
H A Dcancellation_flag_unittest.cc29 ASSERT_DEBUG_DEATH(flag_->Set(), "");
38 flag.Set();
45 flag.Set();
47 flag.Set();
52 // Checks that Set() can't be called from any other thread.
53 // CancellationFlag should die on a DCHECK if Set() is called from
/external/apache-http/src/org/apache/http/impl/client/
H A DRedirectLocations.java36 import java.util.Set;
43 private final Set<URI> uris;
/external/bouncycastle/src/main/java/org/bouncycastle/x509/
H A DPKIXAttrCertChecker.java6 import java.util.Set;
13 * Returns an immutable <code>Set</code> of X.509 attribute certificate
24 * @return an immutable <code>Set</code> of X.509 extension OIDs (in
29 public abstract Set getSupportedExtensions();
/external/llvm/autoconf/m4/
H A Dfunc_isinf.m410 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>])
17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>])
24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf function is found in <cmath>])
31 AC_DEFINE([HAVE_FINITE_IN_IEEEFP_H],1,[Set to 1 if the finite function is found in <ieeefp.h>])
/external/llvm/projects/sample/autoconf/m4/
H A Dfunc_isinf.m410 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>])
17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>])
24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf function is found in <cmath>])
31 AC_DEFINE([HAVE_FINITE_IN_IEEEFP_H],1,[Set to 1 if the finite function is found in <ieeefp.h>])
/external/chromium/chrome/browser/prefs/
H A Dsession_startup_pref_unittest.cc24 url_pref_list->Set(0, Value::CreateStringValue("google.com"));
25 url_pref_list->Set(1, Value::CreateStringValue("chromium.org"));
37 url_pref_list1->Set(0, Value::CreateStringValue("chromium.org"));
41 url_pref_list2->Set(0, Value::CreateStringValue("chromium.org"));
42 url_pref_list2->Set(1, Value::CreateStringValue("chromium.org"));
43 url_pref_list2->Set(2, Value::CreateStringValue("chromium.org"));

Completed in 2064 milliseconds

1234567891011>>