OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:codeItem
(Results
1 - 2
of
2
) sorted by null
/art/tools/dexfuzz/src/dexfuzz/rawdex/
RawDexFile.java
44
public List<
CodeItem
> codeItems;
250
for (
CodeItem
codeItem
: codeItems) {
251
codeItem
.write(file);
376
for (
CodeItem
codeItem
: codeItems) {
377
codeItem
.incrementIndex(kind, insertedIdx);
/art/tools/dexfuzz/src/dexfuzz/program/
Program.java
49
import dexfuzz.rawdex.
CodeItem
;
77
* deciding which ones should be applied to each
CodeItem
.
226
for (
CodeItem
codeItem
: rawDexFile.codeItems) {
227
if (legalToMutate(
codeItem
)) {
230
mutatableCodes.add(translator.codeItemToMutatableCode(this,
codeItem
,
266
* For each
CodeItem
, find the name of the method the item represents.
298
* Associate the name of the provided method with its
CodeItem
, if it
322
// Get the
codeItem
.
323
if (method.codeOff.getPointedToItem() instanceof
CodeItem
) {
[
all
...]
Completed in 67 milliseconds