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/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/impl/NumberedNodeIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,462
27.134615
77
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/impl/SelfLoopAddedEdgeManager.java
package com.ibm.wala.util.graph.impl; import com.ibm.wala.util.graph.EdgeManager; import java.util.Iterator; public class SelfLoopAddedEdgeManager<T> implements EdgeManager<T> { private class PrependItterator implements Iterator<T> { private boolean usedFirst = false; private Iterator<T> original; priva...
2,772
21.362903
83
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/impl/SelfLoopAddedGraph.java
package com.ibm.wala.util.graph.impl; import com.ibm.wala.util.graph.AbstractGraph; import com.ibm.wala.util.graph.EdgeManager; import com.ibm.wala.util.graph.Graph; import com.ibm.wala.util.graph.NodeManager; public class SelfLoopAddedGraph<T> extends AbstractGraph<T> { private final NodeManager<T> nodes; @Ove...
625
20.586207
61
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/impl/SlowNumberedNodeManager.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,674
24
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/impl/SlowSparseNumberedGraph.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,658
29.563218
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/impl/SparseNumberedEdgeManager.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
9,222
31.361404
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/impl/SparseNumberedGraph.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,148
32.061538
97
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/labeled/AbstractLabeledGraph.java
/* * Copyright (c) 2007 Manu Sridharan and Juergen Graf * 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 * * Contributor...
3,866
33.526786
73
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/labeled/AbstractNumberedLabeledGraph.java
/* * Copyright (c) 2007 Juergen Graf * 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: * Juergen G...
2,689
25.9
89
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/labeled/LabeledEdgeManager.java
/* * Copyright (c) 2007 Manu Sridharan and Juergen Graf * 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 * * Contributor...
4,692
36.246032
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/labeled/LabeledGraph.java
/* * Copyright (c) 2007 Manu Sridharan and Juergen Graf * 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 * * Contributor...
2,485
44.2
81
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/labeled/NumberedLabeledEdgeManager.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...
790
33.391304
84
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/labeled/NumberedLabeledGraph.java
package com.ibm.wala.util.graph.labeled; import com.ibm.wala.util.graph.NumberedGraph; public interface NumberedLabeledGraph<T, I> extends NumberedGraph<T>, NumberedLabeledEdgeManager<T, I> {}
199
27.571429
65
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/labeled/SlowSparseNumberedLabeledGraph.java
/* * Copyright (c) 2007 Manu Sridharan and Juergen Graf * 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 * * Contributor...
4,020
37.663462
94
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/labeled/SparseNumberedLabeledEdgeManager.java
/* * Copyright (c) 2007 Manu Sridharan and Juergen Graf * 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 * * Contributor...
9,505
29.370607
96
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/BFSIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
4,020
25.986577
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/BFSPathFinder.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
5,786
27.791045
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/BoundedBFSIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
4,714
26.097701
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/DFS.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
6,859
31.206573
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/DFSAllPathsFinder.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...
1,866
31.189655
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/DFSDiscoverTimeIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
4,231
26.842105
98
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/DFSFinishTimeIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
3,841
27.043796
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/DFSPathFinder.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
5,626
25.668246
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/FloydWarshall.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
6,358
28.576744
96
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/GraphDFSDiscoverTimeIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
989
27.285714
83
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/NumberedDFSDiscoverTimeIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
3,175
31.408163
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/NumberedDFSFinishTimeIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,783
32.142857
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/SCCIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,488
30.506329
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/SlowDFSDiscoverTimeIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,691
33.075949
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/SlowDFSFinishTimeIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,686
33.448718
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/Topological.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...
2,059
36.454545
97
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/graph/traverse/WelshPowell.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...
4,050
26.937931
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/heapTrace/HeapTracer.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
22,166
32.085075
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/BasicNaturalRelation.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
12,619
27.044444
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/BimodalMutableIntSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
11,091
28.036649
130
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/BimodalMutableIntSetFactory.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,641
29.407407
96
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/BitSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
5,036
22.211982
98
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/BitVector.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
9,693
23.604061
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/BitVectorBase.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
5,488
22.063025
97
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/BitVectorIntSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
13,337
26.7875
102
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/BitVectorIntSetFactory.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,851
25.84058
93
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/BitVectorRepository.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
3,174
29.528846
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/Bits.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,049
29.147059
97
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/DebuggingMutableIntSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
10,116
25.835544
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/DebuggingMutableIntSetFactory.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,951
28.227723
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/EmptyIntSet.java
/* * Copyright (c) 2011 - 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...
1,761
18.577778
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/FixedSizeBitVector.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
8,503
24.234421
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/IBinaryNaturalRelation.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,258
28.97619
82
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/IntIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
654
28.772727
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/IntPair.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,229
19.163934
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/IntSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,921
30
81
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/IntSetAction.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
465
24.888889
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/IntSetUtil.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
8,592
32.566406
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/IntVector.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
613
25.695652
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/IntegerUnionFind.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
3,042
23.942623
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/LongIterator.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
653
28.727273
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/LongSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,685
30.811321
81
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/LongSetAction.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
467
25
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/LongSetUtil.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
6,842
32.057971
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MultiModalIntVector.java
/* * Copyright (c) 2009 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...
8,308
30.236842
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableIntSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,263
23.307692
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableIntSetFactory.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
653
27.434783
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableLongSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
972
23.948718
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableLongSetFactory.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
684
27.541667
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableMapping.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
4,504
23.22043
96
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableSharedBitVectorIntSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
32,338
29.082791
130
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableSharedBitVectorIntSetFactory.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,450
33.521127
97
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableSparseIntSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
12,977
24.447059
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableSparseIntSetFactory.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,938
27.940299
94
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableSparseLongSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
9,073
24.417367
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/MutableSparseLongSetFactory.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,980
27.710145
95
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/NumberUtility.java
/* * Copyright (c) 2009 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...
756
25.103448
84
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/OffsetBitVector.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
12,389
23.152047
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/OffsetOrdinalSetMapping.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...
2,119
24.238095
96
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/OrdinalSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
5,545
25.535885
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/OrdinalSetMapping.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,407
28.957447
97
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/SemiSparseMutableIntSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
21,281
27.150794
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/SemiSparseMutableIntSetFactory.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,860
26.776119
93
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/SimpleIntVector.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
3,173
23.604651
80
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/SparseIntSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
14,167
24.99633
98
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/SparseIntVector.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,521
26.11828
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/SparseLongIntVector.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,299
26.058824
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/SparseLongSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
12,351
24.626556
97
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/TunedMutableSparseIntSet.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,259
25.808511
97
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/TunedSimpleIntVector.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,018
25.815789
85
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/intset/TwoLevelIntVector.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,803
24.724771
93
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/io/CommandLine.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,004
29.846154
100
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/io/FileUtil.java
/* * 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 Corporation - initial API and implementa...
5,632
29.950549
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/io/JavaHome.java
package com.ibm.wala.util.io; public class JavaHome { public static void main(String[] args) { System.err.println(System.getProperty("java.home")); } }
162
17.111111
56
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/io/RtJar.java
package com.ibm.wala.util.io; import com.ibm.wala.util.PlatformUtil; import com.ibm.wala.util.collections.ArrayIterator; import com.ibm.wala.util.collections.FilterIterator; import com.ibm.wala.util.collections.MapIterator; import java.io.File; import java.io.IOException; import java.util.Iterator; import java.util.ja...
1,491
27.150943
93
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/io/Streams.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,118
27.692308
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/io/TemporaryFile.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,871
26.940299
85
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/math/Factorial.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 by the University of * California under t...
3,093
35.4
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/math/Logs.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 available at * http://www.eclipse.org/legal/epl-v10.html * */ /* * This file in...
3,131
33.043478
78
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/math/LongUtil.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
525
25.3
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/perf/Stopwatch.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
1,316
22.517857
72
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/perf/StopwatchGC.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,667
28.318681
98
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/processes/BasicLauncher.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
2,025
27.942857
97
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/processes/JavaLauncher.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
8,718
28.160535
99
java
null
ying-ICPC-2022-main/WALA/com.ibm.wala.util/src/com/ibm/wala/util/processes/Launcher.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 available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * ...
9,737
26.508475
95
java