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

1234567891011>>

/external/chromium/base/
H A Dscoped_variant_win.h87 void Set(const wchar_t* str);
90 void Set(int8 i8);
91 void Set(uint8 ui8);
92 void Set(int16 i16);
93 void Set(uint16 ui16);
94 void Set(int32 i32);
95 void Set(uint32 ui32);
96 void Set(int64 i64);
97 void Set(uint64 ui64);
98 void Set(floa
[all...]
H A Dcancellation_flag.cc11 void CancellationFlag::Set() { function in class:base::CancellationFlag
H A Dcancellation_flag_unittest.cc30 ASSERT_DEBUG_DEATH(flag_->Set(), "");
39 flag.Set();
46 flag.Set();
48 flag.Set();
53 // Checks that Set() can't be called from any other thread.
54 // CancellationFlag should die on a DCHECK if Set() is called from
H A Dscoped_variant_win.cc18 Set(str);
39 Set(dispatch);
44 Set(unknown);
49 Set(safearray);
54 Set(var);
111 void ScopedVariant::Set(const wchar_t* str) { function in class:ScopedVariant
117 void ScopedVariant::Set(int8 i8) { function in class:ScopedVariant
123 void ScopedVariant::Set(uint8 ui8) { function in class:ScopedVariant
129 void ScopedVariant::Set(int16 i16) { function in class:ScopedVariant
135 void ScopedVariant::Set(uint1 function in class:ScopedVariant
141 void ScopedVariant::Set(int32 i32) { function in class:ScopedVariant
147 void ScopedVariant::Set(uint32 ui32) { function in class:ScopedVariant
153 void ScopedVariant::Set(int64 i64) { function in class:ScopedVariant
159 void ScopedVariant::Set(uint64 ui64) { function in class:ScopedVariant
165 void ScopedVariant::Set(float r32) { function in class:ScopedVariant
171 void ScopedVariant::Set(double r64) { function in class:ScopedVariant
183 void ScopedVariant::Set(IDispatch* disp) { function in class:ScopedVariant
191 void ScopedVariant::Set(bool b) { function in class:ScopedVariant
197 void ScopedVariant::Set(IUnknown* unk) { function in class:ScopedVariant
205 void ScopedVariant::Set(SAFEARRAY* array) { function in class:ScopedVariant
216 void ScopedVariant::Set(const VARIANT& var) { function in class:ScopedVariant
[all...]
H A Dscoped_variant_win_unittest.cc79 var_bstr.Set(kTestString2);
106 var_bstr2.Set(V_BSTR(&var_bstr));
126 var.Set(static_cast<int8>('v'));
130 var.Set(static_cast<short>(123));
134 var.Set(static_cast<int32>(123));
138 var.Set(static_cast<int64>(123));
142 var.Set(static_cast<uint8>(123));
146 var.Set(static_cast<unsigned short>(123));
150 var.Set(static_cast<uint32>(123));
154 var.Set(static_cas
[all...]
H A Dcancellation_flag.h14 // thread. Calling Set() from one thread and IsSet() from a number of threads
27 // Set the flag. May only be called on the thread which owns the object.
28 void Set();
H A Dscoped_temp_dir.h30 bool Set(const FilePath& path);
/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...]
H A DBiMap.java22 import java.util.Set;
86 * <p>Because a bimap has unique values, this method returns a {@link Set},
90 Set<V> values();
H A DMultisets.java29 import java.util.Set;
77 transient Set<E> elementSet;
79 @Override public Set<E> elementSet() {
80 Set<E> es = elementSet;
86 transient Set<Multiset.Entry<E>> entrySet;
89 @Override public Set<Multiset.Entry<E>> entrySet() {
90 Set<Multiset.Entry<E>> es = entrySet;
94 ? entrySet = (Set) Collections.unmodifiableSet(delegate.entrySet())
184 static <E> Multiset<E> forSet(Set<E> set) {
191 final Set<
[all...]
/external/clearsilver/cs/
H A Dtest4.cs4 <?cs set:Set.1 = $5 ?>
6 <?cs var:Set.1 ?>
8 <?cs set:Set.2 = #5 + #5 * #5?>
10 <?cs var:Set.2 ?>
12 <?cs set:Set.3 = Foo + " " + Blah ?>
13 <?cs var:Set.3 ?>
16 <?cs set:Set.1 = #5 ?>
17 <?cs set:Set.1 = Set.1 + #1 ?>
18 <?cs var:Set
[all...]
/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);
H A Dsample2.cc51 void MyString::Set(const char * c_string) { function in class:MyString
/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/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/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXPolicyNode.java8 import java.util.Set;
15 protected Set expectedPolicies;
17 protected Set policyQualifiers;
30 Set _expectedPolicies,
32 Set _policyQualifiers,
62 public Set getExpectedPolicies()
72 public Set getPolicyQualifiers()
136 Set _expectedPolicies = new HashSet();
143 Set _policyQualifiers = new HashSet();
/external/webkit/WebCore/bindings/v8/
H A DScriptArray.cpp58 v8Object()->Set(v8::Integer::New(index), value.v8Value());
65 v8Object()->Set(v8::Integer::New(index), v8String(value));
72 v8Object()->Set(v8::Integer::New(index), v8::Number::New(value));
79 v8Object()->Set(v8::Integer::New(index), v8::Number::New(value));
86 v8Object()->Set(v8::Integer::New(index), v8::Number::New(value));
93 v8Object()->Set(v8::Integer::New(index), v8Boolean(value));

Completed in 245 milliseconds

1234567891011>>