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
null
ying-ICPC-2022-main/SEADER/src/Slice/Slicing.java
package Slice; import com.ibm.wala.ipa.callgraph.*; import com.ibm.wala.ipa.callgraph.impl.Util; import com.ibm.wala.ipa.callgraph.propagation.InstanceKey; import com.ibm.wala.ipa.callgraph.propagation.PointerAnalysis; import com.ibm.wala.ipa.cha.ClassHierarchy; import com.ibm.wala.ipa.cha.ClassHierarchyException; imp...
6,824
46.068966
134
java
null
ying-ICPC-2022-main/SEADER/src/Slice/SlicingTest.java
package Slice; import com.ibm.wala.ipa.cha.ClassHierarchyException; import com.ibm.wala.ipa.slicer.Slicer; import com.ibm.wala.util.CancelException; import com.ibm.wala.util.debug.Assertions; import com.ibm.wala.util.io.CommandLine; import org.junit.Test; import java.io.IOException; import java.util.Properties; publ...
1,978
37.803922
214
java
null
ying-ICPC-2022-main/SEADER/src/Slice/TestConstants.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
3,864
25.114865
81
java
null
ying-ICPC-2022-main/SEADER/src/com/MyClassLoader.java
package com; public class MyClassLoader extends ClassLoader { public MyClassLoader() { super(Thread.currentThread().getContextClassLoader()); } public Class<?> defineClassForName(String name, byte[] data) { return this.defineClass(name, data, 0, data.length); } }
297
23.833333
66
java
null
ying-ICPC-2022-main/SEADER/src/com/asm/ASMGettingStarted.java
package com.asm; import com.MyClassLoader; import org.objectweb.asm.ClassWriter; import org.objectweb.asm.MethodVisitor; import org.objectweb.asm.Opcodes; public class ASMGettingStarted { /** * 动态创建一个类,有一个无参数的构造函数 */ static ClassWriter createClassWriter(String className) { ClassWriter cw = n...
2,478
35.455882
123
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/CodePattern.java
package com.changedistiller.test; import org.json.simple.JSONObject; import java.io.Serializable; public interface CodePattern extends Serializable { public JSONObject marshall(); }
189
18
51
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/CompositePattern.java
package com.changedistiller.test; import javafx.util.Pair; import org.eclipse.jdt.core.dom.*; import org.json.simple.JSONObject; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern; public class CompositePa...
9,016
43.638614
154
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/CustomVisitor.java
package com.changedistiller.test; import org.eclipse.jdt.core.dom.*; import java.util.ArrayList; import java.util.HashMap; import java.util.List; public class CustomVisitor extends ASTVisitor { public String bindingName; public String matchingExpression; public List<MethodDeclaration> methodDeclarList =...
5,661
37.780822
110
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/DirectGenerate.java
package com.changedistiller.test; import com.github.javaparser.StaticJavaParser; import com.github.javaparser.ast.CompilationUnit; import com.github.javaparser.ast.expr.ObjectCreationExpr; import com.github.javaparser.resolution.types.ResolvedType; import com.github.javaparser.symbolsolver.JavaSymbolSolver; import com...
2,587
44.403509
97
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/DirectGenerateTest.java
package com.changedistiller.test; import junit.framework.TestCase; public class DirectGenerateTest extends TestCase { public void testDirectGenerate() throws Exception { DirectGenerate dg = new DirectGenerate(""); } }
236
22.7
55
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/FiletoAST.java
package com.changedistiller.test; import org.apache.commons.io.FileUtils; import org.eclipse.jdt.core.JavaCore; import org.eclipse.jdt.core.dom.AST; import org.eclipse.jdt.core.dom.ASTParser; import org.eclipse.jdt.core.dom.CompilationUnit; import java.io.File; public class FiletoAST { private String[] classpat...
1,162
29.605263
87
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/GeneratePattern.java
package com.changedistiller.test; import ch.uzh.ifi.seal.changedistiller.ChangeDistiller; import ch.uzh.ifi.seal.changedistiller.distilling.FileDistiller; import ch.uzh.ifi.seal.changedistiller.model.classifiers.SourceRange; import ch.uzh.ifi.seal.changedistiller.model.entities.*; import com.changedistiller.test.DAO.D...
13,930
41.864615
135
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/GeneratePatternTest.java
package com.changedistiller.test; import junit.framework.TestCase; import java.util.HashSet; import java.util.List; import java.util.Set; //import static org.junit.jupiter.api.Assertions.*; // public class GeneratePatternTest extends TestCase { public void testdivideArgument() { GeneratePattern gp = new...
562
25.809524
81
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/Main.java
package com.changedistiller.test; import org.eclipse.jdt.core.dom.CompilationUnit; import java.io.File; public class Main { public static void main(String[] args) throws Exception { String lfilename = "15.java"; String rfilename = "15.java"; File left = new File("/xxx/code/cipher_test/...
998
36
102
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/NamePattern.java
package com.changedistiller.test; import org.json.simple.JSONObject; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; public class NamePattern implements CodePattern { private String name; public String matchingExpression; private Set<String> correctNameSet ...
2,396
25.633333
74
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/NumberPattern.java
package com.changedistiller.test; import org.json.simple.JSONObject; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; public class NumberPattern implements CodePattern{ private String name; private int pos = 0; private int minNum = Integer.MAX_VALUE; pri...
2,793
25.358491
82
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/ParameterPattern.java
package com.changedistiller.test; import org.json.simple.JSONObject; import java.util.*; public class ParameterPattern implements CodePattern { private int pos = 0; private String bindingType = ""; private Set<String> correctParametersSet = new HashSet<>(); private Set<String> incorrectParameterSet ...
2,617
27.769231
82
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/SSLDetection.java
package com.changedistiller.test; import org.eclipse.jdt.core.dom.*; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.PrintStream; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Scanner; public class SSLDetection { ...
4,451
39.108108
123
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/SSLDetectionTest.java
package com.changedistiller.test; import org.eclipse.jdt.core.dom.CompilationUnit; import org.junit.Test; import java.io.File; public class SSLDetectionTest { @Test public void detect() throws Exception { String lfilename = "checkclient.java"; File left = new File("C:\\Users\\Ying\\Documents...
777
37.9
130
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/DAO/DBHandler.java
package com.changedistiller.test.DAO; import com.changedistiller.test.*; import javafx.util.Pair; import redis.clients.jedis.Jedis; import java.io.FileWriter; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.SQLException; import ...
6,656
38.625
121
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/DAO/DBHandlerTest.java
package com.changedistiller.test.DAO; import junit.framework.TestCase; import java.util.HashSet; import java.util.Set; public class DBHandlerTest extends TestCase { public void testgenerateString() { DBHandler db = new DBHandler(); Set<String> set = new HashSet<>(); set.add("123"); ...
398
22.470588
51
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/SSLDetect/Detection.java
package com.changedistiller.test.SSLDetect; import com.Constant; import com.github.javaparser.JavaToken; import com.github.javaparser.StaticJavaParser; import com.github.javaparser.ast.CompilationUnit; import com.github.javaparser.ast.visitor.VoidVisitor; import com.ibm.wala.classLoader.IClassLoader; import com.ibm.wa...
18,691
45.847118
178
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/SSLDetect/DetectionTest.java
package com.changedistiller.test.SSLDetect; import com.ibm.wala.util.CancelException; import org.junit.Test; import java.io.IOException; public class DetectionTest { @Test public void run() throws CancelException, IOException { String path = "-appJar C:\\Users\\ying\\Documents\\JAVA_CODE\\cryptoapi-...
812
35.954545
111
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/SSLDetect/MultiLineDetection.java
package com.changedistiller.test.SSLDetect; import com.github.javaparser.StaticJavaParser; import com.github.javaparser.ast.CompilationUnit; import com.github.javaparser.ast.Node; import com.github.javaparser.ast.body.FieldDeclaration; import com.github.javaparser.ast.body.MethodDeclaration; import com.github.javapars...
21,259
45.017316
167
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/SSLDetect/MultiLineDetectionTest.java
package com.changedistiller.test.SSLDetect; import com.Constant; import com.ibm.wala.ipa.cha.ClassHierarchyException; import com.ibm.wala.util.CancelException; import org.junit.Test; import java.io.IOException; public class MultiLineDetectionTest { @Test public void start() throws ClassHierarchyException, ...
717
33.190476
94
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/SSLDetect/Pipline.java
//package com.changedistiller.test.SSLDetect; // // //import com.Constant; //import com.ibm.wala.examples.slice.BackwardSlicer2; //import com.ibm.wala.ipa.cha.ClassHierarchyException; //import com.ibm.wala.util.CancelException; //import org.junit.Test; //import java.io.IOException; //import java.lang.reflect.Array; //i...
1,346
30.325581
114
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/SSLDetect/SSLDetectionTest.java
package com.changedistiller.test.SSLDetect; import com.changedistiller.test.FiletoAST; import com.changedistiller.test.SSLDetection; import org.eclipse.jdt.core.dom.CompilationUnit; import org.junit.Test; import java.io.File; import java.io.IOException; import java.nio.file.Path; import java.nio.file.Paths; import ja...
1,772
42.243902
197
java
null
ying-ICPC-2022-main/SEADER/src/com/changedistiller/test/SSLDetect/VariableDeclarationVisitor.java
package com.changedistiller.test.SSLDetect; import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; import com.github.javaparser.ast.body.FieldDeclaration; import com.github.javaparser.ast.body.VariableDeclarator; import com.github.javaparser.ast.expr.*; import com.github.javaparser.ast.stmt.CatchClause; im...
3,026
28.970297
89
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/basic/ExtensionGraphTest.java
/****************************************************************************** * Copyright (c) 2002 - 2014 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is availa...
3,199
33.408602
94
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/basic/FloydWarshallTest.java
/******************************************************************************* * Copyright (c) 2002 - 2010 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
6,116
33.365169
179
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/basic/GraphDataflowTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
7,396
32.470588
129
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/basic/OrdinalSetTest.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
896
32.222222
81
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/basic/PathFinderTest.java
/******************************************************************************* * Copyright (c) 2013 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
2,746
28.858696
104
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/basic/PrimitivesTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
40,966
29.59522
131
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/basic/WelshPowellTest.java
/******************************************************************************* * Copyright (c) 2013 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
4,386
37.482456
160
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/AcyclicCallGraphTest.java
package com.ibm.wala.core.tests.callGraph; import java.io.IOException; import java.util.Map; import java.util.Set; import org.junit.Assert; import org.junit.Test; import com.ibm.wala.core.tests.util.TestConstants; import com.ibm.wala.core.tests.util.WalaTestCase; import com.ibm.wala.ipa.callgraph.AnalysisCacheImpl; ...
2,556
40.918033
123
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/CHACallGraphTest.java
/******************************************************************************* * Copyright (c) 2013 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
2,469
42.333333
193
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/CPATest.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
3,377
44.04
162
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/CallGraphTestUtil.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
6,301
34.806818
140
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/ClassConstantTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
3,461
43.961039
129
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/CloneTest.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
3,287
42.84
136
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/DefaultMethodsTest.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
4,869
50.808511
136
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/FinalizerTest.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
2,651
43.949153
136
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/Java7CallGraphTest.java
/****************************************************************************** * Copyright (c) 2002 - 2014 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is availa...
3,541
43.835443
261
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/LambdaTest.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
5,725
48.791304
156
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/LibModelsTest.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
2,711
42.741935
136
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/PiNodeCallGraphTest.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
5,510
43.804878
171
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/callGraph/SyntheticTest.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
3,066
43.449275
128
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cfg/exc/inter/NullPointerExceptionInterTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
11,023
43.096
144
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cfg/exc/intra/NullPointerExceptionIntraTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
34,027
44.798116
179
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cha/AnalysisScopeTest.java
package com.ibm.wala.core.tests.cha; import com.ibm.wala.core.tests.util.TestConstants; import com.ibm.wala.ipa.callgraph.AnalysisScope; import com.ibm.wala.ipa.cha.ClassHierarchy; import com.ibm.wala.ipa.cha.ClassHierarchyException; import com.ibm.wala.ipa.cha.ClassHierarchyFactory; import com.ibm.wala.types.ClassLoa...
1,590
36
91
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cha/CodeDeletedTest.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
2,387
38.8
112
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cha/DupFieldsTest.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
2,449
44.37037
179
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cha/ExclusionsTest.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
1,519
40.081081
139
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cha/GetTargetsTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
3,649
32.181818
157
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cha/InnerClassesTest.java
/******************************************************************************* * Copyright (c) 20078 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available a...
3,548
34.49
140
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cha/InterfaceTest.java
/******************************************************************************* * Copyright (c) 2007 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
4,004
37.883495
157
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cha/LibraryVersionTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
1,729
40.190476
171
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/cha/SourceMapTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
3,091
42.549296
105
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/collections/SemiSparseMutableIntSetTest.java
/****************************************************************************** * Copyright (c) 2002 - 2014 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is availa...
1,520
31.361702
98
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/collections/TwoLevelVectorTest.java
/****************************************************************************** * Copyright (c) 2002 - 2014 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is availa...
1,541
30.469388
90
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/demandpa/AbstractPtrTest.java
/******************************************************************************* * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * * This f...
12,379
42.591549
141
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/demandpa/ContextSensitiveTest.java
/******************************************************************************* * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * * This f...
8,164
42.663102
128
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/demandpa/IntraprocTest.java
/******************************************************************************* * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * * This f...
2,783
41.181818
117
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/demandpa/NoRefinePtrTest.java
/******************************************************************************* * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * * This f...
6,399
39.251572
128
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/demandpa/OnTheFlyPtrTest.java
/******************************************************************************* * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * * This f...
3,219
43.722222
123
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/demandpa/RefineFieldsPtrTest.java
/******************************************************************************* * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * * This f...
5,097
40.447154
128
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/demandpa/TestInfo.java
/******************************************************************************* * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * * This f...
4,595
41.165138
94
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/demandpa/TunedRefinementTest.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
6,131
38.818182
125
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/exceptionpruning/ExceptionAnalysis2EdgeFilterTest.java
package com.ibm.wala.core.tests.exceptionpruning; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import java.io.File; import java.io.IOException; import java.util.HashMap; import org.junit.BeforeClass; import org.junit.Rule; import org.junit.Test; import org.junit.rules.Error...
9,918
43.68018
132
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/exceptionpruning/ExceptionAnalysisTest.java
package com.ibm.wala.core.tests.exceptionpruning; import static org.hamcrest.CoreMatchers.anyOf; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.not; import java.io.File; import java.io.IOException; import java.util.Iterator; import java.util.Set; import org.junit.BeforeClass...
8,399
46.457627
132
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ir/AnnotationTest.java
/******************************************************************************* * Copyright (c) 2013 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
10,964
51.971014
388
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ir/CFGSanitizerTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
3,403
38.581395
137
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ir/CFGTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
5,972
33.526012
107
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ir/CornerCasesTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
3,801
41.719101
157
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ir/DeterministicIRTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
5,114
34.275862
132
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ir/LocalNamesTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
8,351
42.051546
130
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ir/MultiNewArrayTest.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
2,998
44.439394
157
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ir/TypeAnnotationTest.java
/******************************************************************************* * Copyright (c) 2013,2016 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is availab...
14,285
46.779264
147
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/plugin/CoreTestsPlugin.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
1,545
24.344262
81
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ptrs/MultiDimArrayTest.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
3,299
37.372093
138
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ptrs/TypeBasedArrayAliasTest.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
4,033
41.463158
136
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/ptrs/ZeroLengthArrayTest.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
3,482
46.712329
139
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/shrike/DynamicCallGraphTest.java
/****************************************************************************** * Copyright (c) 2002 - 2014 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is availa...
4,016
46.258824
230
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/shrike/DynamicCallGraphTestBase.java
/****************************************************************************** * Copyright (c) 2002 - 2014 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is availa...
8,854
37.837719
177
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/slicer/SlicerTest.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
47,857
42.193141
163
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/typeInference/TypeInferenceTest.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
6,180
39.933775
157
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/util/JVMLTestAssertions.java
package com.ibm.wala.core.tests.util; import org.junit.Assert; public class JVMLTestAssertions extends TestAssertions { @Override public void assertEquals(Object a, Object b) { Assert.assertEquals(a, b); } @Override public void assertNotNull(String msg, Object obj) { Assert.assertNotNull(msg, obj)...
423
17.434783
56
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/util/TestAssertions.java
package com.ibm.wala.core.tests.util; import java.util.Collection; import java.util.Collections; public abstract class TestAssertions { public abstract void assertEquals(Object findOrCreate, Object type); public abstract void assertNotNull(String string, Object classUnderTest); public abstract void assertTr...
1,234
27.068182
88
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/util/TestConstants.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
3,887
25.27027
81
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/core/tests/util/WalaTestCase.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
3,749
31.894737
129
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/demandpa/driver/CompareToZeroOneCFADriver.java
/****************************************************************************** * Copyright (c) 2002 - 2014 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is availa...
10,568
43.783898
177
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/demandpa/driver/TestAgainstSimpleDriver.java
/****************************************************************************** * Copyright (c) 2002 - 2014 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is availa...
8,254
45.638418
177
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/demandpa/driver/WalaUtil.java
/******************************************************************************* * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * * This f...
3,411
37.772727
110
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/examples/ExampleUtil.java
package com.ibm.wala.examples; import com.ibm.wala.ipa.callgraph.AnalysisScope; import com.ibm.wala.util.config.FileOfClasses; import java.io.ByteArrayInputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; public class ExampleUtil { // more aggressive exclusions to avoid library blowup ...
1,146
29.184211
124
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/examples/analysis/ConstructAllIRs.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
3,497
33.98
132
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/examples/analysis/CountParameters.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
2,290
34.246154
114
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/examples/analysis/GetLoadedFields.java
/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
2,636
36.671429
113
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/examples/analysis/SimpleThreadEscapeAnalysis.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
11,708
33.539823
135
java
null
ying-ICPC-2022-main/SEADER/src/com/ibm/wala/examples/analysis/dataflow/ContextInsensitiveReachingDefs.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at...
8,263
38.165877
133
java