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

1 2 3 4 5 6

  /external/llvm/unittests/Support/
ConvertUTFTest.cpp 19 ArrayRef<char> Ref(Src, sizeof(Src) - 1);
21 bool Success = convertUTF16ToUTF8String(Ref, Result);
30 ArrayRef<char> Ref(Src, sizeof(Src) - 1);
32 bool Success = convertUTF16ToUTF8String(Ref, Result);
  /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/chromium_org/net/http/
http_pipelined_host_pool_unittest.cc 18 using testing::Ref;
89 Ref(ssl_config_),
90 Ref(proxy_info_),
91 Ref(net_log_),
105 EXPECT_CALL(*factory_, CreateNewHost(pool_.get(), Ref(key), _,
133 EXPECT_CALL(*factory_, CreateNewHost(pool_.get(), Ref(key_), _,
143 EXPECT_CALL(*factory_, CreateNewHost(pool_.get(), Ref(key_), _,
152 EXPECT_CALL(*factory_, CreateNewHost(pool_.get(), Ref(key_), _,
163 EXPECT_CALL(*factory_, CreateNewHost(pool_.get(), Ref(key_), _,
174 EXPECT_CALL(*factory_, CreateNewHost(pool_.get(), Ref(key_), _
    [all...]
http_pipelined_host_forced_unittest.cc 16 using testing::Ref;
38 Ref(ssl_config_), Ref(proxy_info_),
39 Ref(net_log_), true,
http_pipelined_host_impl_unittest.cc 17 using testing::Ref;
49 Ref(ssl_config_), Ref(proxy_info_),
50 Ref(net_log_), true,
  /external/chromium/base/mac/
mac_util.h 41 std::string PathFromFSRef(const FSRef& ref);
42 bool FSRefFromPath(const std::string& path, FSRef* ref);
140 TypeNS* CFToNSCast(TypeCF##Ref cf_val); \
141 TypeCF##Ref NSToCFCast(TypeNS* ns_val); \
151 NSMutable##name* CFToNSCast(CFMutable##name##Ref cf_val); \
152 CFMutable##name##Ref NSToCFCast(NSMutable##name* ns_val); \
  /external/chromium_org/base/mac/
foundation_util.h 110 BASE_EXPORT std::string TypeNameForCFType(TypeCF##Ref);
191 BASE_EXPORT TypeNS* CFToNSCast(TypeCF##Ref cf_val); \
192 BASE_EXPORT TypeCF##Ref NSToCFCast(TypeNS* ns_val); \
202 BASE_EXPORT NSMutable##name* CFToNSCast(CFMutable##name##Ref cf_val); \
203 BASE_EXPORT CFMutable##name##Ref NSToCFCast(NSMutable##name* ns_val); \
258 template<> BASE_EXPORT TypeCF##Ref \
259 CFCast<TypeCF##Ref>(const CFTypeRef& cf_val);\
261 template<> BASE_EXPORT TypeCF##Ref \
262 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/llvm/lib/Support/
Regex.cpp 152 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789"));
153 Repl = Repl.substr(Ref.size());
156 if (!Ref.getAsInteger(10, RefValue) &&
160 *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/lib/Analysis/
AliasAnalysisEvaluator.cpp 44 static cl::opt<bool> PrintRef("print-ref", cl::ReallyHidden);
52 unsigned NoModRef, Mod, Ref, ModRef;
67 NoModRef = Mod = Ref = ModRef = 0;
272 // Mod/ref alias analysis: compare all pairs of calls and values
290 case AliasAnalysis::Ref:
291 PrintModRefResults("Just Ref", PrintRef, I, *V, F.getParent());
292 ++Ref; break;
300 // Mod/ref alias analysis: compare all pairs of calls
313 case AliasAnalysis::Ref:
314 PrintModRefResults("Just Ref", PrintRef, *C, *D, F.getParent())
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
memenv.cc 23 // and the caller must call Ref() at least once.
27 void Ref() {
151 file_->Ref();
186 file_->Ref();
205 file_->Ref();
272 file->Ref();
  /external/llvm/lib/Target/SystemZ/
SystemZElimCompare.cpp 141 Reference Ref;
148 Ref.Use = true;
149 Ref.IndirectUse |= (MOReg != Reg);
152 Ref.Def = true;
153 Ref.IndirectDef |= (MOReg != Reg);
159 return Ref;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_depth.c 119 sr.ref_value[0] = ctx->Stencil.Ref[0] & 0xff;
130 sr.ref_value[1] = ctx->Stencil.Ref[back] & 0xff;
  /external/clang/include/clang/AST/
Mangle.h 42 void setString(StringRef Ref) {
43 String = Ref;
  /external/mesa3d/src/mesa/state_tracker/
st_atom_depth.c 119 sr.ref_value[0] = ctx->Stencil.Ref[0] & 0xff;
130 sr.ref_value[1] = ctx->Stencil.Ref[back] & 0xff;
  /external/clang/lib/CodeGen/
CGCXX.cpp 146 llvm::GlobalValue *Ref = cast<llvm::GlobalValue>(GetAddrOfGlobal(TargetDecl));
147 llvm::Constant *Aliasee = Ref;
148 if (Ref->getType() != AliasType)
149 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType);
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_model_associator_unittest.cc 19 using ::testing::Ref;
156 Ref(autofill_root),
157 Ref(*profile),

Completed in 673 milliseconds

1 2 3 4 5 6