HomeSort by relevance Sort by last modified time
    Searched refs:get (Results 2651 - 2675 of 4892) sorted by null

<<101102103104105106107108109110>>

  /external/guava/src/com/google/common/collect/
AbstractMultimap.java 99 * The get method returns a WrappedCollection, which decorates the collection
187 Collection<V> collection = map.get(key);
205 Collection<V> collection = map.get(key);
214 Collection<V> collection = map.get(key);
336 public Collection<V> get(@Nullable K key) { method in class:AbstractMultimap
337 Collection<V> collection = map.get(key);
415 Collection<V> newDelegate = map.get(key);
712 public V get(int index) { method in class:AbstractMultimap.WrappedList
714 return getListDelegate().get(index);
958 collection = map.get(key)
1322 @Override public Collection<V> get(Object key) { method in class:AsMap
    [all...]
ImmutableSetMultimap.java 198 Collection<V> collection = builderMultimap.get(checkNotNull(key));
297 @Override public ImmutableSet<V> get(@Nullable K key) { method in class:ImmutableSetMultimap
299 ImmutableSet<V> set = (ImmutableSet<V>) map.get(key);
  /external/proguard/src/proguard/
Initializer.java 133 // Initialize the Class.get[Declared]{Field,Method} references.
341 KeepClassSpecification keepClassSpecification = (KeepClassSpecification)noteExceptions.get(index);
382 KeepClassSpecification keepClassSpecification = (KeepClassSpecification)noteExceptions.get(index);
392 (MemberSpecification)memberSpecifications.get(index2);
  /external/v8/test/cctest/
test-decls.cc 60 int get, int set, int has,
69 virtual v8::Handle<Value> Get(Local<String> key);
75 // Get the holder for the interceptor. Default to the instance template
127 int get, int set, int has,
138 CHECK_EQ(get, get_count());
160 return context->Get(key);
186 v8::Handle<Value> DeclarationContext::Get(Local<String> key) {
386 // Return that the property is present so we only get the
536 1, // get
  /external/webkit/JavaScriptGlue/
JSUtils.cpp 302 unsigned int length = object->get(exec, Identifier(exec, "length")).toUInt32(exec);
308 CFTypeRef cfValue = KJSValueToCFTypeInternal(object->get(exec, i), exec, &imps);
334 CFTypeRef cfValue = KJSValueToCFTypeInternal(object->get(exec, propName), exec, &imps);
  /external/webkit/WebCore/html/
HTMLElement.cpp 126 return tagPriorityMap->get(localName().impl());
288 parseHTMLDocumentFragment(html, fragment.get(), scriptingPermission);
290 if (!parseXMLDocumentFragment(html, fragment.get(), this, scriptingPermission))
312 node->removeChild(child.get(), ignoredExceptionCode);
314 fragment->insertBefore(child, node.get(), ignoredExceptionCode);
317 fragment->removeChild(node.get(), ignoredExceptionCode);
320 fragment->removeChild(node.get(), ignoredExceptionCode);
346 if (hasOneTextChild(element) && hasOneTextChild(fragment.get())) {
591 parseHTMLDocumentFragment(html, fragment.get());
593 if (!parseXMLDocumentFragment(html, fragment.get(), this)
    [all...]