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

1 2 3 4 5 6 7

  /frameworks/minikin/include/minikin/
MinikinRefCounted.h 30 void Ref();
  /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...]
SQLInput.java 247 * java.sql.Ref}.
249 * @return the next attribute as a {@code java.sql.Ref}. {@code null} if the
253 * @see Ref
255 public Ref readRef() throws SQLException;
SQLOutput.java 229 * Write an SQL {@code Ref} value into the output stream.
232 * the {@code java.sql.Ref} object to write.
235 * @see Ref
237 public void writeRef(Ref theRef) throws SQLException;
  /external/chromium_org/third_party/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/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/llvm/lib/Object/
COFFObjectFile.cpp 92 const coff_symbol *COFFObjectFile::toSymb(DataRefImpl Ref) const {
93 const coff_symbol *Addr = reinterpret_cast<const coff_symbol*>(Ref.p);
110 const coff_section *COFFObjectFile::toSec(DataRefImpl Ref) const {
111 const coff_section *Addr = reinterpret_cast<const coff_section*>(Ref.p);
127 void COFFObjectFile::moveSymbolNext(DataRefImpl &Ref) const {
128 const coff_symbol *Symb = toSymb(Ref);
130 Ref.p = reinterpret_cast<uintptr_t>(Symb);
133 std::error_code COFFObjectFile::getSymbolName(DataRefImpl Ref,
135 const coff_symbol *Symb = toSymb(Ref);
139 std::error_code COFFObjectFile::getSymbolAddress(DataRefImpl Ref,
    [all...]
  /external/eigen/doc/examples/
function_taking_ref.cpp 6 float inv_cond(const Ref<const MatrixXf>& a)
  /external/chromium_org/base/mac/
foundation_util.h 114 BASE_EXPORT std::string TypeNameForCFType(TypeCF##Ref);
195 BASE_EXPORT TypeNS* CFToNSCast(TypeCF##Ref cf_val); \
196 BASE_EXPORT TypeCF##Ref NSToCFCast(TypeNS* ns_val); \
206 BASE_EXPORT NSMutable##name* CFToNSCast(CFMutable##name##Ref cf_val); \
207 BASE_EXPORT CFMutable##name##Ref NSToCFCast(NSMutable##name* ns_val); \
268 template<> BASE_EXPORT TypeCF##Ref \
269 CFCast<TypeCF##Ref>(const CFTypeRef& cf_val);\
271 template<> BASE_EXPORT TypeCF##Ref \
272 CFCastStrict<TypeCF##Ref>(const CFTypeRef& cf_val);
  /external/llvm/lib/MC/
MCSymbol.cpp 48 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value);
49 S = &Ref->getSymbol();
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/leveldatabase/src/db/
memtable.h 23 // is zero and the caller must call Ref() at least once.
27 void Ref() { ++refs_; }
  /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 '" + Ref.str() + "'";
  /frameworks/native/opengl/libs/EGL/
egl_object.h 63 egl_object_t* ref; member in class:android::egl_object_t::LocalRef
69 explicit LocalRef(egl_display_t const* display, T o) : ref(0) {
72 ref = native;
76 return static_cast<N*>(ref);
87 egl_object_t::LocalRef<N, T>::LocalRef(egl_object_t* rhs) : ref(rhs) {
88 if (ref) {
89 ref->incRef();
95 if (ref) {
96 ref->destroy();
102 if (ref) {
    [all...]
  /external/llvm/bindings/ocaml/transforms/passmgr_builder/
passmgr_builder_ocaml.c 41 static value alloc_pmbuilder(LLVMPassManagerBuilderRef Ref) {
44 PMBuilder_val(Val) = Ref;
  /external/chromium_org/mojo/public/cpp/bindings/lib/
array_internal.h 26 typedef T& Ref;
32 static Ref ToRef(StorageType* storage, size_t offset) {
43 typedef P*& Ref;
49 static Ref ToRef(StorageType* storage, size_t offset) {
60 typedef Array_Data<T>*& Ref;
66 static Ref ToRef(StorageType* storage, size_t offset) {
98 typedef BitRef Ref;
220 typedef typename Traits::Ref Ref;
260 Ref at(size_t offset)
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 43 static cl::opt<bool> PrintRef("print-ref", cl::ReallyHidden);
51 unsigned NoModRef, Mod, Ref, ModRef;
66 NoModRef = Mod = Ref = ModRef = 0;
271 // Mod/ref alias analysis: compare all pairs of calls and values
289 case AliasAnalysis::Ref:
290 PrintModRefResults("Just Ref", PrintRef, I, *V, F.getParent());
291 ++Ref; break;
299 // Mod/ref alias analysis: compare all pairs of calls
312 case AliasAnalysis::Ref:
313 PrintModRefResults("Just Ref", PrintRef, *C, *D, F.getParent())
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType1FormDictionary_autogen.h 47 SkPdfDictionary* Ref(SkPdfNativeDoc* doc);
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType1FormDictionary_autogen.h 47 SkPdfDictionary* Ref(SkPdfNativeDoc* doc);

Completed in 537 milliseconds

1 2 3 4 5 6 7