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

1 2 3

  /frameworks/minikin/libs/minikin/
MinikinRefCounted.cpp 25 void MinikinRefCounted::Ref() {
  /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/llvm/lib/MC/
MCSymbol.cpp 48 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value);
49 S = &Ref->getSymbol();
MCObjectStreamer.cpp 381 const MCExpr *Ref =
384 MCBinaryExpr::Create(MCBinaryExpr::Sub, Offset, Ref, getContext());
  /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();
  /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...]
  /external/llvm/include/llvm/IR/
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...]
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 315 const MCSymbolRefExpr *Ref =
318 return getTTypeReference(Ref, Encoding, Streamer);
  /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.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...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 150 auto *Ref = cast<llvm::GlobalValue>(GetAddrOfGlobal(TargetDecl));
151 llvm::Constant *Aliasee = Ref;
152 if (Ref->getType() != AliasType)
153 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType);
173 if (Ref->isDeclaration())
  /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/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType1FormDictionary_autogen.cpp 119 SkPdfDictionary* SkPdfType1FormDictionary::Ref(SkPdfNativeDoc* doc) {
120 SkPdfNativeObject* ret = get("Ref", "");
128 return get("Ref", "") != NULL;
  /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...]
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 256 StringRef Ref = String.toStringRef(Data);
260 char *Mem = (char *)Allocate(Ref.size() + 1, 1);
261 std::copy(Ref.begin(), Ref.end(), Mem);
262 Mem[Ref.size()] = 0;
  /external/eigen/test/
nomalloc.cpp 187 typedef Eigen::Ref<const Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic, Flag > > Ref;
188 typedef Eigen::Ref<const Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic, TransposeFlag> > RefT;
190 Ref r1(m);
191 Ref r2(m.block(rows/3, cols/4, rows/2, cols/2));
196 VERIFY_RAISES_ASSERT(Ref r6(m.transpose()));
197 VERIFY_RAISES_ASSERT(Ref r7(Scalar(2) * m));
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 12 // implemented by all alias analysis implementations. Mod/Ref information is
235 /// Simple mod/ref information...
238 /// ModRefResult - Represent the result of a mod/ref query. Mod and Ref are
241 enum ModRefResult { NoModRef = 0, Ref = 1, Mod = 2, ModRef = 3 };
265 OnlyReadsArgumentPointees = ArgumentPointees | Ref,
280 OnlyReadsMemory = Anywhere | Ref,
376 else if (MRB & Ref)
377 return Ref;
531 /// Higher level methods for querying mod/ref information
    [all...]
  /external/llvm/lib/IR/
Metadata.cpp 123 void ReplaceableMetadataImpl::addRef(void *Ref, OwnerTy Owner) {
125 UseMap.insert(std::make_pair(Ref, std::make_pair(Owner, NextIndex)))
134 void ReplaceableMetadataImpl::dropRef(void *Ref) {
135 bool WasErased = UseMap.erase(Ref);
140 void ReplaceableMetadataImpl::moveRef(void *Ref, void *New,
142 auto I = UseMap.find(Ref);
152 assert((OwnerAndIndex.first || *static_cast<Metadata **>(Ref) == &MD) &&
172 // Check that this Ref hasn't disappeared after RAUW (when updating a
173 // previous Ref).
180 Metadata *&Ref = *static_cast<Metadata **>(Pair.first)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZElimCompare.cpp 140 Reference Ref;
147 Ref.Use = true;
148 Ref.IndirectUse |= (MOReg != Reg);
151 Ref.Def = true;
152 Ref.IndirectDef |= (MOReg != Reg);
158 return Ref;
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 157 BasicBlock *&Ref = Blocks[L];
159 if (Ref) {
160 if (Ref == R) return false;
164 << L << R << Ref;
168 Ref = R;
  /external/llvm/unittests/IR/
ConstantsTest.cpp 321 GlobalVariable *Ref =
323 ASSERT_EQ(Int1, Ref->getInitializer());
326 ASSERT_EQ(Int2, Ref->getInitializer());
341 auto *Ref =
343 ASSERT_EQ(GEP, Ref->getInitializer());
350 ASSERT_EQ(GEP, Ref->getInitializer());
  /external/clang/lib/Basic/
Diagnostic.cpp 496 unsigned Ref = PluralNumber(Start, End);
497 return Ref == Val;
    [all...]
  /external/libvpx/libvpx/vp8/common/
postproc.c 523 char *Ref = (char *)(noise + (rand() & 0xff));
533 Pos[j] += Ref[j];
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 276 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Expr);
277 const MCSymbol &S = Ref->getSymbol();
287 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Expr);
288 return Ref->getKind() == MCSymbolRefExpr::VK_SECREL;
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 368 DataRefImpl Ref = Sec->getRawDataRefImpl();
370 MachO->getSectionName(Ref, SectionName);
371 StringRef SegmentName = MachO->getSectionFinalSegmentName(Ref);
754 DataRefImpl Ref = Sec->getRawDataRefImpl();
756 Obj.getSectionName(Ref, SectionName);
757 StringRef SegmentName = Obj.getSectionFinalSegmentName(Ref);
858 DataRefImpl Ref = I->getRawDataRefImpl();
860 Obj->getSectionName(Ref, SectionName);
861 StringRef SegmentName = Obj->getSectionFinalSegmentName(Ref);
    [all...]

Completed in 1844 milliseconds

1 2 3