_id stringlengths 2 7 | title stringlengths 3 140 | partition stringclasses 3
values | text stringlengths 73 34.1k | language stringclasses 1
value | meta_information dict |
|---|---|---|---|---|---|
q7800 | CleverTapAPI.attachMeta | train | private void attachMeta(final JSONObject o, final Context context) {
// Memory consumption
try {
o.put("mc", Utils.getMemoryConsumption());
} catch (Throwable t) {
// Ignore
}
// Attach the network type
try {
o.put("nt", Utils.getCurre... | java | {
"resource": ""
} |
q7801 | CleverTapAPI.recordScreen | train | @SuppressWarnings({"unused", "WeakerAccess"})
public void recordScreen(String screenName){
if(screenName == null || (!currentScreenName.isEmpty() && currentScreenName.equals(screenName))) return;
getConfigLogger().debug(getAccountId(), "Screen changed to " + screenName);
currentScreenName = ... | java | {
"resource": ""
} |
q7802 | CleverTapAPI.clearQueues | train | private void clearQueues(final Context context) {
synchronized (eventLock) {
DBAdapter adapter = loadDBAdapter(context);
DBAdapter.Table tableName = DBAdapter.Table.EVENTS;
adapter.removeEvents(tableName);
tableName = DBAdapter.Table.PROFILE_EVENTS;
... | java | {
"resource": ""
} |
q7803 | CleverTapAPI.updateCursorForDBObject | train | private QueueCursor updateCursorForDBObject(JSONObject dbObject, QueueCursor cursor) {
if (dbObject == null) return cursor;
Iterator<String> keys = dbObject.keys();
if (keys.hasNext()) {
String key = keys.next();
cursor.setLastId(key);
try {
... | java | {
"resource": ""
} |
q7804 | CleverTapAPI.getARP | train | private JSONObject getARP(final Context context) {
try {
final String nameSpaceKey = getNamespaceARPKey();
if (nameSpaceKey == null) return null;
final SharedPreferences prefs = StorageHelper.getPreferences(context, nameSpaceKey);
final Map<String, ?> all = prefs... | java | {
"resource": ""
} |
q7805 | CleverTapAPI.getTotalVisits | train | @SuppressWarnings({"unused", "WeakerAccess"})
public int getTotalVisits() {
EventDetail ed = getLocalDataStore().getEventDetail(Constants.APP_LAUNCHED_EVENT);
if (ed != null) return ed.getCount();
return 0;
} | java | {
"resource": ""
} |
q7806 | CleverTapAPI.getTimeElapsed | train | @SuppressWarnings({"unused", "WeakerAccess"})
public int getTimeElapsed() {
int currentSession = getCurrentSession();
if (currentSession == 0) return -1;
int now = (int) (System.currentTimeMillis() / 1000);
return now - currentSession;
} | java | {
"resource": ""
} |
q7807 | CleverTapAPI.getUTMDetails | train | @SuppressWarnings({"unused", "WeakerAccess"})
public UTMDetail getUTMDetails() {
UTMDetail ud = new UTMDetail();
ud.setSource(source);
ud.setMedium(medium);
ud.setCampaign(campaign);
return ud;
} | java | {
"resource": ""
} |
q7808 | CleverTapAPI._handleMultiValues | train | private void _handleMultiValues(ArrayList<String> values, String key, String command) {
if (key == null) return;
if (values == null || values.isEmpty()) {
_generateEmptyMultiValueError(key);
return;
}
ValidationResult vr;
// validate the key
vr ... | java | {
"resource": ""
} |
q7809 | CleverTapAPI.pushEvent | train | @SuppressWarnings({"unused", "WeakerAccess"})
public void pushEvent(String eventName) {
if (eventName == null || eventName.trim().equals(""))
return;
pushEvent(eventName, null);
} | java | {
"resource": ""
} |
q7810 | CleverTapAPI.pushNotificationViewedEvent | train | @SuppressWarnings({"unused", "WeakerAccess"})
public void pushNotificationViewedEvent(Bundle extras){
if (extras == null || extras.isEmpty() || extras.get(Constants.NOTIFICATION_TAG) == null) {
getConfigLogger().debug(getAccountId(), "Push notification: " + (extras == null ? "NULL" : extras.toS... | java | {
"resource": ""
} |
q7811 | CleverTapAPI.getCount | train | @SuppressWarnings({"unused", "WeakerAccess"})
public int getCount(String event) {
EventDetail eventDetail = getLocalDataStore().getEventDetail(event);
if (eventDetail != null) return eventDetail.getCount();
return -1;
} | java | {
"resource": ""
} |
q7812 | CleverTapAPI.pushDeviceToken | train | private void pushDeviceToken(final String token, final boolean register, final PushType type) {
pushDeviceToken(this.context, token, register, type);
} | java | {
"resource": ""
} |
q7813 | CleverTapAPI.getNotificationInfo | train | @SuppressWarnings({"unused", "WeakerAccess"})
public static NotificationInfo getNotificationInfo(final Bundle extras) {
if (extras == null) return new NotificationInfo(false, false);
boolean fromCleverTap = extras.containsKey(Constants.NOTIFICATION_TAG);
boolean shouldRender = fromCleverTap... | java | {
"resource": ""
} |
q7814 | CleverTapAPI.pushInstallReferrer | train | @SuppressWarnings({"unused", "WeakerAccess"})
public void pushInstallReferrer(Intent intent) {
try {
final Bundle extras = intent.getExtras();
// Preliminary checks
if (extras == null || !extras.containsKey("referrer")) {
return;
}
... | java | {
"resource": ""
} |
q7815 | CleverTapAPI.pushInstallReferrer | train | @SuppressWarnings({"unused", "WeakerAccess"})
public synchronized void pushInstallReferrer(String source, String medium, String campaign) {
if (source == null && medium == null && campaign == null) return;
try {
// If already pushed, don't send it again
int status = StorageHe... | java | {
"resource": ""
} |
q7816 | CleverTapAPI.changeCredentials | train | @SuppressWarnings("unused")
public static void changeCredentials(String accountID, String token) {
changeCredentials(accountID, token, null);
} | java | {
"resource": ""
} |
q7817 | CleverTapAPI.changeCredentials | train | @SuppressWarnings({"unused", "WeakerAccess"})
public static void changeCredentials(String accountID, String token, String region) {
if(defaultConfig != null){
Logger.i("CleverTap SDK already initialized with accountID:"+defaultConfig.getAccountId()
+" and token:"+defaultConfi... | java | {
"resource": ""
} |
q7818 | CleverTapAPI.getInboxMessageCount | train | @SuppressWarnings({"unused", "WeakerAccess"})
public int getInboxMessageCount(){
synchronized (inboxControllerLock) {
if (this.ctInboxController != null) {
return ctInboxController.count();
} else {
getConfigLogger().debug(getAccountId(),"Notification ... | java | {
"resource": ""
} |
q7819 | CleverTapAPI.getInboxMessageUnreadCount | train | @SuppressWarnings({"unused", "WeakerAccess"})
public int getInboxMessageUnreadCount(){
synchronized (inboxControllerLock) {
if (this.ctInboxController != null) {
return ctInboxController.unreadCount();
} else {
getConfigLogger().debug(getAccountId(), "... | java | {
"resource": ""
} |
q7820 | CleverTapAPI.markReadInboxMessage | train | @SuppressWarnings({"unused", "WeakerAccess"})
public void markReadInboxMessage(final CTInboxMessage message){
postAsyncSafely("markReadInboxMessage", new Runnable() {
@Override
public void run() {
synchronized (inboxControllerLock) {
if(ctInboxCont... | java | {
"resource": ""
} |
q7821 | GifDecoder.advance | train | boolean advance() {
if (header.frameCount <= 0) {
return false;
}
if(framePointer == getFrameCount() - 1) {
loopIndex++;
}
if(header.loopCount != LOOP_FOREVER && loopIndex > header.loopCount) {
return false;
}
framePointer = ... | java | {
"resource": ""
} |
q7822 | GifDecoder.getDelay | train | int getDelay(int n) {
int delay = -1;
if ((n >= 0) && (n < header.frameCount)) {
delay = header.frames.get(n).delay;
}
return delay;
} | java | {
"resource": ""
} |
q7823 | GifDecoder.setFrameIndex | train | boolean setFrameIndex(int frame) {
if(frame < INITIAL_FRAME_POINTER || frame >= getFrameCount()) {
return false;
}
framePointer = frame;
return true;
} | java | {
"resource": ""
} |
q7824 | GifDecoder.read | train | int read(InputStream is, int contentLength) {
if (is != null) {
try {
int capacity = (contentLength > 0) ? (contentLength + 4096) : 16384;
ByteArrayOutputStream buffer = new ByteArrayOutputStream(capacity);
int nRead;
byte[] data = new ... | java | {
"resource": ""
} |
q7825 | GifDecoder.read | train | synchronized int read(byte[] data) {
this.header = getHeaderParser().setData(data).parseHeader();
if (data != null) {
setData(header, data);
}
return status;
} | java | {
"resource": ""
} |
q7826 | GifDecoder.readChunkIfNeeded | train | private void readChunkIfNeeded() {
if (workBufferSize > workBufferPosition) {
return;
}
if (workBuffer == null) {
workBuffer = bitmapProvider.obtainByteArray(WORK_BUFFER_SIZE);
}
workBufferPosition = 0;
workBufferSize = Math.min(rawData.remaining()... | java | {
"resource": ""
} |
q7827 | ActivityLifecycleCallback.register | train | @TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH)
public static synchronized void register(android.app.Application application) {
if (application == null) {
Logger.i("Application instance is null/system API is too old");
return;
}
if (registered) {
Logge... | java | {
"resource": ""
} |
q7828 | Validator.cleanObjectKey | train | ValidationResult cleanObjectKey(String name) {
ValidationResult vr = new ValidationResult();
name = name.trim();
for (String x : objectKeyCharsNotAllowed)
name = name.replace(x, "");
if (name.length() > Constants.MAX_KEY_LENGTH) {
name = name.substring(0, Constan... | java | {
"resource": ""
} |
q7829 | Validator.cleanMultiValuePropertyKey | train | ValidationResult cleanMultiValuePropertyKey(String name) {
ValidationResult vr = cleanObjectKey(name);
name = (String) vr.getObject();
// make sure its not a known property key (reserved in the case of multi-value)
try {
RestrictedMultiValueFields rf = RestrictedMultiValue... | java | {
"resource": ""
} |
q7830 | Validator.isRestrictedEventName | train | ValidationResult isRestrictedEventName(String name) {
ValidationResult error = new ValidationResult();
if (name == null) {
error.setErrorCode(510);
error.setErrorDesc("Event Name is null");
return error;
}
for (String x : restrictedNames)
i... | java | {
"resource": ""
} |
q7831 | Validator._mergeListInternalForKey | train | private ValidationResult _mergeListInternalForKey(String key, JSONArray left,
JSONArray right, boolean remove, ValidationResult vr) {
if (left == null) {
vr.setObject(null);
return vr;
}
if (right == null) {
... | java | {
"resource": ""
} |
q7832 | DeviceInfo.initDeviceID | train | @SuppressWarnings({"WeakerAccess"})
protected void initDeviceID() {
getDeviceCachedInfo(); // put this here to avoid running on main thread
// generate a provisional while we do the rest async
generateProvisionalGUID();
// grab and cache the googleAdID in any event if available
... | java | {
"resource": ""
} |
q7833 | Logger.i | train | static void i(String message){
if (getStaticDebugLevel() >= CleverTapAPI.LogLevel.INFO.intValue()){
Log.i(Constants.CLEVERTAP_LOG_TAG,message);
}
} | java | {
"resource": ""
} |
q7834 | CTInboxBaseMessageViewHolder.calculateDisplayTimestamp | train | String calculateDisplayTimestamp(long time){
long now = System.currentTimeMillis()/1000;
long diff = now-time;
if(diff < 60){
return "Just Now";
}else if(diff > 60 && diff < 59*60){
return (diff/(60)) + " mins ago";
}else if(diff > 59*60 && diff < 23*59*60... | java | {
"resource": ""
} |
q7835 | CTInboxStyleConfig.setTabs | train | public void setTabs(ArrayList<String>tabs) {
if (tabs == null || tabs.size() <= 0) return;
if (platformSupportsTabs) {
ArrayList<String> toAdd;
if (tabs.size() > MAX_TABS) {
toAdd = new ArrayList<>(tabs.subList(0, MAX_TABS));
} else {
... | java | {
"resource": ""
} |
q7836 | EventHandler.push | train | @Deprecated
@SuppressWarnings("deprecation")
public void push(String eventName, HashMap<String, Object> chargeDetails,
ArrayList<HashMap<String, Object>> items)
throws InvalidEventNameException {
// This method is for only charged events
if (!eventName.equals(Con... | java | {
"resource": ""
} |
q7837 | CTInboxMessage.getCarouselImages | train | public ArrayList<String> getCarouselImages(){
ArrayList<String> carouselImages = new ArrayList<>();
for(CTInboxMessageContent ctInboxMessageContent: getInboxMessageContents()){
carouselImages.add(ctInboxMessageContent.getMedia());
}
return carouselImages;
} | java | {
"resource": ""
} |
q7838 | DBAdapter.storeObject | train | synchronized int storeObject(JSONObject obj, Table table) {
if (!this.belowMemThreshold()) {
Logger.v("There is not enough space left on the device to store data, data discarded");
return DB_OUT_OF_MEMORY_ERROR;
}
final String tableName = table.getName();
Cursor... | java | {
"resource": ""
} |
q7839 | DBAdapter.storeUserProfile | train | synchronized long storeUserProfile(String id, JSONObject obj) {
if (id == null) return DB_UPDATE_ERROR;
if (!this.belowMemThreshold()) {
getConfigLogger().verbose("There is not enough space left on the device to store data, data discarded");
return DB_OUT_OF_MEMORY_ERROR;
... | java | {
"resource": ""
} |
q7840 | DBAdapter.removeUserProfile | train | synchronized void removeUserProfile(String id) {
if (id == null) return;
final String tableName = Table.USER_PROFILES.getName();
try {
final SQLiteDatabase db = dbHelper.getWritableDatabase();
db.delete(tableName, "_id = ?", new String[]{id});
} catch (final SQLi... | java | {
"resource": ""
} |
q7841 | DBAdapter.removeEvents | train | synchronized void removeEvents(Table table) {
final String tName = table.getName();
try {
final SQLiteDatabase db = dbHelper.getWritableDatabase();
db.delete(tName, null, null);
} catch (final SQLiteException e) {
getConfigLogger().verbose("Error removing all... | java | {
"resource": ""
} |
q7842 | DBAdapter.fetchEvents | train | synchronized JSONObject fetchEvents(Table table, final int limit) {
final String tName = table.getName();
Cursor cursor = null;
String lastId = null;
final JSONArray events = new JSONArray();
//noinspection TryFinallyCanBeTryWithResources
try {
final SQLiteD... | java | {
"resource": ""
} |
q7843 | DBAdapter.storeUninstallTimestamp | train | synchronized void storeUninstallTimestamp() {
if (!this.belowMemThreshold()) {
getConfigLogger().verbose("There is not enough space left on the device to store data, data discarded");
return ;
}
final String tableName = Table.UNINSTALL_TS.getName();
try {
... | java | {
"resource": ""
} |
q7844 | DBAdapter.deleteMessageForId | train | synchronized boolean deleteMessageForId(String messageId, String userId){
if(messageId == null || userId == null) return false;
final String tName = Table.INBOX_MESSAGES.getName();
try {
final SQLiteDatabase db = dbHelper.getWritableDatabase();
db.delete(tName, _ID + " ... | java | {
"resource": ""
} |
q7845 | DBAdapter.markReadMessageForId | train | synchronized boolean markReadMessageForId(String messageId, String userId){
if(messageId == null || userId == null) return false;
final String tName = Table.INBOX_MESSAGES.getName();
try{
final SQLiteDatabase db = dbHelper.getWritableDatabase();
ContentValues cv = new Co... | java | {
"resource": ""
} |
q7846 | DBAdapter.getMessages | train | synchronized ArrayList<CTMessageDAO> getMessages(String userId){
final String tName = Table.INBOX_MESSAGES.getName();
Cursor cursor;
ArrayList<CTMessageDAO> messageDAOArrayList = new ArrayList<>();
try{
final SQLiteDatabase db = dbHelper.getWritableDatabase();
cur... | java | {
"resource": ""
} |
q7847 | GifHeaderParser.readContents | train | private void readContents(int maxFrames) {
// Read GIF file content blocks.
boolean done = false;
while (!(done || err() || header.frameCount > maxFrames)) {
int code = read();
switch (code) {
// Image separator.
case 0x2C:
... | java | {
"resource": ""
} |
q7848 | GifHeaderParser.readBitmap | train | private void readBitmap() {
// (sub)image position & size.
header.currentFrame.ix = readShort();
header.currentFrame.iy = readShort();
header.currentFrame.iw = readShort();
header.currentFrame.ih = readShort();
int packed = read();
// 1 - local color table flag i... | java | {
"resource": ""
} |
q7849 | GifHeaderParser.readNetscapeExt | train | private void readNetscapeExt() {
do {
readBlock();
if (block[0] == 1) {
// Loop count sub-block.
int b1 = ((int) block[1]) & 0xff;
int b2 = ((int) block[2]) & 0xff;
header.loopCount = (b2 << 8) | b1;
if(heade... | java | {
"resource": ""
} |
q7850 | GifHeaderParser.readLSD | train | private void readLSD() {
// Logical screen size.
header.width = readShort();
header.height = readShort();
// Packed fields
int packed = read();
// 1 : global color table flag.
header.gctFlag = (packed & 0x80) != 0;
// 2-4 : color resolution.
// 5 :... | java | {
"resource": ""
} |
q7851 | GifHeaderParser.readColorTable | train | private int[] readColorTable(int ncolors) {
int nbytes = 3 * ncolors;
int[] tab = null;
byte[] c = new byte[nbytes];
try {
rawData.get(c);
// Max size to avoid bounds checks.
tab = new int[MAX_BLOCK_SIZE];
int i = 0;
int j = 0... | java | {
"resource": ""
} |
q7852 | GifHeaderParser.skip | train | private void skip() {
try {
int blockSize;
do {
blockSize = read();
rawData.position(rawData.position() + blockSize);
} while (blockSize > 0);
} catch (IllegalArgumentException ex) {
}
} | java | {
"resource": ""
} |
q7853 | GifHeaderParser.read | train | private int read() {
int curByte = 0;
try {
curByte = rawData.get() & 0xFF;
} catch (Exception e) {
header.status = GifDecoder.STATUS_FORMAT_ERROR;
}
return curByte;
} | java | {
"resource": ""
} |
q7854 | TreeScanner.isToIgnore | train | private boolean isToIgnore(CtElement element) {
if (element instanceof CtStatementList && !(element instanceof CtCase)) {
if (element.getRoleInParent() == CtRole.ELSE || element.getRoleInParent() == CtRole.THEN) {
return false;
}
return true;
}
return element.isImplicit() || element instanceof CtRefe... | java | {
"resource": ""
} |
q7855 | Json4SpoonGenerator.getJSONwithOperations | train | public JsonObject getJSONwithOperations(TreeContext context, ITree tree, List<Operation> operations) {
OperationNodePainter opNodePainter = new OperationNodePainter(operations);
Collection<NodePainter> painters = new ArrayList<NodePainter>();
painters.add(opNodePainter);
return getJSONwithCustorLabels(context,... | java | {
"resource": ""
} |
q7856 | ActionClassifier.getRootActions | train | public List<Action> getRootActions() {
final List<Action> rootActions = srcUpdTrees.stream().map(t -> originalActionsSrc.get(t))
.collect(Collectors.toList());
rootActions.addAll(srcDelTrees.stream() //
.filter(t -> !srcDelTrees.contains(t.getParent()) && !srcUpdTrees.contains(t.getParent())) //
.map(t... | java | {
"resource": ""
} |
q7857 | AstComparator.compare | train | public Diff compare(File f1, File f2) throws Exception {
return this.compare(getCtType(f1), getCtType(f2));
} | java | {
"resource": ""
} |
q7858 | AstComparator.compare | train | public Diff compare(String left, String right) {
return compare(getCtType(left), getCtType(right));
} | java | {
"resource": ""
} |
q7859 | AstComparator.compare | train | public Diff compare(CtElement left, CtElement right) {
final SpoonGumTreeBuilder scanner = new SpoonGumTreeBuilder();
return new DiffImpl(scanner.getTreeContext(), scanner.getTree(left), scanner.getTree(right));
} | java | {
"resource": ""
} |
q7860 | ArrayAdapterCompat.set | train | public void set(int index, T object) {
synchronized (mLock) {
if (mOriginalValues != null) {
mOriginalValues.set(index, object);
} else {
mObjects.set(index, object);
}
}
if (mNotifyOnChange) notifyDataSetChanged();
} | java | {
"resource": ""
} |
q7861 | ArrayAdapterCompat.addAll | train | public void addAll(int index, T... items) {
List<T> collection = Arrays.asList(items);
synchronized (mLock) {
if (mOriginalValues != null) {
mOriginalValues.addAll(index, collection);
} else {
mObjects.addAll(index, collection);
}
... | java | {
"resource": ""
} |
q7862 | ArrayAdapterCompat.removeAt | train | public void removeAt(int index) {
synchronized (mLock) {
if (mOriginalValues != null) {
mOriginalValues.remove(index);
} else {
mObjects.remove(index);
}
}
if (mNotifyOnChange) notifyDataSetChanged();
} | java | {
"resource": ""
} |
q7863 | ArrayAdapterCompat.removeAll | train | public boolean removeAll(Collection<?> collection) {
boolean result = false;
synchronized (mLock) {
Iterator<?> it;
if (mOriginalValues != null) {
it = mOriginalValues.iterator();
} else {
it = mObjects.iterator();
}
... | java | {
"resource": ""
} |
q7864 | AdvancedRecyclerArrayAdapter.addAll | train | public void addAll(@NonNull final Collection<T> collection) {
final int length = collection.size();
if (length == 0) {
return;
}
synchronized (mLock) {
final int position = getItemCount();
mObjects.addAll(collection);
notifyItemRangeInserte... | java | {
"resource": ""
} |
q7865 | AdvancedRecyclerArrayAdapter.getItem | train | @Nullable
public T getItem(final int position) {
if (position < 0 || position >= mObjects.size()) {
return null;
}
return mObjects.get(position);
} | java | {
"resource": ""
} |
q7866 | AdvancedRecyclerArrayAdapter.replaceItem | train | public void replaceItem(@NonNull final T oldObject, @NonNull final T newObject) {
synchronized (mLock) {
final int position = getPosition(oldObject);
if (position == -1) {
// not found, don't replace
return;
}
mObjects.remove(posit... | java | {
"resource": ""
} |
q7867 | ViewUtils.hideSystemUI | train | @TargetApi(VERSION_CODES.KITKAT)
public static void hideSystemUI(Activity activity) {
// Set the IMMERSIVE flag.
// Set the content to appear under the system bars so that the content
// doesn't resize when the system bars hideSelf and show.
View decorView = activity.getWindow().getD... | java | {
"resource": ""
} |
q7868 | ViewUtils.showSystemUI | train | @TargetApi(VERSION_CODES.KITKAT)
public static void showSystemUI(Activity activity) {
View decorView = activity.getWindow().getDecorView();
decorView.setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
... | java | {
"resource": ""
} |
q7869 | AdapterWrapper.getView | train | @Override
public View getView(int position, View convertView,
ViewGroup parent) {
return (wrapped.getView(position, convertView, parent));
} | java | {
"resource": ""
} |
q7870 | ProgressDialogFragment.onDismiss | train | @Override
public void onDismiss(DialogInterface dialog) {
if (mOldDialog != null && mOldDialog == dialog) {
// This is the callback from the old progress dialog that was already dismissed before
// the device orientation change, so just ignore it.
return;
}
... | java | {
"resource": ""
} |
q7871 | ReflectionUtils.isToStringMethod | train | public static boolean isToStringMethod(Method method) {
return (method != null && method.getName().equals("readString") && method.getParameterTypes().length == 0);
} | java | {
"resource": ""
} |
q7872 | ReflectionUtils.getUniqueDeclaredMethods | train | public static Method[] getUniqueDeclaredMethods(Class<?> leafClass) throws IllegalArgumentException {
final List<Method> methods = new ArrayList<Method>(32);
doWithMethods(leafClass, new MethodCallback() {
@Override
public void doWith(Method method) {
boolean know... | java | {
"resource": ""
} |
q7873 | WeakFastHashMap.put | train | @Override
public V put(K key, V value) {
if (fast) {
synchronized (this) {
Map<K, V> temp = cloneMap(map);
V result = temp.put(key, value);
map = temp;
return (result);
}
} else {
synchroniz... | java | {
"resource": ""
} |
q7874 | WeakFastHashMap.putAll | train | @Override
public void putAll(Map<? extends K, ? extends V> in) {
if (fast) {
synchronized (this) {
Map<K, V> temp = cloneMap(map);
temp.putAll(in);
map = temp;
}
} else {
synchronized (map) {
... | java | {
"resource": ""
} |
q7875 | WeakFastHashMap.remove | train | @Override
public V remove(Object key) {
if (fast) {
synchronized (this) {
Map<K, V> temp = cloneMap(map);
V result = temp.remove(key);
map = temp;
return (result);
}
} else {
synchronized (m... | java | {
"resource": ""
} |
q7876 | IOUtils.isFileExist | train | public static boolean isFileExist(String filePath) {
if (StringUtils.isEmpty(filePath)) {
return false;
}
File file = new File(filePath);
return (file.exists() && file.isFile());
} | java | {
"resource": ""
} |
q7877 | IOUtils.isFolderExist | train | public static boolean isFolderExist(String directoryPath) {
if (StringUtils.isEmpty(directoryPath)) {
return false;
}
File dire = new File(directoryPath);
return (dire.exists() && dire.isDirectory());
} | java | {
"resource": ""
} |
q7878 | AndroidUtils.addToMediaStore | train | public static void addToMediaStore(Context context, File file) {
String[] path = new String[]{file.getPath()};
MediaScannerConnection.scanFile(context, path, null, null);
} | java | {
"resource": ""
} |
q7879 | CountingInputStream.skip | train | @Override
public synchronized long skip(final long length) throws IOException {
final long skip = super.skip(length);
this.count += skip;
return skip;
} | java | {
"resource": ""
} |
q7880 | HeaderFooterRecyclerAdapter.notifyHeaderItemRangeInserted | train | public final void notifyHeaderItemRangeInserted(int positionStart, int itemCount) {
int newHeaderItemCount = getHeaderItemCount();
if (positionStart < 0 || itemCount < 0 || positionStart + itemCount > newHeaderItemCount) {
throw new IndexOutOfBoundsException("The given range [" + positionSta... | java | {
"resource": ""
} |
q7881 | HeaderFooterRecyclerAdapter.notifyHeaderItemChanged | train | public final void notifyHeaderItemChanged(int position) {
if (position < 0 || position >= headerItemCount) {
throw new IndexOutOfBoundsException("The given position " + position + " is not within the position bounds for header items [0 - " + (headerItemCount - 1) + "].");
}
notifyIte... | java | {
"resource": ""
} |
q7882 | HeaderFooterRecyclerAdapter.notifyHeaderItemRangeChanged | train | public final void notifyHeaderItemRangeChanged(int positionStart, int itemCount) {
if (positionStart < 0 || itemCount < 0 || positionStart + itemCount >= headerItemCount) {
throw new IndexOutOfBoundsException("The given range [" + positionStart + " - " + (positionStart + itemCount - 1) + "] is not w... | java | {
"resource": ""
} |
q7883 | HeaderFooterRecyclerAdapter.notifyHeaderItemMoved | train | public void notifyHeaderItemMoved(int fromPosition, int toPosition) {
if (fromPosition < 0 || toPosition < 0 || fromPosition >= headerItemCount || toPosition >= headerItemCount) {
throw new IndexOutOfBoundsException("The given fromPosition " + fromPosition + " or toPosition " + toPosition + " is not... | java | {
"resource": ""
} |
q7884 | HeaderFooterRecyclerAdapter.notifyHeaderItemRangeRemoved | train | public void notifyHeaderItemRangeRemoved(int positionStart, int itemCount) {
if (positionStart < 0 || itemCount < 0 || positionStart + itemCount > headerItemCount) {
throw new IndexOutOfBoundsException("The given range [" + positionStart + " - " + (positionStart + itemCount - 1) + "] is not within t... | java | {
"resource": ""
} |
q7885 | HeaderFooterRecyclerAdapter.notifyContentItemInserted | train | public final void notifyContentItemInserted(int position) {
int newHeaderItemCount = getHeaderItemCount();
int newContentItemCount = getContentItemCount();
if (position < 0 || position >= newContentItemCount) {
throw new IndexOutOfBoundsException("The given position " + position + " ... | java | {
"resource": ""
} |
q7886 | HeaderFooterRecyclerAdapter.notifyContentItemRangeInserted | train | public final void notifyContentItemRangeInserted(int positionStart, int itemCount) {
int newHeaderItemCount = getHeaderItemCount();
int newContentItemCount = getContentItemCount();
if (positionStart < 0 || itemCount < 0 || positionStart + itemCount > newContentItemCount) {
throw new ... | java | {
"resource": ""
} |
q7887 | HeaderFooterRecyclerAdapter.notifyContentItemChanged | train | public final void notifyContentItemChanged(int position) {
if (position < 0 || position >= contentItemCount) {
throw new IndexOutOfBoundsException("The given position " + position
+ " is not within the position bounds for content items [0 - " + (contentItemCount - 1) + "].");
... | java | {
"resource": ""
} |
q7888 | HeaderFooterRecyclerAdapter.notifyContentItemRangeChanged | train | public final void notifyContentItemRangeChanged(int positionStart, int itemCount) {
if (positionStart < 0 || itemCount < 0 || positionStart + itemCount > contentItemCount) {
throw new IndexOutOfBoundsException("The given range [" + positionStart + " - "
+ (positionStart + itemCou... | java | {
"resource": ""
} |
q7889 | HeaderFooterRecyclerAdapter.notifyContentItemMoved | train | public final void notifyContentItemMoved(int fromPosition, int toPosition) {
if (fromPosition < 0 || toPosition < 0 || fromPosition >= contentItemCount || toPosition >= contentItemCount) {
throw new IndexOutOfBoundsException("The given fromPosition " + fromPosition + " or toPosition "
... | java | {
"resource": ""
} |
q7890 | HeaderFooterRecyclerAdapter.notifyContentItemRemoved | train | public final void notifyContentItemRemoved(int position) {
if (position < 0 || position >= contentItemCount) {
throw new IndexOutOfBoundsException("The given position " + position
+ " is not within the position bounds for content items [0 - "
+ (contentItemCou... | java | {
"resource": ""
} |
q7891 | HeaderFooterRecyclerAdapter.notifyContentItemRangeRemoved | train | public final void notifyContentItemRangeRemoved(int positionStart, int itemCount) {
if (positionStart < 0 || itemCount < 0 || positionStart + itemCount > contentItemCount) {
throw new IndexOutOfBoundsException("The given range [" + positionStart + " - "
+ (positionStart + itemCou... | java | {
"resource": ""
} |
q7892 | HeaderFooterRecyclerAdapter.notifyFooterItemInserted | train | public final void notifyFooterItemInserted(int position) {
int newHeaderItemCount = getHeaderItemCount();
int newContentItemCount = getContentItemCount();
int newFooterItemCount = getFooterItemCount();
// if (position < 0 || position >= newFooterItemCount) {
// throw new IndexO... | java | {
"resource": ""
} |
q7893 | HeaderFooterRecyclerAdapter.notifyFooterItemRangeInserted | train | public final void notifyFooterItemRangeInserted(int positionStart, int itemCount) {
int newHeaderItemCount = getHeaderItemCount();
int newContentItemCount = getContentItemCount();
int newFooterItemCount = getFooterItemCount();
if (positionStart < 0 || itemCount < 0 || positionStart + ite... | java | {
"resource": ""
} |
q7894 | HeaderFooterRecyclerAdapter.notifyFooterItemChanged | train | public final void notifyFooterItemChanged(int position) {
if (position < 0 || position >= footerItemCount) {
throw new IndexOutOfBoundsException("The given position " + position
+ " is not within the position bounds for footer items [0 - "
+ (footerItemCount -... | java | {
"resource": ""
} |
q7895 | HeaderFooterRecyclerAdapter.notifyFooterItemRangeChanged | train | public final void notifyFooterItemRangeChanged(int positionStart, int itemCount) {
if (positionStart < 0 || itemCount < 0 || positionStart + itemCount > footerItemCount) {
throw new IndexOutOfBoundsException("The given range [" + positionStart + " - "
+ (positionStart + itemCount... | java | {
"resource": ""
} |
q7896 | HeaderFooterRecyclerAdapter.notifyFooterItemMoved | train | public final void notifyFooterItemMoved(int fromPosition, int toPosition) {
if (fromPosition < 0 || toPosition < 0 || fromPosition >= footerItemCount || toPosition >= footerItemCount) {
throw new IndexOutOfBoundsException("The given fromPosition " + fromPosition
+ " or toPosition... | java | {
"resource": ""
} |
q7897 | HeaderFooterRecyclerAdapter.notifyFooterItemRangeRemoved | train | public final void notifyFooterItemRangeRemoved(int positionStart, int itemCount) {
if (positionStart < 0 || itemCount < 0 || positionStart + itemCount > footerItemCount) {
throw new IndexOutOfBoundsException("The given range [" + positionStart + " - "
+ (positionStart + itemCount... | java | {
"resource": ""
} |
q7898 | AdapterExtend.getView | train | @Override
public View getView(int position, View convertView, ViewGroup parent) {
if (position == super.getCount() && isEnableRefreshing()) {
return (mFooter);
}
return (super.getView(position, convertView, parent));
} | java | {
"resource": ""
} |
q7899 | StringUtils.addStringToArray | train | public static String[] addStringToArray(String[] array, String str) {
if (isEmpty(array)) {
return new String[]{str};
}
String[] newArr = new String[array.length + 1];
System.arraycopy(array, 0, newArr, 0, array.length);
newArr[array.length] = str;
return newA... | java | {
"resource": ""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.