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
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/learning/boosting/RBWeakRanker.java
/*=============================================================================== * Copyright (c) 2010-2012 University of Massachusetts. All Rights Reserved. * * Use of the RankLib package is subject to the terms of the software license set * forth in the LICENSE file included with this software, and also availab...
1,073
21.851064
82
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/learning/boosting/AdaRank.java
/*=============================================================================== * Copyright (c) 2010-2012 University of Massachusetts. All Rights Reserved. * * Use of the RankLib package is subject to the terms of the software license set * forth in the LICENSE file included with this software, and also availab...
10,705
27.935135
122
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/utilities/FileUtils.java
/*=============================================================================== * Copyright (c) 2010-2012 University of Massachusetts. All Rights Reserved. * * Use of the RankLib package is subject to the terms of the software license set * forth in the LICENSE file included with this software, and also availab...
8,561
27.731544
105
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/utilities/SimpleMath.java
/*=============================================================================== * Copyright (c) 2010-2012 University of Massachusetts. All Rights Reserved. * * Use of the RankLib package is subject to the terms of the software license set * forth in the LICENSE file included with this software, and also availab...
1,723
25.121212
82
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/utilities/ExpressionEvaluator.java
/*=============================================================================== * Copyright (c) 2010-2012 University of Massachusetts. All Rights Reserved. * * Use of the RankLib package is subject to the terms of the software license set * forth in the LICENSE file included with this software, and also availab...
8,211
24.424149
124
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/utilities/Sorter.java
/*=============================================================================== * Copyright (c) 2010-2012 University of Massachusetts. All Rights Reserved. * * Use of the RankLib package is subject to the terms of the software license set * forth in the LICENSE file included with this software, and also availab...
11,071
24.511521
93
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/utilities/KeyValuePair.java
/*=============================================================================== * Copyright (c) 2010-2012 University of Massachusetts. All Rights Reserved. * * Use of the RankLib package is subject to the terms of the software license set * forth in the LICENSE file included with this software, and also availab...
1,577
24.047619
89
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/utilities/WorkerThread.java
package ciir.umass.edu.utilities; public abstract class WorkerThread implements Runnable { protected int start = -1; protected int end = -1; public void set(int start, int end) { this.start = start; this.end = end; } public abstract WorkerThread clone(); }
268
19.692308
56
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/utilities/MyThreadPool.java
/*=============================================================================== * Copyright (c) 2010-2012 University of Massachusetts. All Rights Reserved. * * Use of the RankLib package is subject to the terms of the software license set * forth in the LICENSE file included with this software, and also availab...
2,706
22.955752
83
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/utilities/MergeSorter.java
/*=============================================================================== * Copyright (c) 2010-2012 University of Massachusetts. All Rights Reserved. * * Use of the RankLib package is subject to the terms of the software license set * forth in the LICENSE file included with this software, and also availab...
4,948
21.912037
123
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/stats/BasicStats.java
package ciir.umass.edu.stats; public class BasicStats { public static double mean(double[] values) { double mean = 0.0; if(values.length == 0) { System.out.println("Error in BasicStats::mean(): Empty input array."); System.exit(1); } for(int i=0;i<values.length;i++) mean += values[i]; return mea...
342
19.176471
73
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/stats/SignificanceTest.java
package ciir.umass.edu.stats; import java.util.HashMap; public class SignificanceTest { public double test(HashMap<String, Double> target, HashMap<String, Double> baseline) { return 0; } protected void makeRCall() { } }
234
13.6875
85
java
lodreclib
lodreclib-master/src/main/java/ciir/umass/edu/stats/RandomPermutationTest.java
package ciir.umass.edu.stats; import java.util.HashMap; import java.util.Random; /** * Randomized permutation test. Adapted from Michael Bendersky's Python script. * @author vdang * */ public class RandomPermutationTest extends SignificanceTest { public static int nPermutation = 10000; private static String[]...
1,984
23.506173
129
java
qksms
qksms-master/presentation/src/main/java/com/moez/QKSMS/common/androidxcompat/RxDrawerLayout.java
/* * Copyright (C) 2017 Moez Bhatti <moez.bhatti@gmail.com> * * This file is part of QKSMS. * * QKSMS is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your opti...
2,397
33.753623
99
java
qksms
qksms-master/presentation/src/main/java/com/moez/QKSMS/common/androidxcompat/DrawerLayoutDrawerOpenedObservable.java
/* * Copyright (C) 2017 Moez Bhatti <moez.bhatti@gmail.com> * * This file is part of QKSMS. * * QKSMS is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your opti...
2,940
30.967391
99
java
qksms
qksms-master/common/src/main/java/com/bumptech/glide/gifencoder/AnimatedGifEncoder.java
package com.bumptech.glide.gifencoder; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import timber.log.Timber; import java.io.BufferedOutputStream; import java.io.FileOutputStream; import java.io...
16,884
30.443203
100
java
qksms
qksms-master/common/src/main/java/com/bumptech/glide/gifencoder/NeuQuant.java
package com.bumptech.glide.gifencoder; // Ported to Java 12/00 K Weiner class NeuQuant { protected static final int netsize = 256; /* number of colours used */ /* four primes near 500 - assume no image has a length so large */ /* that it is divisible by all four primes */ protected static final int p...
14,895
29.713402
90
java
qksms
qksms-master/common/src/main/java/com/bumptech/glide/gifencoder/LZWEncoder.java
package com.bumptech.glide.gifencoder; import java.io.IOException; import java.io.OutputStream; // ============================================================================== // Adapted from Jef Poskanzer's Java port by way of J. M. G. Elliott. // K Weiner 12/00 class LZWEncoder { private static final int EOF...
8,809
28.763514
98
java
qksms
qksms-master/android-smsmms/src/main/java/android/database/sqlite/SqliteWrapper.java
/* * Copyright (C) 2008 Esmertec AG. * Copyright (C) 2008 The Android Open Source Project * * 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/LICEN...
3,403
33.04
113
java
qksms
qksms-master/android-smsmms/src/main/java/android/net/LinkProperties.java
/* * Copyright (C) 2010 The Android Open Source Project * * 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 app...
15,657
34.425339
95
java
qksms
qksms-master/android-smsmms/src/main/java/android/net/NetworkState.java
/* * Copyright (C) 2011 The Android Open Source Project * * 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 app...
2,691
29.942529
99
java
qksms
qksms-master/android-smsmms/src/main/java/android/net/NetworkQuotaInfo.java
/* * Copyright (C) 2011 The Android Open Source Project * * 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 app...
2,327
25.454545
93
java
qksms
qksms-master/android-smsmms/src/main/java/android/net/NetworkUtilsHelper.java
/* * Copyright (C) 2008 The Android Open Source Project * * 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 app...
10,949
34.901639
94
java
qksms
qksms-master/android-smsmms/src/main/java/android/net/LinkCapabilities.java
/* * Copyright (C) 2010 The Android Open Source Project * * 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 app...
11,458
28.157761
94
java
qksms
qksms-master/android-smsmms/src/main/java/android/net/ProxyProperties.java
/* * Copyright (C) 2010 The Android Open Source Project * * 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 app...
6,902
29.955157
97
java
qksms
qksms-master/android-smsmms/src/main/java/android/net/INetworkPolicyListener.java
/* * This file is auto-generated. DO NOT MODIFY. * Original file: frameworks/base/core/java/android/net/INetworkPolicyListener.aidl */ package android.net; /** * {@hide} */ public interface INetworkPolicyListener extends android.os.IInterface { /** * Local-side IPC implementation stub class. */ ...
5,632
39.52518
139
java
qksms
qksms-master/android-smsmms/src/main/java/android/net/LinkAddress.java
/* * Copyright (C) 2010 The Android Open Source Project * * 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 app...
4,398
27.751634
88
java
qksms
qksms-master/android-smsmms/src/main/java/android/net/DhcpInfoInternal.java
/* * Copyright (C) 2010 The Android Open Source Project * * 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 app...
5,071
29.190476
97
java
qksms
qksms-master/android-smsmms/src/main/java/android/net/RouteInfo.java
/* * Copyright (C) 2011 The Android Open Source Project * * 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 app...
9,413
31.916084
114
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/events/Event.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
6,253
43.042254
148
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/events/EventException.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
1,423
37.486486
148
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/events/DocumentEvent.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
2,926
50.350877
148
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/events/EventListener.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
2,047
47.761905
148
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/events/EventTarget.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
5,564
53.029126
148
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/SMILRegionInterface.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
840
30.148148
73
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/TimeList.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
1,544
35.785714
79
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/SMILElement.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
1,591
37.829268
78
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/SMILLayoutElement.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
1,498
29.591837
79
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/ElementTime.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
6,081
36.54321
78
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/ElementLayout.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
1,787
30.928571
79
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/ElementParallelTimeContainer.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
1,472
34.926829
78
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/SMILRegionMediaElement.java
/* * Copyright (C) 2007-2008 Esmertec AG. * Copyright (C) 2007-2008 The Android Open Source Project * * 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/lice...
791
33.434783
75
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/ElementTimeContainer.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
1,398
33.975
79
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/SMILRegionElement.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
2,074
32.467742
77
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/SMILParElement.java
/* * Copyright (C) 2007-2008 Esmertec AG. * Copyright (C) 2007-2008 The Android Open Source Project * * 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/lice...
788
31.875
75
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/SMILMediaElement.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
5,178
31.778481
77
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/SMILDocument.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
1,938
36.288462
84
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/ElementSequentialTimeContainer.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
790
34.954545
78
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/Time.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
4,821
39.183333
79
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/SMILRootLayoutElement.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
781
34.545455
75
java
qksms
qksms-master/android-smsmms/src/main/java/org/w3c/dom/smil/SMILRefElement.java
/* * Copyright (c) 2000 World Wide Web Consortium, * (Massachusetts Institute of Technology, Institut National de * Recherche en Informatique et en Automatique, Keio University). All * Rights Reserved. This program is distributed under the W3C's Software * Intellectual Property License. This program is distributed...
683
31.571429
72
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/InvalidHeaderValueException.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
1,282
29.547619
85
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/MmsException.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
1,642
25.934426
78
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/ContentType.java
/* * Copyright (C) 2007-2008 Esmertec AG. * Copyright (C) 2007-2008 The Android Open Source Project * Copyright (c) 2013, The Linux Foundation. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obt...
10,729
43.338843
99
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/RetrieveConf.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
8,568
27.563333
81
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/Base64.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
5,299
30.736527
75
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/SendConf.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
3,346
27.606838
81
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/MultimediaMessagePdu.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
3,415
21.773333
75
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/PduBody.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
5,203
26.246073
79
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/NotifyRespInd.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
3,458
29.342105
80
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/NotificationInd.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
8,602
29.185965
81
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/PduContentTypes.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
6,242
55.754545
76
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/PduParser.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
80,473
38.897868
112
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/ReadOrigInd.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
4,028
25.333333
79
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/PduComposer.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
38,976
31.836563
99
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/DeliveryInd.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
3,620
25.23913
75
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/ReadRecInd.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
3,954
26.465278
83
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/PduHeaders.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
31,191
42.262136
103
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/QuotedPrintable.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
2,347
33.529412
84
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/AcknowledgeInd.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
2,611
28.348315
80
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/GenericPdu.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
2,974
25.327434
79
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/CharacterSets.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
5,877
33.174419
76
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/EncodedStringValue.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
8,511
29.184397
87
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/PduPart.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
12,651
29.708738
79
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/PduPersister.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
67,224
40.702854
117
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/pdu_alt/SendReq.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
10,011
28.189504
97
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/smil/SmilHelper.java
package com.google.android.mms.smil; import com.android.mms.dom.smil.SmilDocumentImpl; import com.google.android.mms.ContentType; import com.google.android.mms.pdu_alt.PduBody; import com.google.android.mms.pdu_alt.PduPart; import org.w3c.dom.smil.SMILDocument; import org.w3c.dom.smil.SMILElement; import org.w3c.dom.s...
4,820
38.516393
88
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/util_alt/AbstractCache.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
2,991
26.2
81
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/util_alt/SqliteWrapper.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
4,179
34.12605
94
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/util_alt/PduCacheEntry.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
1,183
25.909091
75
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/util_alt/DrmConvertSession.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
7,349
41.241379
96
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/util_alt/DownloadDrmHelper.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
3,887
35
99
java
qksms
qksms-master/android-smsmms/src/main/java/com/google/android/mms/util_alt/PduCache.java
/* * Copyright (C) 2015 Jacob Klinker * * 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 t...
8,649
32.269231
86
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/MmsConfig.java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
15,600
45.570149
132
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/AttrImpl.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
2,228
19.449541
75
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/NamedNodeMapImpl.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
2,451
26.863636
76
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/DocumentImpl.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
5,191
25.625641
88
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/NodeListImpl.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
3,941
29.55814
80
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/ElementImpl.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
4,727
26.32948
83
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/NodeImpl.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
7,805
27.593407
94
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/events/EventTargetImpl.java
/* * Copyright 2014 Jacob Klinker * * 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 t...
4,560
34.356589
91
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/events/EventImpl.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
3,092
23.164063
91
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/smil/SmilParElementImpl.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
6,272
27.775229
91
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/smil/SmilRootLayoutElementImpl.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
2,721
31.023529
84
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/smil/ElementSequentialTimeContainerImpl.java
/* * Copyright (C) 2007 Esmertec AG. * Copyright (C) 2007 The Android Open Source Project * * 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/LICEN...
2,333
30.972603
97
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/smil/ElementTimeImpl.java
/* * Copyright 2014 Jacob Klinker * * 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 t...
13,027
36.653179
101
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/smil/TimeImpl.java
/* * Copyright 2014 Jacob Klinker * * 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 t...
10,628
35.030508
97
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/smil/SmilRegionElementImpl.java
/* * Copyright 2014 Jacob Klinker * * 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 t...
9,926
34.453571
101
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/smil/SmilDocumentImpl.java
/* * Copyright 2014 Jacob Klinker * * 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 t...
9,154
30.35274
95
java
qksms
qksms-master/android-smsmms/src/main/java/com/android/mms/dom/smil/SmilMediaElementImpl.java
/* * Copyright 2014 Jacob Klinker * * 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 t...
9,991
28.56213
97
java