This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (int index = 0; index < linesInSymbolsFile.size(); index++) { | |
RDotTxtEntry resource = getResourceAtIndex(linesInSymbolsFile, index); | |
if (uberRDotTxtIds.isPresent()) { | |
Preconditions.checkNotNull(finalIds); | |
if (!finalIds.containsKey(resource)) { | |
LOG.debug("Cannot find resource '%s' in the uber R.txt.", resource); | |
continue; | |
} | |
resource = resource.copyWithNewIdValue(finalIds.get(resource)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<vector> | |
#include<stack> | |
#include<set> | |
#include<map> | |
#include<queue> | |
#include<deque> | |
#include<string> | |
#include<iostream> | |
#include<algorithm> | |
#include<cstring> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android_library( | |
name = 'src_release', | |
srcs = glob([ | |
'src/main/java/**/*.java', | |
]), | |
... | |
) | |
robolectric_test( | |
name = 'test_release', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
import java.util.*; | |
import java.math.*; | |
public class Main | |
{ | |
BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); | |
StringTokenizer tokenizer=null; | |
public static void main(String[] args) throws IOException |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<vector> | |
#include<stack> | |
#include<set> | |
#include<map> | |
#include<queue> | |
#include<deque> | |
#include<string> | |
#include<iostream> | |
#include<algorithm> | |
#include<cstring> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
import java.util.*; | |
import java.math.*; | |
public class Solution | |
{ | |
BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); | |
StringTokenizer tokenizer=null; | |
public static void main(String[] args) throws IOException |