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

1 2

  /external/mockito/src/main/java/org/mockito/internal/util/reflection/
FieldCopier.java 11 public <T> void copyValue(T from, T to, Field field) throws IllegalAccessException {
LenientCopyTool.java 41 fieldCopier.copyValue(from, mock, field);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
NoAliasAnalysis.cpp 67 virtual void copyValue(Value *From, Value *To) {}
AliasDebugger.cpp 125 virtual void copyValue(Value *From, Value *To) {
127 AliasAnalysis::copyValue(From, To);
AliasAnalysis.cpp 63 void AliasAnalysis::copyValue(Value *From, Value *To) {
65 AA->copyValue(From, To);
AliasSetTracker.cpp 518 // copyValue - This method should be used whenever a preexisting value in the
523 void AliasSetTracker::copyValue(Value *From, Value *To) {
525 AA.copyValue(From, To);
605 AST->copyValue(getValPtr(), V);
  /external/mockito/src/test/java/org/mockito/internal/util/reflection/
LenientCopyToolTest.java 152 copyValue(anyObject(), anyObject(), any(Field.class));
158 verify(tool.fieldCopier, atLeast(3)).copyValue(any(), any(), any(Field.class));
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LICM.cpp 338 CurAST->copyValue(&I, C);
554 CurAST->copyValue(&I, NewPHIs[i]);
656 AST.copyValue(LI, V);
813 AST->copyValue(From, To);
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
AliasAnalysis.h 504 /// copyValue - This method should be used whenever a preexisting value in the
510 virtual void copyValue(Value *From, Value *To);
527 copyValue(Old, New);
AliasSetTracker.h 383 /// copyValue - This method should be used whenever a preexisting value in the
389 void copyValue(Value *From, Value *To);
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 141 unsigned copyValue(unsigned Reg);
391 return copyValue(Reg);
397 return copyValue(Reg);
424 return copyValue(Reg);
454 return copyValue(Reg);
473 return copyValue(Reg);
515 unsigned WebAssemblyFastISel::copyValue(unsigned Reg) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
GlobalsModRef.cpp 154 virtual void copyValue(Value *From, Value *To);
597 void GlobalsModRef::copyValue(Value *From, Value *To) {
598 AliasAnalysis::copyValue(From, To);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowArscAssetManager.java 548 //return copyValue(env, outValue, &res, value, ref, block, typeSpecFlags, &config);
549 return copyValue(outValue, res, value.get(), ref.get(), block, typeSpecFlags.get(),
556 private static int copyValue(TypedValue outValue, ResTable table, Res_value value, int ref, int block,
558 return copyValue(outValue, table, value, ref, block, typeSpecFlags, null);
561 private static int copyValue(TypedValue outValue, ResTable table, Res_value value, int ref, int block,
664 return copyValue(outValue, res, valueRef.get(), ref.get(), block, typeSpecFlags.get());
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 166 unsigned copyValue(unsigned Reg);
446 return copyValue(Reg);
453 return copyValue(Reg);
483 return copyValue(Reg);
513 return copyValue(Reg);
532 return copyValue(Reg);
580 unsigned WebAssemblyFastISel::copyValue(unsigned Reg) {
    [all...]
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 585 // copyValue - This method should be used whenever a preexisting value in the
590 void AliasSetTracker::copyValue(Value *From, Value *To) {
671 AST->copyValue(getValPtr(), V);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
AliasSetTracker.cpp 536 // copyValue - This method should be used whenever a preexisting value in the
541 void AliasSetTracker::copyValue(Value *From, Value *To) {
677 AST->copyValue(getValPtr(), V);
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 399 void copyValue(Value *From, Value *To);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
AliasSetTracker.h 413 void copyValue(Value *From, Value *To);
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 379 CurAST->copyValue(&I, C);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
ArgumentPromotion.cpp 704 AA.copyValue(OrigLoad->getOperand(0), V);
714 AA.copyValue(OrigLoad, Args.back());
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
LICM.cpp 470 CurAST->copyValue(&I, C);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BasicBlockUtils.cpp 427 if (AA) AA->copyValue(PN, NewPHI);
LoopSimplify.cpp 673 if (AA) AA->copyValue(PN, NewPN);
PromoteMemoryToRegister.cpp 222 /// each alloca that is of pointer type, we keep track of what to copyValue
    [all...]
  /external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 250 /// pointer type, we keep track of what to copyValue to the inserted PHI
868 AST->copyValue(PointerAllocaValues[AllocaNo], PN);
    [all...]

Completed in 1603 milliseconds

1 2