/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/FuzzMutate/ |
H A D | IRMutator.h | 30 /// Base class for describing how to mutate a module. mutation functions for 39 /// distinct ways in which this strategy can mutate a unit". This can also be 48 virtual void mutate(Module &M, RandomIRBuilder &IB); 49 virtual void mutate(Function &F, RandomIRBuilder &IB); 50 virtual void mutate(BasicBlock &BB, RandomIRBuilder &IB); 51 virtual void mutate(Instruction &I, RandomIRBuilder &IB) { in mutate() function in llvm::IRMutationStrategy 90 using IRMutationStrategy::mutate; 91 void mutate(Function &F, RandomIRBuilder &IB) override; 92 void mutate(BasicBlock &BB, RandomIRBuilder &IB) override; 100 using IRMutationStrategy::mutate; [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/ |
H A D | IRMutator.cpp | 35 void IRMutationStrategy::mutate(Module &M, RandomIRBuilder &IB) { in mutate() function in IRMutationStrategy 43 mutate(*RS.getSelection(), IB); in mutate() 46 void IRMutationStrategy::mutate(Function &F, RandomIRBuilder &IB) { in mutate() function in IRMutationStrategy 47 mutate(*makeSampler(IB.Rand, make_pointer_range(F)).getSelection(), IB); in mutate() 50 void IRMutationStrategy::mutate(BasicBlock &BB, RandomIRBuilder &IB) { in mutate() function in IRMutationStrategy 51 mutate(*makeSampler(IB.Rand, make_pointer_range(BB)).getSelection(), IB); in mutate() 67 Strategy->mutate(M, IB); in mutateModule() 79 void InjectorIRStrategy::mutate(Function &F, RandomIRBuilder &IB) { in mutate() function in InjectorIRStrategy 80 IRMutationStrategy::mutate(F, IB); in mutate() 106 void InjectorIRStrategy::mutate(BasicBloc function in InjectorIRStrategy 153 void InstDeleterIRStrategy::mutate(Function &F, RandomIRBuilder &IB) { mutate() function in InstDeleterIRStrategy 172 void InstDeleterIRStrategy::mutate(Instruction &Inst, RandomIRBuilder &IB) { mutate() function in InstDeleterIRStrategy [all...] |
/third_party/python/Lib/test/ |
H A D | test_iterlen.py | 73 self.mutate() 106 self.mutate = d.pop 113 self.mutate = d.pop 120 self.mutate = d.popitem 127 self.mutate = d.popitem 134 self.mutate = d.popitem 141 self.mutate = d.pop 143 ## ------- Types that can mutate during iteration -------
|
H A D | test_dict.py | 944 # dd isn't tracked right now, but it may mutate and therefore d 1226 def check_reentrant_insertion(self, mutate): 1232 mutate(d) 1240 def mutate(d): function 1242 self.check_reentrant_insertion(mutate) 1244 def mutate(d): function 1247 self.check_reentrant_insertion(mutate) 1249 def mutate(d): function 1252 self.check_reentrant_insertion(mutate)
|
H A D | test_weakref.py | 1426 # Check that we can explicitly mutate the weak dict without 1789 mutate = False 1797 if mutate: 1820 mutate = True
|
H A D | test_io.py | 2341 def mutate(bufio, pos1, pos2): function 2357 mutate(bufio, i, j)
|
/third_party/skia/src/core/ |
H A D | SkRecord.h | 19 // Though an enterprising user may find calling alloc(), append(), visit(), and mutate() enough to 50 auto mutate(int i, F&& f) -> decltype(f((SkRecords::NoOp*)nullptr)) { in decltype() 51 return fRecords[i].mutate(f); in decltype() 83 this->mutate(i, destroyer); in replace() 129 // A typed pointer to some bytes in fAlloc. visit() and mutate() allow polymorphic dispatch. 159 auto mutate(F&& f) -> decltype(f((SkRecords::NoOp*)nullptr)) { in decltype()
|
H A D | SkRecordPattern.h | 152 if (record->mutate(i, *first)) { in matchFirst() 163 if (!record->mutate(i, *first)) { in matchFirst()
|
H A D | SkRecord.cpp | 15 this->mutate(i, destroyer); in ~SkRecord()
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
H A D | script_mutator.js | 131 mutate(source) { 133 mutator.mutate(source); 192 normalizerMutator.mutate(input); 204 this.mutate(combinedSource); 212 // 2) Normalize, combine and mutate inputs.
|
H A D | run.js | 144 .option('-m, --mutate <path>', 'Mutate a file and output results.') 187 if (program.mutate) { 188 const absPath = path.resolve(program.mutate); 226 console.log(`ERROR: Exception during mutate: ${paths}`);
|
H A D | test_db.js | 53 mutator.mutate(source);
|
H A D | differential_script_mutator.js | 130 this.differential.forEach(mutator => mutator.mutate(result));
|
H A D | gen_exceptions.js | 24 const MUTATE_FAILED_RE = /^ERROR: Exception during mutate: (.*)\n$/; 143 // Skip tests that fail to parse/mutate or are very slow.
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/ |
H A D | test_mutate_variable_or_object.js | 28 mutator.mutate(source);
|
H A D | test_mutate_function_calls.js | 29 mutator.mutate(source);
|
H A D | test_try_catch.js | 27 mutator.mutate(source);
|
H A D | test_differential_fuzz.js | 31 mutator.mutate(source);
|
H A D | test_mutate_expressions.js | 32 mutator.mutate(source);
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/ |
H A D | mutator.js | 39 mutate(source) {
|
/third_party/skia/tests/ |
H A D | RecordTest.cpp | 51 record->mutate(i, *this); in apply()
|
/third_party/skia/experimental/sorttoy/ |
H A D | Cmds.h | 154 void mutate(SkIPoint trans) { in mutate() function in ClipCmd
|
H A D | Fake.cpp | 14 clipCmd->mutate(fTrans); in addClip()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | DebugInfoMetadata.h | 147 /// Allow subclasses to mutate the tag. 609 void mutate(unsigned Tag, unsigned Line, uint64_t SizeInBits, in mutate() function in llvm::DIType 611 assert(isDistinct() && "Only distinct nodes can mutate"); in mutate() 906 void mutate(unsigned Tag, unsigned Line, unsigned RuntimeLang, in mutate() function in llvm::DICompositeType 909 assert(isDistinct() && "Only distinct nodes can mutate"); in mutate() 910 assert(getRawIdentifier() && "Only ODR-uniqued nodes should mutate"); in mutate() 912 DIType::mutate(Tag, Line, SizeInBits, AlignInBits, OffsetInBits, Flags); in mutate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | DebugInfoMetadata.cpp | 425 // Only mutate CT if it's a forward declaration and the new operands aren't. in buildODRType() 431 CT->mutate(Tag, Line, RuntimeLang, SizeInBits, AlignInBits, OffsetInBits, in buildODRType()
|