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

1 2

  /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 246 const MCExpr *Ref =
249 MCBinaryExpr::Create(MCBinaryExpr::Sub, Offset, Ref, getContext());
  /external/llvm/lib/Support/
Regex.cpp 150 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789"));
151 Repl = Repl.substr(Ref.size());
154 if (!Ref.getAsInteger(10, RefValue) &&
158 *Error = "invalid backreference string '" + Ref.str() + "'";
  /hardware/ril/mock-ril/src/cpp/
node_object_wrap.h 74 /* Ref() marks the object as being attached to an event loop.
78 virtual void Ref() {
  /external/clang/lib/CodeGen/
CGCXX.cpp 147 llvm::GlobalValue *Ref = cast<llvm::GlobalValue>(GetAddrOfGlobal(TargetDecl));
148 llvm::Constant *Aliasee = Ref;
149 if (Ref->getType() != AliasType)
150 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType);
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 44 static cl::opt<bool> PrintRef("print-ref", cl::ReallyHidden);
50 unsigned NoModRef, Mod, Ref, ModRef;
65 NoModRef = Mod = Ref = ModRef = 0;
200 // Mod/ref alias analysis: compare all pairs of calls and values
218 case AliasAnalysis::Ref:
219 PrintModRefResults("Just Ref", PrintRef, I, *V, F.getParent());
220 ++Ref; break;
228 // Mod/ref alias analysis: compare all pairs of calls
241 case AliasAnalysis::Ref:
242 PrintModRefResults("Just Ref", PrintRef, *C, *D, F.getParent())
    [all...]
  /frameworks/native/opengl/libs/EGL/
egl_object.h 65 egl_object_t* ref; member in class:android::egl_object_t::LocalRef
71 explicit LocalRef(egl_display_t const* display, T o) : ref(0) {
74 ref = native;
78 return static_cast<N*>(ref);
89 egl_object_t::LocalRef<N, T>::LocalRef(egl_object_t* rhs) : ref(rhs) {
90 if (ref) {
91 ref->incRef();
97 if (ref) {
98 ref->destroy();
104 if (ref) {
    [all...]
  /external/libvpx/vp8/common/x86/
postproc_mmx.c 1118 char *Ref = Rand + (rand() & 0xff);
1124 mov edi, Ref
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 12 // implemented by all alias analysis implementations. Mod/Ref information is
225 /// Simple mod/ref information...
228 /// ModRefResult - Represent the result of a mod/ref query. Mod and Ref are
231 enum ModRefResult { NoModRef = 0, Ref = 1, Mod = 2, ModRef = 3 };
255 OnlyReadsArgumentPointees = ArgumentPointees | Ref,
270 OnlyReadsMemory = Anywhere | Ref,
491 /// Higher level methods for querying mod/ref information.
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 230 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Expr);
231 const MCSymbol &S = Ref->getSymbol();
270 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Expr);
271 if (Ref->getKind() == MCSymbolRefExpr::VK_SECREL) {
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 159 BasicBlock *&Ref = Blocks[L];
161 if (Ref) {
162 if (Ref == R) return false;
166 << L << R << Ref;
170 Ref = R;
  /external/clang/lib/Basic/
Diagnostic.cpp 553 unsigned Ref = PluralNumber(Start, End);
554 return Ref == Val;
    [all...]
  /external/libvpx/vp8/common/
postproc.c 479 char *Ref = (char *)(noise + (rand() & 0xff));
489 Pos[j] += Ref[j];
    [all...]
  /external/regex-re2/re2/
regexp.cc 65 int Regexp::Ref() {
76 // Store ref count in overflow map.
95 // Ref count is stored in overflow map.
111 // Deletes this object; ref count has count reached 0.
  /external/llvm/lib/TableGen/
TGParser.cpp     [all...]
  /external/clang/lib/AST/
Expr.cpp 448 RefQualifierKind Ref = MD->getRefQualifier();
449 if (Ref == RQ_LValue)
451 else if (Ref == RQ_RValue)
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h 779 // Ref(variable) matches any argument that is a reference to
783 // The RefMatcher template class implements Ref(variable). It can
785 // from mistakenly using Ref(x) to match a non-reference function
790 // Matcher<int> m1 = Ref(n); // This won't compile.
791 // Matcher<int&> m2 = Ref(n); // This will compile.
804 // compiler to catch using Ref(const_value) as a matcher for a
812 // this catches using Ref(const_value) as a matcher for a
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]
  /external/valgrind/tsan/
thread_sanitizer.cc     [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 943 CXCursor Ref;
976 Ref = clang_getCursor(Data->TU, RefLoc);
977 if (Ref.kind == CXCursor_NoDeclFound) {
979 } else if (Ref.kind != CXCursor_FunctionDecl) {
980 printf("// %s: %s:%d:%d: ", FileCheckPrefix, GetCursorSource(Ref),
982 PrintCursor(Ref, &Data->ValidationData);
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp     [all...]
  /external/valgrind/unittest/
racecheck_unittest.cc     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]

Completed in 1518 milliseconds

1 2