HomeSort by relevance Sort by last modified time
    Searched refs:Ref (Results 26 - 50 of 76) sorted by null

12 3 4

  /libcore/luni/src/main/java/java/sql/
CallableStatement.java 521 * Gets the value of a specified SQL {@code REF(<structured type>)}
522 * parameter as a {@code java.sql.Ref}.
527 * @return a {@code java.sql.Ref} with the parameter value. {@code null}
532 public Ref getRef(int parameterIndex) throws SQLException;
535 * Gets the value of a specified SQL {@code REF(<structured type>)}
536 * parameter as a {@code java.sql.Ref}.
541 * java.sql.Ref}. A {@code null} reference is returned if the
545 * @see Ref
547 public Ref getRef(String parameterName) throws SQLException;
791 * of this method for User Defined Types or a {@code REF} type
    [all...]
  /libcore/luni/src/main/java/javax/sql/
RowSet.java 29 import java.sql.Ref;
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 29 import java.sql.Ref;
209 public void setRef(int parameterIndex, Ref theRef) throws SQLException {
457 public Ref getRef(int columnIndex) throws SQLException {
461 public Ref getRef(String colName) throws SQLException {
727 public void updateRef(int columnIndex, Ref x) throws SQLException {
730 public void updateRef(String columnName, Ref x) throws SQLException {
  /external/chromium/testing/gmock/test/
gmock-generated-matchers_test.cc 76 using testing::Ref;
480 EXPECT_THAT(v, ElementsAre(Ref(v[0]), Ref(v[1]), Ref(v[2])));
481 EXPECT_THAT(v, Not(ElementsAre(Ref(v[0]), Ref(v[1]), Ref(a[2]))));
    [all...]
gmock-matchers_test.cc 111 using testing::Ref;
577 Matcher<Base&> m3 = Ref(d);
586 Matcher<const int&> m1 = Ref(n);
936 // Tests that Ref(variable) matches an argument that references
941 Matcher<int&> m = Ref(a);
946 // Tests that Ref(variable) describes itself properly.
949 Matcher<int&> m = Ref(n);
955 // Test that Ref(non_const_varialbe) can be used as a matcher for a
960 Matcher<const int&> m = Ref(a);
965 // Tests that Ref(variable) is covariant, i.e. Ref(derived) can b
    [all...]
gmock_link_test.h 72 // Ref
162 using testing::Ref;
519 // Tests the linkage of the Ref matcher.
524 ON_CALL(mock, VoidFromIntRef(Ref(a))).WillByDefault(Return());
  /external/clang/lib/Analysis/
ThreadSafety.cpp 403 unsigned Ref; // Reference to another VarDefinition
411 : Dec(D), Exp(E), Ref(0), Ctx(C)
416 : Dec(D), Exp(0), Ref(R), Ctx(C)
455 i = VarDefinitions[i].Ref;
492 unsigned Ref = VarDefinitions[i].Ref;
498 dumpVarDefinitionName(Ref);
694 VDef->Ref = 0; // Mark this variable as undefined
    [all...]
  /external/libvpx/vp8/common/x86/
postproc_mmx.c 1118 char *Ref = Rand + (rand() & 0xff);
1124 mov edi, Ref
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp     [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 151 if (MRB & AliasAnalysis::Ref)
163 if (MRB & AliasAnalysis::Ref)
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 606 if (AA->getModRefInfo(DepWrite, Loc) & AliasAnalysis::Ref)
777 if (A == AliasAnalysis::ModRef || A == AliasAnalysis::Ref)
  /external/webkit/LayoutTests/fast/url/script-tests/
relative.js 8 // Empty relative URLs should only remove the ref part of the URL,
11 ["http://foo/bar#ref", "", "http://foo/bar"],
35 ["http://host/a/", "bc/de?query#ref", "http://host/a/bc/de?query#ref"],
41 ["http://host/a?query#ref", "../../../foo", "http://host/foo"],
46 // Ref input
47 ["http://host/a", "#ref", "http://host/a#ref"],
71 ["http://host/a", "//another/path?query#ref", "http://another/path?query#ref"],
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 229 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Expr);
230 const MCSymbol &S = Ref->getSymbol();
269 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Expr);
270 if (Ref->getKind() == MCSymbolRefExpr::VK_SECREL) {
    [all...]
  /external/regex-re2/re2/
regexp.h 316 int Ref(); // For testing.
522 // ref greater than the maximum repeat count (100),
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 447 public void setRef(int i, Ref x) throws SQLException {
715 public Ref getRef(int parameterIndex) throws SQLException {
719 public Ref getRef(String parameterName) throws SQLException {
JDBCResultSet.java 683 public java.sql.Ref getRef(int columnIndex) throws SQLException {
687 public java.sql.Ref getRef(String columnName) throws SQLException {
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 499 CXCursor Ref;
532 Ref = clang_getCursor(Data->TU, RefLoc);
533 if (Ref.kind == CXCursor_NoDeclFound) {
535 } else if (Ref.kind != CXCursor_FunctionDecl) {
536 printf("// %s: %s:%d:%d: ", FileCheckPrefix, GetCursorSource(Ref),
538 PrintCursor(Ref);
    [all...]
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 127 return AliasAnalysis::Ref;
187 return AliasAnalysis::Ref;
568 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
575 case AliasAnalysis::Ref:
    [all...]
BasicAliasAnalysis.cpp 698 // then the call can not mod/ref the pointer unless the call takes the pointer
747 Min = Ref;
834 Min = Ref;
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp 141 // FIXME: Standard ref?
433 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()) {
434 ArgType = Ref->getPointeeType();
498 // FIXME: Standard ref?
    [all...]
  /external/valgrind/tsan/
thread_sanitizer.cc     [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 534 unsigned Ref = PluralNumber(Start, End);
535 return Ref == Val;
  /external/libvpx/vp8/common/
postproc.c 479 char *Ref = (char *)(noise + (rand() & 0xff));
489 Pos[j] += Ref[j];
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp     [all...]

Completed in 1990 milliseconds

12 3 4