Searched refs:Set (Results 101 - 125 of 980) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarInsufficientPredicatesMessage.java40 public Map<Integer, Set<Token>> altToLocations;
45 Map<Integer, Set<Token>> altToLocations)
63 Map<String, Set<Token>> altToLocationsWithStringKey = new LinkedHashMap<String, Set<Token>>();
H A DNonRegularDecisionMessage.java36 import java.util.Set;
41 public Set<Integer> altsWithRecursion;
43 public NonRegularDecisionMessage(DecisionProbe probe, Set<Integer> altsWithRecursion) {
/external/chromium/chrome/browser/chromeos/
H A Dcros_settings_provider.h20 void Set(const std::string& path, Value* in_value);
30 // Does the real job for Set().
/external/chromium/chrome/browser/policy/
H A Dmock_configuration_policy_store.cc26 policy_map_.Set(policy, value);
/external/chromium/net/base/
H A Daddress_list_net_log_param.cc26 dict->Set("address_list", list);
/external/chromium/net/spdy/
H A Dspdy_settings_storage.h28 void Set(const HostPortPair& host_port_pair,
/external/chromium/third_party/libjingle/source/talk/base/
H A Devent.h48 bool Set();
/external/guava/guava/src/com/google/common/collect/
H A DEmptyContiguousSet.java21 import java.util.Set;
100 if (object instanceof Set) {
101 Set<?> that = (Set<?>) object;
H A DEmptyImmutableSortedSet.java24 import java.util.Set;
79 if (object instanceof Set) {
80 Set<?> that = (Set<?>) object;
H A DSets.java48 import java.util.Set;
55 * Static utility methods pertaining to {@link Set} instances. Also see this
348 * Creates an empty {@code Set} that uses identity to determine equality. It
357 public static <E> Set<E> newIdentityHashSet() {
425 * backing map. In essence, this factory method provides a {@link Set}
428 * corresponding {@link Set} implementation (such as {@link java.util.HashMap}
442 * Set<Object> identityHashSet = Sets.newSetFromMap(
453 public static <E> Set<E> newSetFromMap(Map<E, Boolean> map) {
458 implements Set<E>, Serializable {
460 private transient Set<
[all...]
H A DSingletonImmutableSet.java22 import java.util.Set;
97 if (object instanceof Set) {
98 Set<?> that = (Set<?>) object;
H A DTable.java25 import java.util.Set;
200 Set<Cell<R, C, V>> cellSet();
208 Set<R> rowKeySet();
216 Set<C> columnKeySet();
H A DWellBehavedMap.java22 import java.util.Set;
36 private Set<Entry<K, V>> entrySet;
45 * {@code Set<K> keySet()} and transforming it to
46 * {@code Set<Entry<K, V>>}. All other invocations are delegated as-is.
56 @Override public Set<Entry<K, V>> entrySet() {
57 Set<Entry<K, V>> es = entrySet;
H A DMultiset.java25 import java.util.Set;
30 * A collection that supports order-independent equality, like {@link Set}, but
197 Set<E> elementSet();
218 Set<Entry<E>> entrySet();
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSets.java45 import java.util.Set;
52 * Static utility methods pertaining to {@link Set} instances. Also see this
345 * Creates an empty {@code Set} that uses identity to determine equality. It
354 public static <E> Set<E> newIdentityHashSet() {
422 * backing map. In essence, this factory method provides a {@link Set}
425 * corresponding {@link Set} implementation (such as {@link java.util.HashMap}
439 * Set<Object> identityHashSet = Sets.newSetFromMap(
450 public static <E> Set<E> newSetFromMap(Map<E, Boolean> map) {
455 implements Set<E>, Serializable {
457 private transient Set<
[all...]
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CanvasPixelArrayCustom.cpp43 wrapper->Set(v8::String::NewSymbol("length"),
H A DV8ImageDataCustom.cpp46 // Set the "data" property of the ImageData object to
50 wrapper->Set(v8::String::NewSymbol("data"),
/external/webrtc/src/system_wrappers/interface/
H A Devent_wrapper.h36 // Set is sticky in the sense that it will release at least one thread
38 virtual bool Set() = 0;
40 // Prevents future Wait() calls from finishing without a new Set() call.
44 // by a Set() call depending on if other threads are waiting and if so on
47 // are waiting for the same Set(), only one (random) thread is guaranteed to
52 // Starts a timer that will call a non-sticky version of Set() either once
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpOptions.java36 import java.util.Set;
88 public Set<String> getAllowedMethods(final HttpResponse response) {
94 Set<String> methods = new HashSet<String>();
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DX509CRLEntryHolder.java6 import java.util.Set;
119 public Set getCriticalExtensionOIDs()
130 public Set getNonCriticalExtensionOIDs()
/external/chromium/base/threading/
H A Dthread_local.h19 // call to Set().
22 // been set otherwise with Set().
34 // Singleton<ThreadLocalPointer<MyClass> >::get()->Set(this);
39 // Singleton<ThreadLocalPointer<MyClass> >::get()->Set(NULL);
95 void Set(Type* ptr) { function in class:base::ThreadLocalPointer
116 void Set(bool val) { function in class:base::ThreadLocalBoolean
117 tlp_.Set(reinterpret_cast<void*>(val ? 1 : 0));
/external/chromium/base/
H A Dvalues_unittest.cc24 settings.Set("global", Value::CreateBooleanValue(true));
38 settings.Set("global.toolbar.bookmarks", toolbar_bookmarks);
61 mixed_list->Set(0, Value::CreateBooleanValue(true));
62 mixed_list->Set(1, Value::CreateIntegerValue(42));
63 mixed_list->Set(2, Value::CreateDoubleValue(88.8));
64 mixed_list->Set(3, Value::CreateStringValue("foo"));
195 EXPECT_TRUE(list.Set(0, Value::CreateNullValue()));
247 dict.Set(key, new DeletionTestValue(&deletion_flag));
254 dict.Set(key, new DeletionTestValue(&deletion_flag));
262 dict.Set(ke
[all...]
/external/chromium/chrome/browser/custom_handlers/
H A Dprotocol_handler.cc46 d->Set("protocol", Value::CreateStringValue(protocol_));
47 d->Set("url", Value::CreateStringValue(url_.spec()));
48 d->Set("title", Value::CreateStringValue(title_));
/external/emma/core/java12/com/vladium/emma/
H A DAppLoggers.java12 import java.util.Set;
52 final Set filter;
55 Set temp = null;
/external/emma/core/java12/com/vladium/util/
H A DXProperties.java16 import java.util.Set;
40 final Set /* String */ _propertyNames = new TreeSet ();
59 final Set /* String */ _propertyNames = new TreeSet ();

Completed in 337 milliseconds

1234567891011>>