repo stringlengths 1 191 ⌀ | file stringlengths 23 351 | code stringlengths 0 5.32M | file_length int64 0 5.32M | avg_line_length float64 0 2.9k | max_line_length int64 0 288k | extension_type stringclasses 1
value |
|---|---|---|---|---|---|---|
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/MethodIsGetterNoSetterFeature.java | package de.ecspride.sourcesinkfinder.features;
import java.util.ArrayList;
import java.util.List;
import soot.Body;
import soot.Local;
import soot.SootMethod;
import soot.Unit;
import soot.jimple.AssignStmt;
import soot.jimple.FieldRef;
import soot.jimple.IdentityStmt;
import soot.jimple.InstanceFieldRef;
import soot... | 5,214 | 29.497076 | 113 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/MethodIsRealSetterFeature.java | package de.ecspride.sourcesinkfinder.features;
import java.util.HashSet;
import java.util.Set;
import soot.SootMethod;
import soot.Unit;
import soot.Value;
import soot.jimple.AssignStmt;
import soot.jimple.IdentityStmt;
import soot.jimple.InstanceFieldRef;
import soot.jimple.ParameterRef;
import soot.jimple.Stmt;
imp... | 2,175 | 25.216867 | 78 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/MethodModifierFeature.java | package de.ecspride.sourcesinkfinder.features;
import soot.SootMethod;
import soot.jimple.infoflow.android.data.AndroidMethod;
/**
* Feature checking the method modifiers
*
* @author Steven Arzt
*
*/
public class MethodModifierFeature extends AbstractSootFeature {
public enum Modifier{PUBLIC,PRIVATE,STATIC,PROT... | 1,575 | 28.735849 | 90 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/MethodNameContainsFeature.java | package de.ecspride.sourcesinkfinder.features;
import soot.jimple.infoflow.android.data.AndroidMethod;
import de.ecspride.sourcesinkfinder.IFeature;
/**
* Common class for all features that have to do with the method name
*
* @author Steven Arzt
*/
public class MethodNameContainsFeature implements IFeature {
pr... | 706 | 22.566667 | 92 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/MethodNameEndsWithFeature.java | package de.ecspride.sourcesinkfinder.features;
import soot.jimple.infoflow.android.data.AndroidMethod;
import de.ecspride.sourcesinkfinder.IFeature;
/**
* Common class for all features that have to do with the method name
*
* @author Siegfried Rasthofer
*
*/
public class MethodNameEndsWithFeature implements IFea... | 817 | 23.787879 | 83 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/MethodNameStartsWithFeature.java | package de.ecspride.sourcesinkfinder.features;
import soot.jimple.infoflow.android.data.AndroidMethod;
import de.ecspride.sourcesinkfinder.IFeature;
/**
* Common class for all features that have to do with the method name
*
* @author Steven Arzt
*
*/
public class MethodNameStartsWithFeature implements IFeature {... | 721 | 22.290323 | 86 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/MethodReturnsConstantFeature.java | package de.ecspride.sourcesinkfinder.features;
import soot.Body;
import soot.SootMethod;
import soot.Unit;
import soot.jimple.Constant;
import soot.jimple.ReturnStmt;
import soot.jimple.infoflow.android.data.AndroidMethod;
/**
* Feature that checks whether the current method returns a constant value
*
* @author St... | 1,275 | 22.2 | 74 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/PackageNameOfClassFeature.java | package de.ecspride.sourcesinkfinder.features;
import soot.jimple.infoflow.android.data.AndroidMethod;
import de.ecspride.sourcesinkfinder.IFeature;
/**
* This feature checks the name of the package
* @author Siegfried Rasthofer
*/
public class PackageNameOfClassFeature implements IFeature {
private final String ... | 856 | 28.551724 | 110 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/ParameterContainsTypeOrNameFeature.java | package de.ecspride.sourcesinkfinder.features;
import java.util.List;
import soot.jimple.infoflow.android.data.AndroidMethod;
import de.ecspride.sourcesinkfinder.IFeature;
/**
* Common class for all features that have to do with the method name
*
* @author Steven Arzt
*
*/
public class ParameterContainsTypeOrNa... | 856 | 21.552632 | 69 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/ParameterInCallFeature.java | package de.ecspride.sourcesinkfinder.features;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import soot.Body;
import soot.SootClass;
import soot.SootMethod;
import soot.Unit;
import soot.Value;
import soot.jimple.AssignStmt;
import soot.jimple.CastExpr;
import soo... | 11,483 | 33.694864 | 101 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/ParameterIsInterfaceFeature.java | package de.ecspride.sourcesinkfinder.features;
import soot.Scene;
import soot.SootClass;
import soot.jimple.infoflow.android.data.AndroidMethod;
/**
* Feature which checks whether the current method gets an interface as a
* parameter
*
* @author Steven Arzt
*
*/
public class ParameterIsInterfaceFeature extends ... | 886 | 22.342105 | 73 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/PermissionNameFeature.java | package de.ecspride.sourcesinkfinder.features;
import soot.jimple.infoflow.android.data.AndroidMethod;
import de.ecspride.sourcesinkfinder.IFeature;
public class PermissionNameFeature implements IFeature {
private final String permission;
public PermissionNameFeature(String permission) {
if(permission.contains... | 1,215 | 23.32 | 75 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/ReturnTypeFeature.java | package de.ecspride.sourcesinkfinder.features;
import soot.SootMethod;
import soot.jimple.infoflow.android.data.AndroidMethod;
/**
* Feature which checks the return type of a method
*
* @author Steven Arzt, Siegfried Rasthofer
*
*/
public class ReturnTypeFeature extends AbstractSootFeature {
private final Stri... | 1,076 | 21.914894 | 81 | java |
SuSi | SuSi-master/SourceCode/src/de/ecspride/sourcesinkfinder/features/VoidOnMethodFeature.java | package de.ecspride.sourcesinkfinder.features;
import soot.jimple.infoflow.android.data.AndroidMethod;
import de.ecspride.sourcesinkfinder.IFeature;
/**
* Feature that matches whever a method returns void and the method name starts
* with "on".
*
* @author Steven Arzt
*
*/
public class VoidOnMethodFeature impl... | 745 | 22.3125 | 87 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/examples/AnnotateClass.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 1997-1999 Raja Vallee-Rai
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your ... | 6,530 | 33.739362 | 144 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/examples/BodyTransformer.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2008 Eric Bodden
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) a... | 1,674 | 30.018519 | 77 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/examples/CreateSootClass.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 1997-1999 Raja Vallee-Rai
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your ... | 4,801 | 38.04065 | 145 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/examples/GotoInstrumenter.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 1997-1999 Raja Vallee-Rai
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your ... | 7,758 | 38.586735 | 118 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/GraphEditor.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 4,807 | 24.574468 | 119 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/GraphPlugin.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,486 | 23.87 | 90 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/actions/GraphActionBarContributor.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,281 | 29.026316 | 82 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/actions/SimpleSelectAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,670 | 22.871429 | 74 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/editparts/ComplexNodeEditPart.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 4,632 | 30.517007 | 202 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/editparts/EdgeEditPart.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 4,013 | 28.733333 | 138 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/editparts/GraphEditPart.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 4,625 | 22.13 | 84 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/editparts/GraphLayoutManager.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,206 | 26.246914 | 103 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/editparts/PartFactory.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,627 | 28.071429 | 99 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/editparts/SimpleNodeEditPart.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 6,380 | 23.637066 | 154 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/editpolicies/SimpleNodeMouseListener.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,666 | 27.254237 | 91 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/editpolicies/SimpleNodeSelectPolicy.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,580 | 27.232143 | 85 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/figures/ComplexNodeFigure.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,099 | 28.72973 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/model/ComplexNode.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,375 | 23.571429 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/model/Edge.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,664 | 19.555556 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/model/Element.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 3,197 | 29.75 | 109 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/model/Graph.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,554 | 19.277778 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/model/SimpleNode.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 3,113 | 19.220779 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/testing/GraphGenerator.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 4,258 | 20.510101 | 107 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/graph/testing/TestNode.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,707 | 18.409091 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/ISootConstants.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,588 | 32.808511 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/Messages.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,397 | 26.96 | 88 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/SootClasspathVariableInitializer.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2008 Eric Bodden
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) a... | 4,900 | 33.758865 | 85 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/SootConsoleFactory.java | package ca.mcgill.sable.soot;
import org.eclipse.ui.console.IConsoleFactory;
/**
* This implements the extension point org.eclipse.ui.console.consoleFactories,
* showing a widget to open the Soot console in the console view.
* @author Eric Bodden
*/
public class SootConsoleFactory implements IConsoleFactory {
p... | 394 | 22.235294 | 79 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/SootPlugin.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 8,625 | 23.787356 | 103 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/AbstractAttributesColorer.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 7,966 | 27.251773 | 121 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/AbstractAttributesComputer.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 4,384 | 25.575758 | 116 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/AbstractSootAttributesHover.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 5,594 | 20.354962 | 97 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/AnalysisKey.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,861 | 16.566038 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/AttributeDomProcessor.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 6,717 | 27.709402 | 91 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/AttributeFileReader.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,855 | 22.2 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/ColorAttribute.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,754 | 21.21519 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/FindMethodResolver.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,725 | 22.972222 | 81 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/ISootAttributesHandler.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,090 | 35.366667 | 88 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/JavaAttributesComputer.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,506 | 27.488636 | 76 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/JimpleAttributesComputer.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,142 | 29.183099 | 126 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/LinkAttribute.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,900 | 17.104762 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/Messages.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,408 | 28.354167 | 102 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/PosColAttribute.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,513 | 15.219355 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttrJavaIconGenerator.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,881 | 25.440367 | 102 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttrJimpleIconGenerator.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,935 | 24.982301 | 102 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttribute.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 6,785 | 17.144385 | 70 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributeFilesReader.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,729 | 28.322034 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributeJavaSelectAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 3,167 | 33.813187 | 198 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributeJimpleSelectAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,534 | 34.208333 | 184 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributeResolutionGenerator.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,560 | 32.934783 | 102 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributeRulerActionDelegate.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,018 | 28.691176 | 164 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributeSelectAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 8,383 | 26.853821 | 165 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributesHandler.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 5,134 | 19.705645 | 72 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributesJavaColorer.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 3,094 | 31.925532 | 147 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributesJavaHover.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 4,390 | 29.706294 | 140 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributesJimpleColorer.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 3,049 | 32.152174 | 155 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/SootAttributesJimpleHover.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,851 | 22.74359 | 101 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/TextAttribute.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,300 | 19.650794 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/ValueBoxAttribute.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2003 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,355 | 15.828571 | 69 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/attributes/VisManLauncher.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 6,312 | 27.826484 | 138 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/callgraph/CGDoneAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,917 | 26.797101 | 74 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/callgraph/CGMenuProvider.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,023 | 27.111111 | 100 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/callgraph/CallGraphGenerator.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 9,283 | 26.305882 | 170 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/callgraph/CallGraphNode.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,102 | 18.839623 | 71 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/callgraph/CallGraphNodeEditPart.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 3,861 | 27.189781 | 91 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/callgraph/CallGraphPartFactory.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,417 | 29.826087 | 99 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/callgraph/CollapseAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,523 | 26.709091 | 84 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/callgraph/CollapseAllAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,967 | 26.71831 | 74 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/callgraph/ExpandAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,511 | 26 | 84 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/callgraph/ShowCodeAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,530 | 26.339286 | 84 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/AnnotatedCFGSaver.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2005 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 4,793 | 28.9625 | 86 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/CFGEditor.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 5,824 | 27.140097 | 119 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/CFGMenuProvider.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,626 | 28.516854 | 100 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/CFGTests.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 3,790 | 26.471014 | 80 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/CFGViewer.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 4,990 | 26.727778 | 106 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/ModelCreator.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 8,844 | 24.056657 | 106 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/StopAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,649 | 26.5 | 100 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/UnStopAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,558 | 26.839286 | 75 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/actions/CFGActionBarContributor.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 3,528 | 30.230088 | 82 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/actions/FinishMethodAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,143 | 27.210526 | 74 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/actions/FlowSelectAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,747 | 25.089552 | 74 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/actions/NextMethodAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,963 | 26.661972 | 74 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/actions/StepBackwardAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,903 | 27 | 74 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/actions/StepForwardAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 2,110 | 26.776316 | 74 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/actions/StopInteractionAction.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 1,985 | 27.371429 | 74 | java |
soot | soot-master/eclipse/ca.mcgill.sable.soot/src/ca/mcgill/sable/soot/cfg/editParts/CFGEdgeEditPart.java | /* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your optio... | 3,167 | 28.333333 | 77 | java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.