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

12 3 4 5 6

  /external/chromium_org/third_party/leveldatabase/src/db/
write_batch_test.cc 18 mem->Ref();
db_impl.cc 137 mem_->Ref();
414 mem->Ref();
504 base->Ref();
1038 mem_->Ref();
1041 imm_->Ref();
1046 versions_->current()->Ref();
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 90 Mask = Ref;
145 Mask = ModRefResult(Mask & Ref);
147 // If CS2 only access memory through arguments, accumulate the mod/ref
299 return Ref;
456 R = AliasAnalysis::Ref;
AliasAnalysisCounter.cpp 65 errs() << " " << MRSum << " Total Mod/Ref Queries Performed\n";
67 printLine("no mod/ref", NoMR, MRSum);
68 printLine("ref", JustRef, MRSum);
70 printLine("mod/ref", MR, MRSum);
71 errs() << " Mod/Ref Analysis Counter Summary: " <<NoMR*100/MRSum
159 case Ref: JustRef++; MRString = "JustRef"; break;
  /libcore/luni/src/main/java/java/sql/
ResultSet.java 821 * java.sql.Ref}.
825 * @return a Ref representing the value of the SQL REF in the column
829 public Ref getRef(int columnIndex) throws SQLException;
833 * java.sql.Ref}.
837 * @return a Ref representing the value of the SQL {@code REF} in the column
841 public Ref getRef(String colName) throws SQLException;
    [all...]
PreparedStatement.java 407 * for REF type parameters.
423 * and also REF types. UDTs can be {@code STRUCT}, {@code DISTINCT}, {@code
427 * SQL type name when supplying a {@code NULL} UDT or REF. For a UDT, the
428 * type name is the type name of the parameter itself, but for a REF
438 * the fully qualified name of a UDT or REF type - ignored if the
457 * object's class implements {@code Ref}, {@code Blob}, {@code Clob},
480 * object's class implements {@code Ref}, {@code Blob}, {@code Clob},
505 * object's class implements {@code Ref}, {@code Blob}, {@code Clob},
529 * REF(<structured-type>)} value. This is stored as an SQL {@code REF}
    [all...]
CallableStatement.java 520 * Gets the value of a specified SQL {@code REF(<structured type>)}
521 * parameter as a {@code java.sql.Ref}.
526 * @return a {@code java.sql.Ref} with the parameter value. {@code null}
531 public Ref getRef(int parameterIndex) throws SQLException;
534 * Gets the value of a specified SQL {@code REF(<structured type>)}
535 * parameter as a {@code java.sql.Ref}.
540 * java.sql.Ref}. A {@code null} reference is returned if the
544 * @see Ref
546 public Ref getRef(String parameterName) throws SQLException;
790 * of this method for User Defined Types or a {@code REF} type
    [all...]
  /external/chromium/testing/gmock/test/
gmock_output_test_.cc 46 using testing::Ref;
183 EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0)));
gmock-generated-function-mockers_test.cc 70 using testing::Ref;
213 EXPECT_CALL(mock_foo_, TakesNonConstReference(Ref(a)))
222 EXPECT_CALL(mock_foo_, TakesConstReference(Ref(a)))
  /external/chromium_org/content/browser/renderer_host/media/
audio_mirroring_manager_unittest.cc 22 using testing::Ref;
87 EXPECT_CALL(*dest, AddInput(Ref(params_)))
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_cc.c 119 cc->cc1.stencil_ref = ctx->Stencil.Ref[0];
133 cc->cc1.bf_stencil_ref = ctx->Stencil.Ref[back];
gen6_cc.c 225 cc->cc0.stencil_ref = ctx->Stencil.Ref[0];
226 cc->cc0.bf_stencil_ref = ctx->Stencil.Ref[ctx->Stencil._BackFace];
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 295 const MCSymbolRefExpr *Ref =
298 return getTTypeReference(Ref, Encoding, Streamer);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cc.c 119 cc->cc1.stencil_ref = ctx->Stencil.Ref[0];
133 cc->cc1.bf_stencil_ref = ctx->Stencil.Ref[back];
gen6_cc.c 225 cc->cc0.stencil_ref = ctx->Stencil.Ref[0];
226 cc->cc0.bf_stencil_ref = ctx->Stencil.Ref[ctx->Stencil._BackFace];
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 1 //===- GlobalsModRef.cpp - Simple Mod/Ref Analysis for Globals ------------===//
10 // This simple pass provides alias and mod/ref information for global values
49 /// GlobalInfo - Maintain mod/ref info for all of the globals without
58 unsigned Effect = MayReadAnyGlobal ? AliasAnalysis::Ref : 0;
190 "globalsmodref-aa", "Simple mod/ref analysis for globals",
194 "globalsmodref-aa", "Simple mod/ref analysis for globals",
219 // Remember that we are tracking this global, and the mod/ref fns
223 FunctionInfo[Readers[i]].GlobalInfo[I] |= Ref;
320 // TODO: Could try some IP mod/ref of the loaded pointer.
361 /// graph to all callers and compute the mod/ref info for all memory for eac
    [all...]
  /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/chromium_org/content/renderer/media/
rtc_peer_connection_handler_unittest.cc 44 using testing::Ref;
347 TrackSetSessionDescription(pc_handler_.get(), Ref(description),
371 TrackSetSessionDescription(pc_handler_.get(), Ref(description),
403 testing::Ref(candidate),
419 testing::Ref(local_stream),
423 testing::Ref(local_stream),
    [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/chromium_org/chrome/common/extensions/docs/server2/
reference_resolver_test.py 141 'Hello $ref:bar_bon_p3, $ref:[bar_bon_p3 Bon Bon], $ref:bar_bon_p3',
145 resolver.ResolveAllLinks('I like $ref:[bar.bar_p3.bar_t1_p1 food].',
148 'Ref <a href="foo.html">It\'s foo!</a>',
149 resolver.ResolveAllLinks('Ref $ref:[foo It\'s foo!]', namespace='bar'))
151 'Ref <a href="bar.html#type-bon">Bon</a>',
152 resolver.ResolveAllLinks('Ref $ref:[bar.bon Bon]', namespace='bar')
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv04_state_raster.c 180 ctx->Stencil.Ref[0] << 8 |
  /external/llvm/include/llvm/ADT/
FoldingSet.h 302 FoldingSetNodeID(FoldingSetNodeIDRef Ref)
303 : Bits(Ref.getData(), Ref.getData() + Ref.getSize()) {}
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_state_raster.c 180 ctx->Stencil.Ref[0] << 8 |
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 83 static value alloc_generic_value(LLVMGenericValueRef Ref) {
85 Genericvalue_val(Val) = Ref;
  /external/llvm/include/llvm/Support/
ErrorOr.h 89 ReferenceStorage(T &Ref) : Storage(&Ref) {}

Completed in 734 milliseconds

12 3 4 5 6