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
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/templates/TemplateCompiler.java
package org.mvel2.templates; public class TemplateCompiler { public TemplateCompiler(String template) {} public static CompiledTemplate compileTemplate(String template) { return null; } public CompiledTemplate compile() { return null; } }
245
34.142857
82
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/templates/CompiledTemplate.java
package org.mvel2.templates; public class CompiledTemplate {}
62
20
32
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/templates/TemplateRuntime.java
package org.mvel2.templates; import java.util.Map; public class TemplateRuntime { public static Object eval(String template, Map vars) { return null; } public static Object execute(CompiledTemplate compiled, Map vars) { return null; } }
242
29.375
84
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/integration/VariableResolverFactory.java
package org.mvel2.integration; import java.io.Serializable; public interface VariableResolverFactory extends Serializable {}
126
24.4
64
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/integration/impl/ImmutableDefaultFactory.java
package org.mvel2.integration.impl; import org.mvel2.integration.VariableResolverFactory; public class ImmutableDefaultFactory implements VariableResolverFactory {}
166
32.4
74
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/compiler/Accessor.java
package org.mvel2.compiler; import org.mvel2.integration.VariableResolverFactory; public interface Accessor { public Object getValue(Object ctx, Object elCtx, VariableResolverFactory factory); }
198
27.428571
84
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/compiler/ExecutableStatement.java
package org.mvel2.compiler; import java.io.Serializable; import org.mvel2.integration.VariableResolverFactory; public interface ExecutableStatement extends Accessor, Serializable { public Object getValue(Object staticContext, VariableResolverFactory factory); }
265
32.25
80
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/compiler/CompiledExpression.java
package org.mvel2.compiler; import org.mvel2.integration.VariableResolverFactory; public class CompiledExpression implements ExecutableStatement { public Object getDirectValue(Object staticContext, VariableResolverFactory factory) { return null; } public Object getValue(Object staticContext, VariableResolverFacto...
451
49.222222
102
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/compiler/ExpressionCompiler.java
package org.mvel2.compiler; public class ExpressionCompiler { public ExpressionCompiler(String expression) {} public CompiledExpression compile() { return null; } }
169
27.333333
54
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/compiler/CompiledAccExpression.java
package org.mvel2.compiler; import org.mvel2.ParserContext; import org.mvel2.integration.VariableResolverFactory; public class CompiledAccExpression implements ExecutableStatement { public CompiledAccExpression(char[] expression, Class ingressType, ParserContext context) {} public Object getValue(Object staticCon...
487
43.363636
108
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/jsr223/MvelScriptEngine.java
package org.mvel2.jsr223; import java.io.Serializable; import javax.script.CompiledScript; import javax.script.ScriptContext; import javax.script.ScriptException; public class MvelScriptEngine { public CompiledScript compile(String script) throws ScriptException { return null; } public Serializable compiledScript...
490
39.916667
112
java
codeql
codeql-master/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/jsr223/MvelCompiledScript.java
package org.mvel2.jsr223; import java.io.Serializable; import javax.script.CompiledScript; import javax.script.ScriptContext; import javax.script.ScriptException; public class MvelCompiledScript extends CompiledScript { public MvelCompiledScript(MvelScriptEngine engine, Serializable compiledScript) {} public Obje...
392
34.727273
84
java
codeql
codeql-master/java/ql/test/stubs/javamail-api-1.6.2/javax/mail/Authenticator.java
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
5,517
35.543046
120
java
codeql
codeql-master/java/ql/test/stubs/javamail-api-1.6.2/javax/mail/PasswordAuthentication.java
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
2,768
34.5
78
java
codeql
codeql-master/java/ql/test/stubs/javamail-api-1.6.2/javax/mail/Session.java
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2018 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
13,332
39.898773
103
java
codeql
codeql-master/java/ql/test/stubs/commons-exec-1.3/org/apache/commons/exec/CommandLine.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you ...
2,325
28.443038
117
java
codeql
codeql-master/java/ql/test/stubs/commons-exec-1.3/org/apache/commons/exec/DefaultExecutor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
1,505
34.857143
117
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/Servlet.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
1,262
34.083333
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/ServletException.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
965
33.5
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/RequestDispatcher.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
1,229
35.176471
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/ServletContext.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
2,260
37.982759
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/ServletConfig.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
1,159
33.117647
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/ServletResponse.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
1,659
34.319149
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/ServletOutputStream.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
1,961
30.142857
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/ServletRequest.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
2,321
35.857143
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/ServletInputStream.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
1,157
32.085714
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/http/HttpSession.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
1,736
35.1875
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/http/HttpServletRequest.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
2,088
36.303571
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/http/HttpSessionContext.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
1,098
30.4
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/http/HttpServletResponse.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
4,128
44.877778
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/http/Cookie.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
2,585
29.423529
109
java
codeql
codeql-master/java/ql/test/stubs/servlet-api-2.4/javax/servlet/http/HttpServlet.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
2,376
36.730159
109
java
codeql
codeql-master/java/ql/test/stubs/apache-commons-codec-1.14/org/apache/commons/codec/BinaryEncoder.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
1,364
34.921053
100
java
codeql
codeql-master/java/ql/test/stubs/apache-commons-codec-1.14/org/apache/commons/codec/EncoderException.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
3,495
38.280899
119
java
codeql
codeql-master/java/ql/test/stubs/apache-commons-codec-1.14/org/apache/commons/codec/DecoderException.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
3,474
39.406977
120
java
codeql
codeql-master/java/ql/test/stubs/apache-commons-codec-1.14/org/apache/commons/codec/BinaryDecoder.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
1,427
36.578947
119
java
codeql
codeql-master/java/ql/test/stubs/apache-commons-codec-1.14/org/apache/commons/codec/StringDecoder.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
1,298
33.184211
85
java
codeql
codeql-master/java/ql/test/stubs/apache-commons-codec-1.14/org/apache/commons/codec/Decoder.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
2,015
41.893617
118
java
codeql
codeql-master/java/ql/test/stubs/apache-commons-codec-1.14/org/apache/commons/codec/StringEncoder.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
1,298
33.184211
85
java
codeql
codeql-master/java/ql/test/stubs/apache-commons-codec-1.14/org/apache/commons/codec/Encoder.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
1,707
37.818182
116
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/core/AttributesMapper.java
package org.springframework.ldap.core; public interface AttributesMapper<T> {}
79
25.666667
39
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/core/LdapOperations.java
package org.springframework.ldap.core; public interface LdapOperations {}
74
24
38
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/core/DirContextProcessor.java
package org.springframework.ldap.core; public interface DirContextProcessor {}
79
25.666667
39
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/core/LdapTemplate.java
package org.springframework.ldap.core; import org.springframework.beans.factory.InitializingBean; import java.util.*; import javax.naming.Name; import javax.naming.directory.SearchControls; import org.springframework.ldap.filter.Filter; import org.springframework.ldap.query.LdapQuery; public class LdapTemplate im...
3,513
44.636364
163
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/core/DirContextOperations.java
package org.springframework.ldap.core; public interface DirContextOperations { }
82
15.6
39
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/core/ContextMapper.java
package org.springframework.ldap.core; public interface ContextMapper<T> { }
78
14.8
38
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/core/NameClassPairCallbackHandler.java
package org.springframework.ldap.core; public interface NameClassPairCallbackHandler { }
90
21.75
49
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/filter/EqualsFilter.java
package org.springframework.ldap.filter; public class EqualsFilter implements Filter { public EqualsFilter(String attribute, String value) { } }
148
23.833333
57
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/filter/HardcodedFilter.java
package org.springframework.ldap.filter; public class HardcodedFilter implements Filter { public HardcodedFilter(String filter) { } public StringBuffer encode(StringBuffer buff) { return buff; } public String toString() { return ""; } }
244
29.625
64
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/filter/Filter.java
package org.springframework.ldap.filter; public interface Filter { }
70
13.2
40
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/support/LdapUtils.java
package org.springframework.ldap.support; import javax.naming.ldap.LdapName; public class LdapUtils { public static LdapName newLdapName(String distinguishedName) { return null; } }
186
22.375
79
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/support/LdapNameBuilder.java
package org.springframework.ldap.support; import javax.naming.ldap.LdapName; public class LdapNameBuilder { public static LdapNameBuilder newInstance() { return null; } public static LdapNameBuilder newInstance(String name) { return null; } public LdapNameBuilder add(String name) { return null; } public Ldap...
424
31.692308
73
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/support/LdapEncoder.java
package org.springframework.ldap.support; public class LdapEncoder { public static String filterEncode(String value) { return null; } }
139
22.333333
66
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/query/ContainerCriteria.java
package org.springframework.ldap.query; public interface ContainerCriteria extends LdapQuery { }
98
18.8
54
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/query/ConditionCriteria.java
package org.springframework.ldap.query; public interface ConditionCriteria { ContainerCriteria is(String value); }
118
18.833333
39
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/query/LdapQuery.java
package org.springframework.ldap.query; public interface LdapQuery { }
72
13.6
39
java
codeql
codeql-master/java/ql/test/stubs/spring-ldap-2.3.2/org/springframework/ldap/query/LdapQueryBuilder.java
package org.springframework.ldap.query; import javax.naming.Name; import org.springframework.ldap.filter.Filter; public class LdapQueryBuilder { public static LdapQueryBuilder query() { return null; } public LdapQuery filter(String hardcodedFilter) { return null; } public LdapQuery filter(Filter filter) { retur...
583
37.933333
81
java
codeql
codeql-master/java/ql/test/stubs/junit-4.11/org/junit/Assert.java
package org.junit; //BSD License // //Copyright (c) 2000-2006, www.hamcrest.org //All rights reserved. // //Redistribution and use in source and binary forms, with or without //modification, are permitted provided that the following conditions are met: // //Redistributions of source code must retain the above copyrigh...
5,322
33.564935
95
java
hipster-shop
hipster-shop-master/src/adservice/src/main/java/hipstershop/AdServiceClient.java
/* * Copyright 2018, Google LLC. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
6,353
35.102273
100
java
hipster-shop
hipster-shop-master/src/adservice/src/main/java/hipstershop/AdService.java
/* * Copyright 2018, Google LLC. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
12,309
34.889213
99
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/Main.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
13,404
30.690307
116
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/SymbolMaps.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
8,392
27.259259
107
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/OptionParser.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
17,791
25.634731
108
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/Checker.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
13,337
30.832936
116
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/JANFlags.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
6,312
27.183036
117
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/TreeBuilder.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
96,131
32.600839
140
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/TypeBuilder.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
15,207
29.910569
113
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/CommentBuilder.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
15,165
27.033272
123
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/JDKTreeMaker.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
5,491
28.847826
109
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/CrossEdges.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
12,067
30.023136
117
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/JANCmdLine.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
3,551
31
99
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/ClassSaver.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
6,761
29.736364
146
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/Filter.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
3,856
30.614754
115
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/FileProcessor.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
7,640
36.092233
162
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/FileCollector.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
4,229
29.652174
116
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/Timer.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
2,751
27.371134
90
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/ExternalClassBuilder.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
27,508
33.08798
123
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/JAN/src/main/java/org/jan/ConfigReader.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
4,091
28.438849
121
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/GraphlibTest/src/columbus/GraphTest.java
package columbus; import graphlib.Edge; import graphlib.Graph; import graphlib.GraphlibException; import graphlib.Node; import graphlib.VisitorException; import java.util.ArrayList; class TestVisitor implements graphlib.Visitor { @Override public void edgeVisitorFunc(Edge e) throws VisitorException { String s ...
6,166
27.159817
111
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/GraphExample/src/columbus/VisitorExample.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
2,805
29.172043
109
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/cl/GraphExample/src/columbus/GraphExample.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
2,214
28.932432
111
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/ColumbusLogger/src/columbus/logger/LoggerHandler.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
5,156
23.557143
86
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphsupportlib/src/main/java/graphsupportlib/Metric.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
12,719
36.857143
129
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/columbus/WarningMessages.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
1,211
35.727273
86
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/columbus/StrTable.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
7,500
26.781481
120
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/columbus/ColumbusException.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
1,139
23.782609
85
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/columbus/IO.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
8,097
22.95858
85
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/AttributeComposite.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
1,124
27.846154
91
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/GraphlibException.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
1,139
23.782609
85
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/Visitor.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
1,251
28.116279
98
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/Edge.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
4,895
21.254545
105
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/VisitorException.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
1,134
23.673913
85
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/AttributeInt.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
1,716
21.893333
109
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/Node.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
4,316
20.693467
85
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/AttributeFloat.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
1,802
22.723684
112
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/AttributeOwner.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
5,561
27.377551
90
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/Attribute.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
2,269
23.945055
97
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/AttributeString.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
2,058
23.511905
112
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/graphlib/src/main/java/graphlib/Graph.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
23,328
29.655716
201
java
OpenStaticAnalyzer
OpenStaticAnalyzer-master/java/lib/revision/src/columbus/revision/Revision.java
/* * This file is part of OpenStaticAnalyzer. * * Copyright (c) 2004-2018 Department of Software Engineering - University of Szeged * * Licensed under Version 1.2 of the EUPL (the "Licence"); * * You may not use this work except in compliance with the Licence. * * You may obtain a copy of the Licence in t...
1,102
29.638889
85
java