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 |
|---|---|---|---|---|---|---|
WALA | WALA-master/core/src/testSubjects/java/slice/TestCD2.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 685 | 22.655172 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestCD3.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 739 | 22.125 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestCD4.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 728 | 18.702703 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestCD5.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 618 | 20.344828 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestCD6.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 659 | 20.290323 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestFields.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 736 | 24.413793 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestGlobal.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 760 | 22.060606 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestId.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 742 | 24.62069 | 93 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestInetAddr.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 590 | 25.863636 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestIntegerValueOf.java | package slice;
public class TestIntegerValueOf {
static int getInt() {
return 0;
}
static void doNothing(Object o) {}
public static void main(String[] args) {
Integer i = Integer.valueOf(getInt());
doNothing(i);
}
}
| 242 | 14.1875 | 42 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestList.java | package slice;
import java.util.ArrayList;
import java.util.List;
public class TestList {
static void doNothing(Object o) {}
public static void main(String[] args) {
List<Integer> list = new ArrayList<>();
list.add(2);
list.add(3);
doNothing(list.get(0));
}
}
| 288 | 14.210526 | 43 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestListIterator.java | package slice;
import java.util.ArrayList;
import java.util.List;
public class TestListIterator {
static void doNothing(Object o) {}
public static void main(String[] args) {
List<Integer> list = new ArrayList<>();
list.add(1);
for (Integer i : list) {
doNothing(i);
}
}
}
| 304 | 15.944444 | 43 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestMessageFormat.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 549 | 25.190476 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestMultiTarget.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 744 | 24.689655 | 98 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestPrimGetterSetter.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 825 | 19.146341 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestPrimGetterSetter2.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 794 | 19.921053 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestRecursion.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 838 | 23.676471 | 76 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestThin1.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 742 | 24.62069 | 74 | java |
WALA | WALA-master/core/src/testSubjects/java/slice/TestThrowCatch.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 887 | 20.142857 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/special/A.java | package special;
class A {
String name;
A() {
setX("silly");
}
public void setX(String name) {
this.name = name;
}
@Override
public String toString() {
return name;
}
interface Ctor<T> {
T make();
}
public static void main(String[] args) {
Ctor<A> o = A::new;
Object a... | 357 | 11.344828 | 42 | java |
WALA | WALA-master/core/src/testSubjects/java/staticInit/TestStaticInit.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 613 | 20.172414 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/staticInit/TestStaticInitOrder.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 956 | 15.789474 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/staticInit/TestSystemProperties.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 545 | 27.736842 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/staticInterfaceMethod/InterfaceWithStaticMethod.java | package staticInterfaceMethod;
public interface InterfaceWithStaticMethod {
static void test() {}
}
| 103 | 16.333333 | 44 | java |
WALA | WALA-master/core/src/testSubjects/java/string/SimpleStringOps.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 807 | 22.764706 | 72 | java |
WALA | WALA-master/core/src/testSubjects/java/stringConcat/StringConcat.java | package stringConcat;
public class StringConcat {
String testConcat() {
String s1 = "thing 1";
String s2 = "thing 2";
String s3 = s1 + s2;
return s3 + "foobar";
}
public void main(String[] args) {
testConcat();
}
}
| 247 | 13.588235 | 35 | java |
WALA | WALA-master/core/src/testSubjects/java/typeInference/TI.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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM C... | 882 | 20.536585 | 72 | java |
WALA | WALA-master/dalvik/models/src/ActivityModelActivity.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,770 | 35.946667 | 87 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/analysis/typeInference/DalvikTypeInference.java | package com.ibm.wala.dalvik.analysis.typeInference;
import com.ibm.wala.analysis.typeInference.TypeAbstraction;
import com.ibm.wala.analysis.typeInference.TypeInference;
import com.ibm.wala.analysis.typeInference.TypeVariable;
import com.ibm.wala.fixpoint.AbstractOperator;
import com.ibm.wala.ssa.IR;
import com.ibm.wa... | 4,121 | 31.456693 | 99 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/analysis/typeInference/DalvikTypeVariable.java | package com.ibm.wala.dalvik.analysis.typeInference;
import com.ibm.wala.analysis.typeInference.TypeAbstraction;
import com.ibm.wala.analysis.typeInference.TypeVariable;
public class DalvikTypeVariable extends TypeVariable {
private final boolean isIntZeroConstant;
public DalvikTypeVariable(TypeAbstraction type, ... | 574 | 25.136364 | 78 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/DexCFG.java | /*
* Copyright (c) 2002 - 2006, 2011 IBM Corporation and others.
* 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Co... | 23,044 | 31.968526 | 99 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/DexConstants.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,990 | 32.606742 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/DexFileModule.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 5,701 | 30.854749 | 92 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/DexIClass.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 13,073 | 33.13577 | 99 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/DexIContextInterpreter.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 4,669 | 31.887324 | 98 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/DexIField.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 5,545 | 30.691429 | 98 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/DexIMethod.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 file is a derivative of code released under the terms listed below.
*
* dexlib... | 191,751 | 39.428421 | 354 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/DexIRFactory.java | /*
* Copyright (c) 2002 - 2006, 2011 IBM Corporation and others.
* 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Co... | 4,514 | 30.573427 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/DexModuleEntry.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 4,695 | 25.988506 | 96 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/DexUtil.java | package com.ibm.wala.dalvik.classLoader;
import static org.jf.dexlib2.ValueType.ANNOTATION;
import static org.jf.dexlib2.ValueType.ARRAY;
import static org.jf.dexlib2.ValueType.BOOLEAN;
import static org.jf.dexlib2.ValueType.BYTE;
import static org.jf.dexlib2.ValueType.CHAR;
import static org.jf.dexlib2.ValueType.DOUB... | 7,664 | 35.674641 | 97 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/InstructionArray.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 5,051 | 25.041237 | 97 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/Literal.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,709 | 30.511628 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/classLoader/WDexClassLoaderImpl.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 7,806 | 34.008969 | 89 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/ArrayFill.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,130 | 31.614583 | 92 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/ArrayGet.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,348 | 29.171171 | 96 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/ArrayLength.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,504 | 35.304348 | 94 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/ArrayPut.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,768 | 33.185185 | 91 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/BinaryLiteralOperation.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 6,277 | 24.417004 | 85 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/BinaryOperation.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 5,924 | 24.649351 | 97 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/Branch.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 4,937 | 28.047059 | 93 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/CheckCast.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,530 | 34.647887 | 94 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/Constant.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,571 | 32.698113 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/GetField.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,511 | 30.63964 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/Goto.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,628 | 32.705128 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/InstanceOf.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,624 | 34.958904 | 98 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/Instruction.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 4,514 | 29.1 | 84 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/Invoke.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 7,852 | 25.620339 | 92 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/Monitor.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,475 | 34.371429 | 87 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/New.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,578 | 34.819444 | 95 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/NewArray.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,696 | 33.139241 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/NewArrayFilled.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,921 | 32.976744 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/PackedSwitchPad.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,641 | 32.412844 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/PutField.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,471 | 30.279279 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/Return.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,203 | 32.030928 | 98 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/SparseSwitchPad.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,509 | 32.75 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/Switch.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,609 | 31.522523 | 98 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/SwitchPad.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,163 | 34.47541 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/Throw.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 2,412 | 34.485294 | 79 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/instructions/UnaryOperation.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 4,385 | 25.581818 | 87 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/dex/util/config/DexAnalysisScopeReader.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,603 | 42.95122 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/AndroidModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 42,706 | 40.382752 | 105 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/AndroidModelClass.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 11,866 | 32.617564 | 97 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/IntentModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 3,947 | 33.631579 | 95 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/MicroModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 3,868 | 33.544643 | 94 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/MiniModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 4,759 | 33.744526 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/package-info.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 4,529 | 51.674419 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/parameters/AndroidModelParameterManager.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 22,745 | 32.061047 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/parameters/DefaultInstantiationBehavior.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 12,797 | 34.451524 | 138 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/parameters/FlatInstantiator.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 26,605 | 34.954054 | 121 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/parameters/IInstantiationBehavior.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 5,249 | 38.473684 | 98 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/parameters/Instantiator.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 26,375 | 35.837989 | 121 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/parameters/LoadedInstantiationBehavior.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 10,317 | 31.24375 | 99 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/parameters/ReuseParameters.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 10,214 | 36.01087 | 105 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/parameters/SpecializedInstantiator.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 11,810 | 35.119266 | 103 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/parameters/package-info.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 2,401 | 45.192308 | 99 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/structure/AbstractAndroidModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 18,740 | 38.289308 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/structure/LoopAndroidModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 7,911 | 36.67619 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/structure/LoopKillAndroidModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 7,504 | 37.290816 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/structure/SequentialAndroidModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 4,638 | 26.613095 | 99 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/structure/SingleStartAndroidModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 7,836 | 37.99005 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/structure/package-info.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 2,386 | 43.203704 | 97 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/stubs/AndroidBoot.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 17,701 | 46.714286 | 137 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/stubs/AndroidStartComponentTool.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 23,285 | 39.924429 | 135 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/stubs/ExternalModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 12,554 | 40.435644 | 118 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/stubs/Overrides.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 9,918 | 36.430189 | 100 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/stubs/SystemServiceModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 12,611 | 38.28972 | 99 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/stubs/UnknownTargetModel.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 14,344 | 40.340058 | 127 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/androidModel/stubs/package-info.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 2,524 | 44.089286 | 98 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/impl/AndroidEntryPoint.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 file is a derivative of code released under the terms listed below.
*
*/
/*
* ... | 21,682 | 41.515686 | 107 | java |
WALA | WALA-master/dalvik/src/main/java/com/ibm/wala/dalvik/ipa/callgraph/impl/DexEntryPoint.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 file is a derivative of code released under the terms listed below.
*
*/
/*
*... | 3,228 | 38.864198 | 100 | java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.