HomeSort by relevance Sort by last modified time
    Searched refs:Ref (Results 1 - 25 of 154) sorted by null

1 2 3 4 5 6 7

  /external/eigen/failtest/
ref_3.cpp 6 void call_ref(Ref<VectorXf> a) { }
8 void call_ref(const Ref<const VectorXf> &a) { }
ref_1.cpp 11 void call_ref(Ref<VectorXf> a) { }
ref_2.cpp 5 void call_ref(Ref<VectorXf> a) { }
ref_4.cpp 5 void call_ref(Ref<MatrixXf,0,OuterStride<> > a) {}
ref_5.cpp 5 void call_ref(Ref<VectorXf> a) { }
  /external/llvm/lib/IR/
MetadataTracking.cpp 25 bool MetadataTracking::track(void *Ref, Metadata &MD, OwnerTy Owner) {
26 assert(Ref && "Expected live reference");
27 assert((Owner || *static_cast<Metadata **>(Ref) == &MD) &&
30 R->addRef(Ref, Owner);
36 void MetadataTracking::untrack(void *Ref, Metadata &MD) {
37 assert(Ref && "Expected live reference");
39 R->dropRef(Ref);
42 bool MetadataTracking::retrack(void *Ref, Metadata &MD, void *New) {
43 assert(Ref && "Expected live reference");
45 assert(Ref != New && "Expected change")
    [all...]
  /external/llvm/include/llvm/IR/
MetadataTracking.h 53 static bool track(void *Ref, Metadata &MD, Metadata &Owner) {
54 return track(Ref, MD, &Owner);
62 static bool track(void *Ref, Metadata &MD, MetadataAsValue &Owner) {
63 return track(Ref, MD, &Owner);
70 static void untrack(void *Ref, Metadata &MD);
83 static bool retrack(void *Ref, Metadata &MD, void *New);
94 static bool track(void *Ref, Metadata &MD, OwnerTy Owner);
TrackingMDRef.h 101 /// \brief Typed tracking ref.
106 TrackingMDRef Ref;
110 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {}
112 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {}
113 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {}
115 Ref = std::move(X.Ref);
119 Ref = X.Ref
    [all...]
  /frameworks/minikin/include/minikin/
MinikinRefCounted.h 30 void Ref();
  /frameworks/base/tools/aapt2/
StringPool.h 52 class Ref {
54 Ref();
55 Ref(const Ref&);
56 ~Ref();
58 Ref& operator=(const Ref& rhs);
68 Ref(Entry* entry);
104 friend class Ref;
106 int ref; member in class:aapt::StringPool::Entry
124 int ref; member in class:aapt::StringPool::StyleEntry
    [all...]
StringPool_test.cpp 30 StringPool::Ref ref = pool.makeRef(u"wut"); local
31 EXPECT_EQ(*ref, u"wut");
37 StringPool::Ref ref = pool.makeRef(u"wut"); local
38 StringPool::Ref ref2 = pool.makeRef(u"hey");
40 EXPECT_EQ(*ref, u"wut");
47 StringPool::Ref ref = pool.makeRef(u"wut"); local
48 StringPool::Ref ref2 = pool.makeRef(u"wut")
58 StringPool::Ref ref = pool.makeRef(u"z"); local
71 StringPool::Ref ref = pool.makeRef(u"wut"); local
84 StringPool::Ref ref = pool.makeRef(u"z"); local
115 StringPool::Ref ref = pool.makeRef(u"z"); local
142 StringPool::StyleRef ref = pool.makeRef(str); local
157 StringPool::Ref ref = pool.makeRef(u"android"); local
    [all...]
StringPool.cpp 29 StringPool::Ref::Ref() : mEntry(nullptr) {
32 StringPool::Ref::Ref(const StringPool::Ref& rhs) : mEntry(rhs.mEntry) {
34 mEntry->ref++;
38 StringPool::Ref::Ref(StringPool::Entry* entry) : mEntry(entry) {
40 mEntry->ref++;
44 StringPool::Ref::~Ref()
    [all...]
  /frameworks/minikin/libs/minikin/
MinikinRefCounted.cpp 25 void MinikinRefCounted::Ref() {
  /external/eigen/Eigen/src/Core/
Ref.h 17 typename StrideType = typename internal::conditional<PlainObjectType::IsVectorAtCompileTime,InnerStride<1>,OuterStride<> >::type > class Ref;
19 /** \class Ref
27 * \tparam StrideType optionally specifies strides. By default, Ref implies a contiguous storage along the inner dimension (inner stride==1),
33 * A Ref<> object can represent either a const expression or a l-value:
36 * void foo1(Ref<VectorXf> x);
39 * void foo2(const Ref<const VectorXf>& x);
42 * In the in-out case, the input argument must satisfies the constraints of the actual Ref<> type, otherwise a compilation issue will be triggered.
43 * By default, a Ref<VectorXf> can reference any dense vector expression of float having a contiguous memory layout.
44 * Likewise, a Ref<MatrixXf> can reference any column major dense matrix expression of float whose column's elements are contiguously stored with
65 * void foo3(Ref<VectorXf,0,InnerStride<> > x)
    [all...]
  /libcore/luni/src/main/java/java/sql/
Ref.java 23 * This interface represents an SQL Ref - a data object containing a cursor
26 * The data structure identified by an instance of Ref is held in the
29 * the database supports the {@code Ref} type, it is not typically
31 * the {@code Ref} object can be used in place of the data structure.
33 * A {@code Ref} object is stored into the database using the
34 * {@link PreparedStatement#setRef(int, Ref)} method.
36 public interface Ref {
40 * {@code Ref} references.
49 * Gets the SQL structured type instance referenced by this {@code Ref}.
72 * Sets the value of the structured type that this {@code Ref} references t
    [all...]
  /external/regex-re2/re2/testing/
regexp_test.cc 14 // Test that overflowed ref counts work.
22 CHECK_EQ(re->Ref(), 1);
27 // Depends on overflowed ref counts working.
34 CHECK_EQ(x->Ref(), 1 + v.size()) << x->Ref();
38 CHECK_EQ(x->Ref(), 1) << x->Ref();
  /external/eigen/test/
ref.cpp 35 // test Ref.h
45 typedef Ref<MatrixType> RefMat;
46 typedef Ref<DynMatrixType> RefDynMat;
47 typedef Ref<const DynMatrixType> ConstRefDynMat;
48 typedef Ref<RealDynMatrixType , 0, Stride<Dynamic,Dynamic> > RefRealMatWithStride;
95 typedef Ref<VectorType> RefMat;
96 typedef Ref<DynMatrixType> RefDynMat;
97 typedef Ref<const DynMatrixType> ConstRefDynMat;
98 typedef Ref<RealDynMatrixType , 0, InnerStride<> > RefRealMatWithStride;
99 typedef Ref<DynMatrixType , 0, InnerStride<> > RefMatWithStride
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
InstructionFactory.java 44 public interface InstructionFactory<Ref extends Reference> {
50 Instruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref reference);
52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference);
58 Instruction makeInstruction22c(@Nonnull Opcode opcode, int registerA, int registerB, @Nonnull Ref reference);
64 Instruction makeInstruction31c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference);
69 int registerF, int registerG, @Nonnull Ref reference);
71 @Nonnull Ref reference);
  /external/eigen/doc/examples/
function_taking_ref.cpp 6 float inv_cond(const Ref<const MatrixXf>& a)
  /external/llvm/lib/Object/
COFFObjectFile.cpp 100 const coff_symbol_type *COFFObjectFile::toSymb(DataRefImpl Ref) const {
102 reinterpret_cast<const coff_symbol_type *>(Ref.p);
116 const coff_section *COFFObjectFile::toSec(DataRefImpl Ref) const {
117 const coff_section *Addr = reinterpret_cast<const coff_section*>(Ref.p);
132 void COFFObjectFile::moveSymbolNext(DataRefImpl &Ref) const {
135 const coff_symbol16 *Symb = toSymb<coff_symbol16>(Ref);
137 Ref.p = std::min(reinterpret_cast<uintptr_t>(Symb), End);
139 const coff_symbol32 *Symb = toSymb<coff_symbol32>(Ref);
141 Ref.p = std::min(reinterpret_cast<uintptr_t>(Symb), End);
147 std::error_code COFFObjectFile::getSymbolName(DataRefImpl Ref,
    [all...]
  /external/llvm/lib/MC/
MCSymbol.cpp 48 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value);
49 S = &Ref->getSymbol();
  /external/mesa3d/src/mesa/main/
stencil.c 126 * \param ref front and back reference value.
136 _mesa_StencilFuncSeparateATI( GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask )
156 ref = CLAMP( ref, 0, stencilMax );
163 ctx->Stencil.Ref[0] == ref &&
164 ctx->Stencil.Ref[1] == ref)
169 ctx->Stencil.Ref[0] = ctx->Stencil.Ref[1] = ref
    [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLUImpl.h 26 typedef Ref<Matrix<Scalar,Dynamic,1> > BlockScalarVector;
27 typedef Ref<Matrix<Index,Dynamic,1> > BlockIndexVector;
45 Ref<IndexVector> repfnz_col, IndexVector& xprune, Ref<IndexVector> marker, IndexVector& parent,
  /external/llvm/lib/Support/
Regex.cpp 154 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789"));
155 Repl = Repl.substr(Ref.size());
158 if (!Ref.getAsInteger(10, RefValue) &&
162 *Error = ("invalid backreference string '" + Twine(Ref) + "'").str();
  /frameworks/native/opengl/libs/EGL/
egl_object.h 64 egl_object_t* ref; member in class:android::egl_object_t::LocalRef
70 explicit LocalRef(egl_display_t const* display, T o) : ref(0) {
73 ref = native;
77 return static_cast<N*>(ref);
88 egl_object_t::LocalRef<N, T>::LocalRef(egl_object_t* rhs) : ref(rhs) {
89 if (ref) {
90 ref->incRef();
96 if (ref) {
97 ref->destroy();
103 if (ref) {
    [all...]

Completed in 870 milliseconds

1 2 3 4 5 6 7