Searched refs:reference (Results 276 - 300 of 924) sorted by relevance

<<11121314151617181920>>

/external/clang/include/clang/Serialization/
H A DContinuousRangeMap.h39 typedef value_type &reference; typedef in class:clang::ContinuousRangeMap
104 reference back() { return Rep.back(); }
/external/deqp/modules/gles3/functional/
H A Des3fTextureStateQueryTests.cpp57 virtual void verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) = DE_NULL;
58 virtual void verifyFloat (tcu::TestContext& testCtx, GLenum target, GLenum name, GLfloat reference) = DE_NULL;
83 void verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference);
84 void verifyFloat (tcu::TestContext& testCtx, GLenum target, GLenum name, GLfloat reference);
92 void GetTexParameterIVerifier::verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) argument
102 if (state != reference)
104 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << reference << "; got " << state << TestLog::EndMessage;
111 void GetTexParameterIVerifier::verifyFloat (tcu::TestContext& testCtx, GLenum target, GLenum name, GLfloat reference) argument
121 const GLint expectedGLStateMax = StateQueryUtil::roundGLfloatToNearestIntegerHalfUp<GLint>(reference);
122 const GLint expectedGLStateMin = StateQueryUtil::roundGLfloatToNearestIntegerHalfDown<GLint>(reference);
147 verifyInteger(tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) argument
169 verifyFloat(tcu::TestContext& testCtx, GLenum target, GLenum name, GLfloat reference) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DObjectArrays.java48 * Returns a new array of the given length with the same type as a reference
51 * @param reference any array of the desired type
54 public static <T> T[] newArray(T[] reference, int length) { argument
55 return Platform.newArray(reference, length);
/external/libcxx/test/containers/associative/multiset/
H A Dtypes.pass.cpp23 // typedef typename allocator_type::reference reference;
45 static_assert((std::is_same<std::multiset<int>::reference, int&>::value), "");
59 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::reference, int&>::value), "");
/external/libcxx/test/containers/associative/set/
H A Dtypes.pass.cpp23 // typedef typename allocator_type::reference reference;
45 static_assert((std::is_same<std::set<int>::reference, int&>::value), "");
59 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::reference, int&>::value), "");
/external/libcxx/test/containers/sequences/array/
H A Dtypes.pass.cpp16 // typedef T& reference;
37 static_assert((std::is_same<C::reference, T&>::value), "");
51 static_assert((std::is_same<C::reference, T&>::value), "");
/external/libcxx/test/containers/unord/unord.map/
H A Dtypes.pass.cpp24 // typedef value_type& reference;
46 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
63 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
/external/libcxx/test/containers/unord/unord.multimap/
H A Dtypes.pass.cpp24 // typedef value_type& reference;
46 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
63 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
/external/libcxx/test/containers/unord/unord.multiset/
H A Dtypes.pass.cpp23 // typedef value_type& reference;
44 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
60 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
/external/libcxx/test/containers/unord/unord.set/
H A Dtypes.pass.cpp23 // typedef value_type& reference;
44 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
60 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
/external/llvm/include/llvm/Support/
H A DPath.h62 typedef value_type &reference; typedef in class:llvm::sys::path::const_iterator
66 reference operator*() const { return Component; }
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_texture.c55 pipe_reference_init(&tr_res->base.reference, 1);
93 pipe_reference_init(&tr_surf->base.reference, 1);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DResourceReferenceResolver.java59 for (String reference : references) {
60 attributeNamesToValues.put(reference, value);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DMethodImplementationBuilder.java35 import org.jf.dexlib2.iface.reference.StringReference;
36 import org.jf.dexlib2.iface.reference.TypeReference;
87 * Get a reference to a label with the given name.
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderFieldPool.java35 import org.jf.dexlib2.iface.reference.FieldReference;
36 import org.jf.dexlib2.immutable.reference.ImmutableFieldReference;
/external/stlport/stlport/stl/debug/
H A D_iterator.h122 typedef typename _Container::reference reference; typedef in struct:_DBG_iter_base
203 typedef typename _Traits::reference reference; typedef in struct:_DBG_iter
246 reference operator*() const;
288 reference operator[](difference_type __n) const { return *(*this + __n); }
294 _STLP_TYPENAME_ON_RETURN_TYPE _Traits::reference
296 _STLP_TYPENAME_ON_RETURN_TYPE _DBG_iter<_Container, _Traits>::reference
/external/deqp/modules/gles2/functional/
H A Des2fIntegerStateQueryTests.cpp65 virtual void verifyInteger (tcu::TestContext& testCtx, GLenum name, GLint reference) = DE_NULL;
68 virtual void verifyIntegerGreaterOrEqual (tcu::TestContext& testCtx, GLenum name, GLint reference) = DE_NULL;
69 virtual void verifyUnsignedIntegerGreaterOrEqual (tcu::TestContext& testCtx, GLenum name, GLuint reference) = DE_NULL;
100 void verifyInteger (tcu::TestContext& testCtx, GLenum name, GLint reference);
103 void verifyIntegerGreaterOrEqual (tcu::TestContext& testCtx, GLenum name, GLint reference);
104 void verifyUnsignedIntegerGreaterOrEqual (tcu::TestContext& testCtx, GLenum name, GLuint reference);
115 void GetBooleanVerifier::verifyInteger (tcu::TestContext& testCtx, GLenum name, GLint reference) argument
125 const GLboolean expectedGLState = reference ? GL_TRUE : GL_FALSE;
174 void GetBooleanVerifier::verifyIntegerGreaterOrEqual (tcu::TestContext& testCtx, GLenum name, GLint reference) argument
184 if (state == GL_TRUE) // state is non-zero, could be greater than reference (correc
204 verifyUnsignedIntegerGreaterOrEqual(tcu::TestContext& testCtx, GLenum name, GLuint reference) argument
338 verifyInteger(tcu::TestContext& testCtx, GLenum name, GLint reference) argument
388 verifyIntegerGreaterOrEqual(tcu::TestContext& testCtx, GLenum name, GLint reference) argument
406 verifyUnsignedIntegerGreaterOrEqual(tcu::TestContext& testCtx, GLenum name, GLuint reference) argument
475 const GLint reference = (1 << stencilBits) - 1; local
506 verifyInteger(tcu::TestContext& testCtx, GLenum name, GLint reference) argument
558 verifyIntegerGreaterOrEqual(tcu::TestContext& testCtx, GLenum name, GLint reference) argument
576 verifyUnsignedIntegerGreaterOrEqual(tcu::TestContext& testCtx, GLenum name, GLuint reference) argument
640 const GLint reference = (1 << stencilBits) - 1; local
[all...]
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java63 * a reference to it gets stored in the static LogFactory.factories member,
68 * reference to the component's classloader from a key in the "global"
87 * base LogFactory class, then there is a strong reference from the LogFactory
88 * class to the LogFactory1 instance (as normal) and a strong reference from
397 private final WeakReference reference; field in class:WeakHashtable.Referenced
405 reference = new WeakReference(referant);
416 reference = new WeakKey(key, queue, this);
428 return reference.get();
464 * WeakReference subclass that holds a hard reference to an
/external/chromium_org/native_client_sdk/src/doc/
H A Dindex.rst99 Reference <reference/pnacl-bitcode-abi>` or the :doc:`Sandbox internals
100 <reference/sandbox_internals/index>`.
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DBackgroundHTMLParser.cpp79 void BackgroundHTMLParser::start(PassRefPtr<WeakReference<BackgroundHTMLParser> > reference, PassOwnPtr<Configuration> config) argument
81 new BackgroundHTMLParser(reference, config);
85 BackgroundHTMLParser::BackgroundHTMLParser(PassRefPtr<WeakReference<BackgroundHTMLParser> > reference, PassOwnPtr<Configuration> config) argument
86 : m_weakFactory(reference, this)
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dcobject.pxd16 # Return value: New reference.
22 # Return value: New reference.
H A Dcomplex.pxd34 # Return value: New reference.
38 # Return value: New reference.
H A Ddict.pxd29 # Return value: New reference.
33 # Return value: New reference.
47 # Return value: New reference.
70 # Return value: Borrowed reference.
76 # Return value: Borrowed reference.
81 # Return value: New reference.
87 # Return value: New reference.
93 # Return value: New reference.
H A Dtype.pxd38 # Return value: New reference.
41 # Return value: New reference.
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
H A Dpb_bufmgr_pool.c111 assert(!pipe_is_referenced(&pool_buf->base.reference));
221 assert(!pipe_is_referenced(&pool_buf->base.reference));
222 pipe_reference_init(&pool_buf->base.reference, 1);
300 pipe_reference_init(&pool_buf->base.reference, 0);

Completed in 760 milliseconds

<<11121314151617181920>>