HomeSort by relevance Sort by last modified time
    Searched refs:reference (Results 176 - 200 of 2242) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/
child_iterator.hpp 48 typedef node_pointer_reference reference; typedef in struct:iterator
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/unordered_iterator/
const_iterator.hpp 65 // Iterator's reference type.
66 typedef reference_ reference; typedef in class:const_iterator_
68 // Iterator's const reference type.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/
child_iterator.hpp 48 typedef node_pointer_reference reference; typedef in struct:iterator
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/unordered_iterator/
const_iterator.hpp 65 // Iterator's reference type.
66 typedef reference_ reference; typedef in class:const_iterator_
68 // Iterator's const reference type.
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
child_iterator.hpp 48 typedef node_pointer_reference reference; typedef in struct:iterator
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
child_iterator.hpp 48 typedef node_pointer_reference reference; typedef in struct:iterator
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
child_iterator.hpp 48 typedef node_pointer_reference reference; typedef in struct:iterator
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/pat_trie_/
child_iterator.hpp 48 typedef node_pointer_reference reference; typedef in struct:iterator
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/pat_trie_/
child_iterator.hpp 48 typedef node_pointer_reference reference; typedef in struct:iterator
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/unordered_iterator/
const_iterator.hpp 65 // Iterator's reference type.
66 typedef reference_ reference; typedef in class:const_iterator_
68 // Iterator's const reference type.
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/unordered_iterator/
const_iterator.hpp 62 /// Iterator's reference type.
63 typedef reference_ reference; typedef in class:const_iterator_
65 /// Iterator's const reference type.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/pat_trie_/
child_iterator.hpp 48 typedef node_pointer_reference reference; typedef in struct:iterator
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/unordered_iterator/
const_iterator.hpp 65 // Iterator's reference type.
66 typedef reference_ reference; typedef in class:const_iterator_
68 // Iterator's const reference type.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/unordered_iterator/
const_iterator.hpp 62 /// Iterator's reference type.
63 typedef reference_ reference; typedef in class:const_iterator_
65 /// Iterator's const reference type.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/unordered_iterator/
const_iterator.hpp 62 /// Iterator's reference type.
63 typedef reference_ reference; typedef in class:const_iterator_
65 /// Iterator's const reference type.
  /art/runtime/gc/accounting/
gc_allocator.h 42 typedef typename std::allocator<T>::reference reference; typedef in class:art::gc::accounting::GCAllocatorImpl
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
HttpRetryExceptionTest.java 36 public void assertDeserialized(Serializable reference, Serializable test) {
38 HttpRetryException ref = (HttpRetryException) reference;
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
main.js 6 * Global wallpaperManager reference useful for poking at from the console.
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
BackgroundHTMLParser.h 56 static void create(PassRefPtr<WeakReference<BackgroundHTMLParser> > reference, PassOwnPtr<Configuration> config)
58 new BackgroundHTMLParser(reference, config);
  /external/chromium_org/third_party/opus/src/tests/
run_vectors.sh 88 echo output matches reference
90 echo ERROR: output does not match reference
117 echo output matches reference
119 echo ERROR: output does not match reference
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
stl_allocator.h 65 typedef T& reference; typedef in class:STL_Allocator
78 pointer address(reference x) const { return &x; }
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
stl_allocator.h 65 typedef T& reference; typedef in class:STL_Allocator
78 pointer address(reference x) const { return &x; }
  /external/guava/guava/src/com/google/common/collect/
Platform.java 69 * Returns a new array of the given length with the same type as a reference
72 * @param reference any array of the desired type
75 static <T> T[] newArray(T[] reference, int length) {
76 Class<?> type = reference.getClass().getComponentType();
79 // result.getClass() == reference.getClass().getComponentType()
  /external/guava/guava-tests/test/com/google/common/collect/
ObjectArraysTest.java 134 Object[] reference = list.toArray(); local
136 assertEquals(reference.getClass(), target.getClass());
137 assertTrue(Arrays.equals(reference, target));
157 Object[] reference = list.toArray(array1); local
161 assertEquals(reference.getClass(), target.getClass());
162 assertTrue(Arrays.equals(reference, target));
163 assertTrue(Arrays.equals(reference, target));
165 Object[] expectedArray1 = expectModify ? reference : starting;
  /external/guava/guava-tests/test/com/google/common/testing/
EqualsTesterTest.java 36 private ValidTestObject reference; field in class:EqualsTesterTest
46 reference = new ValidTestObject(1, 2);
55 * Test null reference yields error
60 fail("Should fail on null reference");
69 equalsTester.addEqualityGroup(reference, equalObject1, null);
79 equalsTester.addEqualityGroup(reference, (Object[]) null);
85 * Test adding objects only by addEqualityGroup, with no reference object
107 equalsTester.addEqualityGroup(reference);
116 equalsTester.addEqualityGroup(reference, equalObject1, equalObject2);
176 equalsTester.addEqualityGroup(reference, notEqualObject1)
    [all...]

Completed in 557 milliseconds

1 2 3 4 5 6 78 91011>>