Searched refs:reference (Results 1 - 25 of 128) sorted by relevance

123456

/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DBasicPoolEntry.java49 * A weak reference to <code>this</code> used to detect GC of entries.
53 private final BasicPoolEntryRef reference; field in class:BasicPoolEntry
60 * @param queue the reference queue for tracking GC of this entry,
70 this.reference = new BasicPoolEntryRef(this, queue);
82 return this.reference;
/external/bluetooth/glib/docs/
H A DMakefile.am4 SUBDIRS = reference
/external/astl/tests/
H A Dtest_iterator.cpp43 typedef int& reference; typedef in struct:android::Input
51 typedef int& reference; typedef in struct:android::Forward
59 typedef int& reference; typedef in struct:android::Bidirectional
67 typedef int& reference; typedef in struct:android::Random
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java164 * Resolves a URI reference against a base URI. Work-around for bug in
168 * @param reference the URI reference
171 public static URI resolve(final URI baseURI, final String reference) { argument
172 return URIUtils.resolve(baseURI, URI.create(reference));
176 * Resolves a URI reference against a base URI. Work-around for bug in
180 * @param reference the URI reference
183 public static URI resolve(final URI baseURI, URI reference){ argument
187 if (reference
[all...]
/external/webkit/WebCore/platform/cf/
H A DBinaryPropertyList.cpp467 // As each object is written, the object reference is put in the aggregate buffer. Then,
532 ObjectReference reference = m_plan.booleanTrueObjectReference(); local
533 if (m_currentObjectReference != reference)
534 ASSERT(reference < m_currentObjectReference);
539 addAggregateObjectReference(reference);
544 ObjectReference reference = m_plan.integerObjectReference(integer);
545 if (m_currentObjectReference != reference)
546 ASSERT(reference < m_currentObjectReference);
549 return reference;
559 ObjectReference reference
749 appendObjectReference(ObjectReference reference) argument
775 ObjectReference reference = m_currentObjectReference++; local
802 addAggregateObjectReference(ObjectReference reference) argument
[all...]
/external/guava/src/com/google/common/base/
H A DPreconditions.java173 * Ensures that an object reference passed as a parameter to the calling
176 * @param reference an object reference
177 * @return the non-null reference that was validated
178 * @throws NullPointerException if {@code reference} is null
180 public static <T> T checkNotNull(T reference) { argument
181 if (reference == null) {
184 return reference;
188 * Ensures that an object reference passed as a parameter to the calling
191 * @param reference a
197 checkNotNull(T reference, Object errorMessage) argument
221 checkNotNull(T reference, String errorMessageTemplate, Object... errorMessageArgs) argument
[all...]
H A DFinalizableReferenceQueue.java30 * A reference queue with an associated background thread that dequeues
34 * <p>Keep a strong reference to this object until all of the associated
45 * The Finalizer thread keeps a phantom reference to this object. When the
46 * client (ReferenceMap, for example) no longer has a strong reference to
48 * phantom reference. The enqueued reference will trigger the Finalizer to
55 * that Finalizer not have a strong reference back to the class loader.
65 * remain, the Finalizer thread keeps an indirect strong reference to the
83 * Now, Finalizer no longer keeps an indirect strong reference to the
107 * The actual reference queu
[all...]
/external/webkit/WebCore/bindings/scripts/
H A DInFilesParser.pm65 my $reference = { };
71 bless($reference, $object);
72 return $reference;
H A DCodeGenerator.pm76 my $reference = { };
85 bless($reference, $object);
86 return $reference;
158 # inherited through $dataNode's first listed parent. If an array reference
/external/guava/src/com/google/common/base/internal/
H A DFinalizer.java38 * Google Collections, this thread would keep an indirect strong reference
63 * @param frq reference to instance of FinalizableReferenceQueue that started
112 + " by reference finalizer thread.", t);
134 * Cleans up a single reference. Catches and logs all throwables.
136 private void cleanUp(Reference<?> reference) throws ShutDown { argument
143 reference.clear();
145 if (reference == frqReference) {
147 * The client no longer has a reference to the
154 finalizeReferentMethod.invoke(reference);
156 logger.log(Level.SEVERE, "Error cleaning up after reference
[all...]
/external/webkit/WebCore/wml/
H A DWMLVariables.cpp92 // Find beginning of variable reference
165 String substituteVariableReferences(const String& reference, Document* document, WMLVariableEscapingMode escapeMode) argument
169 if (reference.isEmpty())
170 return reference;
174 return reference;
177 String remainingInput = reference;
190 // Consume all characters until the variable reference beginning
278 return reference;
/external/bluetooth/glib/
H A Dsanity_check38 wc -l glib-$VERSION/docs/reference/*/html/*.html | grep total
/external/guava/src/com/google/common/collect/
H A DPlatform.java93 * Returns a new array of the given length with the same type as a reference
96 * @param reference any array of the desired type
99 static <T> T[] newArray(T[] reference, int length) { argument
100 Class<?> type = reference.getClass().getComponentType();
103 // result.getClass() == reference.getClass().getComponentType()
/external/astl/include/
H A Diterator57 typedef _Reference reference;
69 typedef typename _Iterator::reference reference;
81 typedef _T& reference;
91 typedef const _T& reference;
107 typedef typename iterator_traits<_Iterator>::reference reference;
119 reference operator*() const { return *mCurrent; }
139 reference operator[](const difference_type& n) const {
H A Dlist73 typedef _T& reference;
81 reference operator*() const { return static_cast<node_type*>(mNode)->mData; }
114 typedef _T& reference;
124 reference operator*() const { return static_cast<node_type*>(mNode)->mData; }
159 typedef _T& reference;
174 reference front() { return *iterator(mHead.mNext); }
176 reference back() { return *iterator(mHead.mPrev); }
/external/stlport/stlport/stl/
H A D_stack.h68 typedef typename _Sequence::reference reference; typedef in class:stack
84 reference top() { return c.back(); }
H A D_raw_storage_iter.h51 typedef void reference; typedef in class:raw_storage_iterator
H A D_iterator_base.h64 typedef _Reference reference; typedef in struct:iterator
73 typedef void reference; typedef in struct:iterator
82 //associated reference type so we consider that it is not a real reference.
94 # define _STLP_IS_REF_TYPE_REAL_REF(_It, _Tp) _STLP_STD::_IsRefType< _STLP_TYPENAME _STLP_STD::iterator_traits< _Tp >::reference >::_Ret()
153 typedef typename _Iterator::reference reference; typedef in struct:iterator_traits::iterator_traits
171 typedef const _Tp& reference; typedef in struct:iterator_traits::iterator_traits
180 typedef _Tp& reference; typedef in struct:iterator_traits::iterator_traits
190 typedef const _Tp& reference; typedef in struct:iterator_traits::iterator_traits
386 typedef const _Tp& reference; typedef in struct:iterator_traits::_Const_traits
395 typedef _Tp& reference; typedef in struct:iterator_traits::_Nonconst_traits
411 typedef const _Tp& reference; typedef in struct:iterator_traits::_Const_Const_traits
420 typedef const _Tp& reference; typedef in struct:iterator_traits::_Nonconst_Const_traits
[all...]
H A D_queue.h79 typedef typename _Sequence::reference reference; typedef in class:queue
96 reference front() { return c.front(); }
98 reference back() { return c.back(); }
163 typedef typename _Sequence::reference reference; typedef in class:priority_queue
/external/webkit/WebCore/platform/graphics/win/
H A DWKCACFLayer.cpp201 // Our superlayer should be holding a reference to us, so there should be no way for us to be destroyed while we still have a superlayer.
307 void WKCACFLayer::insertSublayerAboveLayer(PassRefPtr<WKCACFLayer> sublayer, const WKCACFLayer* reference) argument
309 if (!reference) {
314 int referenceIndex = indexOfSublayer(reference);
323 void WKCACFLayer::insertSublayerBelowLayer(PassRefPtr<WKCACFLayer> sublayer, const WKCACFLayer* reference) argument
325 if (!reference) {
330 int referenceIndex = indexOfSublayer(reference);
339 void WKCACFLayer::replaceSublayer(WKCACFLayer* reference, PassRefPtr<WKCACFLayer> newLayer) argument
341 ASSERT_ARG(reference, reference);
394 indexOfSublayer(const WKCACFLayer* reference) argument
[all...]
/external/v8/benchmarks/
H A Dbase.js63 // addition to the reference timing that the final score will be based
64 // on. This way, all scores are relative to a reference run and higher
66 function BenchmarkSuite(name, reference, benchmarks) {
68 this.reference = reference;
179 var score = this.reference / mean;
/external/freetype/src/pshinter/
H A Dpshglob.c91 FT_Pos reference = width;
107 reference = w;
111 if ( width >= reference )
114 if ( width < reference )
115 width = reference;
120 if ( width > reference )
121 width = reference;
155 FT_Int reference, delta; local
165 reference = read[1];
166 delta = read[0] - reference;
[all...]
/external/stlport/stlport/stl/debug/
H A D_vector.h61 typedef _Tp& reference; typedef in struct:_Vector_nonconst_traits
71 typedef const _Tp& reference; typedef in struct:_Vector_const_traits
80 typedef _Bit_iterator::reference reference; typedef in struct:_Vector_nonconst_traits
89 typedef _Bit_const_iterator::reference reference; typedef in struct:_Vector_const_traits
161 reference operator[](size_type __n) {
171 reference at(size_type __n) { return _M_non_dbg_impl.at(__n); }
248 reference front() {
256 reference bac
[all...]
/external/libxml2/
H A DSAX.c66 hdlr->reference = xmlSAX2Reference;
114 hdlr->reference = NULL;
161 hdlr->reference = xmlSAX2Reference;
/external/skia/xcode/ports/
H A Dskia_mac.cp57 // Create a Nib reference passing the name of the nib file (without the .nib extension)
62 // Once the nib reference is created, set the menu bar. "MainMenu" is the name of the menu bar
72 // We don't need the nib reference anymore.

Completed in 559 milliseconds

123456