query
stringlengths
7
33.1k
document
stringlengths
7
335k
metadata
dict
negatives
listlengths
3
101
negative_scores
listlengths
3
101
document_score
stringlengths
3
10
document_rank
stringclasses
102 values
Creates a new instance of ChangePasswordBean
public ChangePasswordBean() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public PasswordChangeDTO() {}", "public ChangePasswordOperation() {\r\n }", "public PasswordChangeDTO(String currentPassword, String newPassword) {\n\t\tthis.currentPassword = currentPassword;\n\t\tthis.newPassword = newPassword;\n\t}", "public ChangePasswordPanel() {\n initComponents();\n }", ...
[ "0.6542053", "0.6276443", "0.61709094", "0.59808725", "0.5904708", "0.5892138", "0.58862305", "0.58522767", "0.5852102", "0.5842908", "0.58370185", "0.5830283", "0.5811222", "0.5787891", "0.57364625", "0.5734627", "0.57295793", "0.57295793", "0.57295793", "0.57198095", "0.570...
0.82089645
0
Created by sreelal on 16/12/17.
public interface DataBasePresent { void setDistrict(List<Name_Id> list); void setLocalBodyType(List<Name_Id> list); void setLocalBodyName(List<LocalBody> list); List<Name_Id> getDistrict(); List<Name_Id> getLocalBodyType(); List<LocalBody> getLocalBodyName(String districId ,String locatType...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "public final void mo51373a() {\n }", "private stendhal() {\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\r\n\tpubl...
[ "0.60705274", "0.5894938", "0.5866747", "0.5824997", "0.5800171", "0.5771144", "0.5771144", "0.57544774", "0.5711638", "0.57083976", "0.5681119", "0.56665444", "0.5649293", "0.5641524", "0.5636162", "0.56189394", "0.56189394", "0.56189394", "0.56189394", "0.56189394", "0.5606...
0.0
-1
Throw an exception if the date is out of bounds
public boolean runsOn( GTFSDate date ) { if( date.before( this.start_date) ) { throw new DateOutOfBoundsException( date+" is before period start "+this.start_date ); } if( date.after( this.end_date) ) { throw new DateOutOfBoundsException( date+" is after period end "+this.end_date ); } //Return false...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\n public void testDateRangeValidDate() throws Exception {\n Map<String, String> fields = new HashMap<String, String>();\n fields.put(\"generatedTimestamp\", \"12/31/1981\");\n \n this.addSingleDayDateRange.invoke(this.lockService, fields);\n \n Assert.assertEquals...
[ "0.6448233", "0.6380966", "0.6366629", "0.63516694", "0.6346406", "0.6280348", "0.6210121", "0.6172112", "0.6137925", "0.6118421", "0.61023206", "0.60284495", "0.5967378", "0.594319", "0.593694", "0.591665", "0.58669066", "0.586268", "0.58485746", "0.5841562", "0.58024395", ...
0.0
-1
Hibernate SessionFactory Variable Constructor NationalityDAO Initializes sessionFactory
public NationalityDAO() { //sessionFactory = HibernateUtil.getSessionFactory(); session=HibernateUtil.openSession(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public PaymentDAOImpl(SessionFactory sessionfactory)\n\t{\n\tthis.sessionFactory=sessionfactory; \n\tlog.debug(\"Successfully estblished connection\");\n\t}", "public FuncaoCasoDAOImpl() {\n\t\tsetSession(HibernateUtil.getSessionFactory());\n\t}", "@Autowired\n public CuestionarioDaoHibernate(SessionFactor...
[ "0.7255217", "0.7126036", "0.68735224", "0.67230886", "0.67046905", "0.6624205", "0.65868026", "0.6518535", "0.64782375", "0.64100856", "0.6395699", "0.6371434", "0.63599515", "0.63424355", "0.63058865", "0.6295747", "0.6277092", "0.62707263", "0.6265568", "0.6252619", "0.621...
0.8822425
0
Created by Pontus on 20160304.
public interface IPickUpAble { Character getCharacter(); boolean isPickedUp(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "public final void mo51373a() {\n }", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "private stendhal() {\n\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\r\n...
[ "0.61514413", "0.60161734", "0.59820384", "0.59260243", "0.5889962", "0.5887028", "0.58847284", "0.5801708", "0.5796147", "0.5796147", "0.5725833", "0.5723191", "0.5672562", "0.5672375", "0.56651074", "0.56536037", "0.56536037", "0.56536037", "0.56536037", "0.56536037", "0.56...
0.0
-1
This is the constructor of the class. It creates the layout of the panel, from number of rows & columns to the background colour.
public ConnectFourPanel(int gameType) { this.gameType = gameType; setLayout(new GridLayout(COL, ROW)); setBackground(Color.WHITE); setPreferredSize(new Dimension(700, 600)); setLayout(new GridLayout(7, 7, 10, 10)); /** * This creates a black row of 6 at top, which indicates to user that * ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void setUpLayout() {\n\n this.setLayout(new GridLayout(7, 1, 40, 37));\n this.setBackground(new Color(72, 0, 0));\n this.setBorder(BorderFactory.createEmptyBorder(8, 150, 8, 150));\n }", "public GriddedPanel() {\n this(new Insets(2, 2, 2, 2));\n\n }", "public ColorPane...
[ "0.70441073", "0.70279884", "0.698105", "0.687864", "0.67957926", "0.6759544", "0.67472386", "0.67107993", "0.6698306", "0.6678", "0.6652404", "0.6634418", "0.66281354", "0.66260374", "0.65903896", "0.65338635", "0.65068483", "0.6487616", "0.6462174", "0.6456086", "0.6439384"...
0.0
-1
Game Set up for single player. Sets colours for user and Computer as well as places chip for CPU automatically after user has gone
private void compMode(int col) { int colPlayer, rowPlayer, colComp, rowComp; Color player = Color.yellow; Color comp = Color.red; colPlayer = col; rowPlayer = compAI.playerMove(colPlayer); squares[rowPlayer][colPlayer].setBackground(player); /** * Automatically places chip for computer (Thi...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static void newGame(boolean humanChecker,boolean whoTurn, boolean computerColor) {\n\t\tG=new gamePlay();\n\t\tnumRed=0;\n\t\tnumBlue=0;\n\t\t\n\t\t\n\t\tdouble value = Math.random();\n\t\tFont font = new Font(\"Sans Serif\", 20, 20);\n\t\tStdDraw.setFont(font);\n\t\t\n\t\twhosFirst = true;\n\t\tif (value <...
[ "0.68162376", "0.68041545", "0.6754566", "0.66115373", "0.6539697", "0.64950556", "0.6477035", "0.64480764", "0.6436621", "0.6421935", "0.64050263", "0.64027226", "0.6397024", "0.639566", "0.63340664", "0.6318089", "0.631808", "0.63133717", "0.63047385", "0.6292554", "0.62894...
0.0
-1
Makes another board which corresponds game board, this board is used to check winner
private void board() { for (int n = 0; n < ROW; n++) { for (int m = 0; m < COL; m++) { board[n][m] = 'X'; } } turnRemaining = 42; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void generateBoard(){\n\t}", "public static void makeBoardChess() {\r\n \r\n white = new AllPiece(\"White\");\r\n black = new AllPiece(\"Black\");\r\n \r\n }", "public void Makeboard() {\r\n\r\n Normalboard(new Point2(20, 300));\r\n Normalboard(new Point...
[ "0.72960573", "0.72553957", "0.7190161", "0.7126501", "0.70239735", "0.70068437", "0.69912004", "0.6948948", "0.6939224", "0.69028866", "0.690127", "0.68998647", "0.68857855", "0.68850577", "0.68456566", "0.6833577", "0.67952216", "0.67749333", "0.6745921", "0.67455846", "0.6...
0.6386123
68
Sets colour for each player, Yellow for Player 1, Red for Player 2
public void updateBoard(Color color, int i, int y) { if (color == Color.yellow) { board[i][y] = '1'; } else if (color == Color.red) { board[i][y] = '2'; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic Color getColor() {\n\t\treturn playerColor;\n\t}", "void setTileColor(int a_player)\n {\n if (a_player == 0)\n {\n this.tileColor = \"BLACK\";\n }\n else if (a_player == 1)\n {\n this.tileColor = \"RED\";\n }\n else\n ...
[ "0.7177904", "0.7140471", "0.7054599", "0.68648887", "0.67977166", "0.67971", "0.6732032", "0.6571707", "0.6493206", "0.6423156", "0.64079916", "0.637888", "0.636539", "0.63324887", "0.6325579", "0.63183767", "0.63158727", "0.6256152", "0.6240729", "0.6192678", "0.61809635", ...
0.0
-1
Changes turn for player, also if column is full, disables button which corresponds to the column, making it known to users the column is full
public Color turnSwitcher(int i) { if ((counter % 2) == 0) { color = Color.yellow; } else { color = Color.red; } index[i] -= 1; if (index[i] < 1) { buttons[i].setEnabled(false); buttons[i].setBackground(Color.WHITE); } return color; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void able()\n {\n // Enable all the buttons one by one\n for (int col = 0; col < COLUMNS; col++ )\n {\n // If the column is full, disable the corresponding button\n if (chessBoard[0][col] != 0)\n {\n drop[col].setEnabled(false);\n }\n // Else enable the button\n ...
[ "0.6851779", "0.679509", "0.6711717", "0.67001915", "0.66892314", "0.65540445", "0.64659005", "0.64382315", "0.6365581", "0.6315502", "0.6297601", "0.62920153", "0.62469906", "0.60652846", "0.6054046", "0.6020783", "0.60035366", "0.5982678", "0.59823644", "0.5966572", "0.5951...
0.0
-1
States winner and stops game once winner is found
public void winnerFound() { for (int n = 0; n < 6; n++) { for (int m = 0; m < 7; m++) { squares[n][m].setEnabled(false); } } for (int a = 0; a < 7; a++) { buttons[a].setEnabled(false); } if (winnerChip != 67) { int result = JOptionPane.showConfirmDialog(null, " Player " + (win...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void winGame() {\n this.isWinner = true;\n }", "public void winGame() {\r\n if (data.gameState == 3) \r\n data.winner = 1;\r\n else if (data.gameState == 4) \r\n data.winner = 2;\r\n data.victoryFlag = true;\r\n data.gameState = 5;\r\n }", "...
[ "0.7716367", "0.75749356", "0.7309261", "0.72946787", "0.72724146", "0.72426313", "0.71246713", "0.71185386", "0.7060603", "0.7026985", "0.70099616", "0.6974738", "0.6942811", "0.6940661", "0.68901974", "0.6864829", "0.68589634", "0.68562824", "0.68181276", "0.6806099", "0.67...
0.7167433
6
Checks for Winner using board which was made above, checks for winner vertically, horizontally and diagonally
public boolean win() { for (int n = 0; n < 3; n++) { for (int m = 0; m < 7; m++) { if (board[n][m] != 'X') { if (board[n + 1][m] == board[n][m] && board[n + 2][m] == board[n][m] && board[n + 3][m] == board[n][m]) { squares[n][m].setText("X"); squares[n + 1][m].setText("X"); ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void checkBoard(){\n\n //check horizontally for a winner\n for(int i = 0; i < 3; i++) {\n if (boardStatus[i][0].equals(boardStatus[i][1]) && boardStatus[i][1].equals(boardStatus[i][2])) {\n if (boardStatus[i][0].equals(\"X\")) {\n winnerResults = pl...
[ "0.8355466", "0.8202147", "0.8124377", "0.80766857", "0.8049892", "0.8047858", "0.8018693", "0.79194015", "0.7919009", "0.7856255", "0.7839731", "0.78164583", "0.7724716", "0.7713505", "0.76954764", "0.7672909", "0.766996", "0.76628447", "0.75997794", "0.75975806", "0.7584625...
0.75772953
21
If game is tied, lets players know game is tied and asks user if they want to play again or return back to Main Menu
public void tie() { for (int n = 0; n < 6; n++) { for (int m = 0; m < 7; m++) { squares[n][m].setEnabled(false); } } for (int a = 0; a < 7; a++) { buttons[a].setEnabled(false); } int result = JOptionPane.showConfirmDialog(null, " TIE GAME! No winner Found! Do you want to start a ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void continueGame() {\n System.out.println(\"\\n\" + \"Do you want to play more games or quit?\\n\" + \"1. Lotto\\n\" + \"2. Small Lotto\\n\" + \"3. Quit\");\n input = scanner.next();\n changeGame();\n }", "private static void gameOver() {\n\t\tSystem.out.println(\"Would you like ...
[ "0.6687301", "0.6681147", "0.6638814", "0.66278607", "0.66144353", "0.6611345", "0.6566024", "0.65486044", "0.65363526", "0.65266967", "0.6524209", "0.65062004", "0.64738786", "0.64490753", "0.6444135", "0.643149", "0.6415838", "0.6387773", "0.6387444", "0.6373731", "0.636483...
0.6830547
0
Used for when game is reset again
public void gameReset() { for (int n = 0; n < 6; n++) { for (int m = 0; m < 7; m++) { squares[n][m].setText(""); squares[n][m].setBackground(Color.BLUE); squares[n][m].setEnabled(true); } } for (int a = 0; a < 7; a++) { buttons[a].setEnabled(true); buttons[a].setBackground(Color....
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void resetAfterGame() {\n }", "public void reset() { \r\n myGameOver = false; \r\n myGamePaused = false; \r\n }", "@Override\n public void resetGame() {\n\n }", "private void resetGame(){\n\n }", "public void reset() {\r\n\t\tplayAgain = false;\r\n\t\tmainMenu = f...
[ "0.8418852", "0.7844566", "0.7842181", "0.78353494", "0.76381755", "0.7433553", "0.74019456", "0.73240614", "0.731169", "0.72672665", "0.7265495", "0.7212776", "0.7187371", "0.71672845", "0.7149229", "0.7132863", "0.71087724", "0.7102875", "0.706992", "0.70585525", "0.7048783...
0.6921836
29
/ Generate the secret key
protected static boolean[] generateSecretKey() { //Creating the key generator KeyGenerator gen = null; try { gen = KeyGenerator.getInstance("AES"); } catch (NoSuchAlgorithmException e1) { System.out.println("Algoritmo non supportato"); System.exit(1); } //Generating the secret key gen.init...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private static Key generateKey() {\n return new SecretKeySpec(keyValue, ALGO);\n }", "private String generateSecretKey(){\n SecureRandom random = new SecureRandom();\n byte[] bytes = new byte[20];\n\n random.nextBytes(bytes);\n Base32 base32 = new Base32();\n return b...
[ "0.8041232", "0.79331064", "0.78231084", "0.7667926", "0.7323153", "0.7259364", "0.7235901", "0.7212482", "0.7192791", "0.7166261", "0.71282345", "0.71155006", "0.7091924", "0.7080933", "0.7064051", "0.6982996", "0.6917923", "0.68090385", "0.6749135", "0.6745038", "0.67417485...
0.6738668
21
Set the test timeout
public static int getTimeOut() { TIME_OUT = 10; return TIME_OUT; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\r\n public void testSetTimeout() {\r\n // Not required\r\n }", "T setStartTimeout(Integer timeout);", "public void setTimeout(double timeout){\n this.timeout = timeout;\n }", "void setStartTimeout(int startTimeout);", "public void setTimeout(int timeout) {\r\n this.ti...
[ "0.81088036", "0.76302725", "0.7369949", "0.7284293", "0.7271122", "0.7259394", "0.7251105", "0.72254366", "0.7212869", "0.7190016", "0.7163259", "0.7144909", "0.71201825", "0.71201825", "0.7098879", "0.7070421", "0.7030108", "0.7022309", "0.70182294", "0.69941604", "0.696298...
0.0
-1
set the defaultGCHeadless to user the Google Chrome Headless set the defaultGC to user the Google Chrome
public static String getDefaultPlatformName() { PLATFORM_NAME = "defaultGC"; return PLATFORM_NAME; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static void setBrowser() {\n\t\t browser=\"Chrome\";\n\t }", "public void chromeLaunch() {\n\t\tSystem.setProperty(key, value);\n\t\ts=new ChromeDriver();\n\t\ts.manage().window().maximize();\n\t\ts.navigate().to(url);\n\t}", "@Given(\"I set up my Chrome Driver\")\n\tpublic void i_am_on_Magalu_HomePa...
[ "0.6337951", "0.5742156", "0.5717275", "0.5687143", "0.566238", "0.55908257", "0.55735373", "0.54669523", "0.5462612", "0.53578794", "0.5350454", "0.5348024", "0.53443956", "0.53422207", "0.5331029", "0.53234166", "0.53195405", "0.5305694", "0.52891755", "0.52825725", "0.5281...
0.48711714
64
if(new SymmetricTree().isSymmetric(null)) System.out.println("true"); else System.out.println("false");
public static void main(String[] args ) { char[] c = {'a','b','c'}; System.out.println(c.toString()); System.out.println(String.valueOf(c)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "boolean Symmetric(Node t)\n {\n return isMirror(t,t);\n }", "public static void main(String[] args) {\n\t\tTreeNode root = new TreeNode(1,new TreeNode(2),new TreeNode(3));\n//\t\troot.left = new TreeNode(2,null,new TreeNode(4));\n//\t\troot.right = new TreeNode(2,null,new TreeNode(3));\n\t\tboolea...
[ "0.781837", "0.7712545", "0.7430719", "0.7402568", "0.70720106", "0.70686024", "0.70469344", "0.70223445", "0.7022028", "0.7005673", "0.69940406", "0.69309294", "0.689961", "0.68905014", "0.6591731", "0.6590204", "0.6561773", "0.6313953", "0.6298852", "0.62712735", "0.6198506...
0.0
-1
Create a new instance.
public MinecraftUpdater(MinecraftInstall instance) { this.instance = instance; this.environment = instance.getEnvironment(); File temporaryDir = instance.getProfile().getTemporaryDir(); installer = new InstallerRuntime(executor, environment); installer.setTemporaryDir(temporaryDir); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Instance createInstance();", "public void create(){}", "public Instance() {\n }", "private Instantiation(){}", "private Object createInstance() throws InstantiationException, IllegalAccessException {\n\t\treturn classType.newInstance();\n\t}", "void create(T instance) throws IOException;", "Reproduc...
[ "0.7856344", "0.7297506", "0.7190777", "0.7127816", "0.70360863", "0.69051784", "0.6813679", "0.67574406", "0.6720743", "0.67055887", "0.66634166", "0.66509396", "0.66509396", "0.66497475", "0.6614444", "0.656769", "0.6566887", "0.652523", "0.6489371", "0.64792", "0.6469803",...
0.0
-1
Get the URL of the JSON file that tells information about the desired version.
private URL getManifestUrl() { return new URL(VERSION_MANIFEST_URL.replace("%s", "1.7.2")); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static String getVersionInfo(String pmaCoreURL) {\n\t\tif (pmaCoreURL == null) {\n\t\t\tpmaCoreURL = pmaCoreLiteURL;\n\t\t}\n\t\tString url = PMA.join(pmaCoreURL, \"api/json/GetVersionInfo\");\n\t\tString version = null;\n\t\tif (PMA.debug) {\n\t\t\tSystem.out.println(url);\n\t\t}\n\t\ttry {\n\t\t\tURL urlR...
[ "0.62375987", "0.6096757", "0.60116374", "0.5909994", "0.58694804", "0.58196974", "0.57698065", "0.57588935", "0.57588935", "0.57588935", "0.57588935", "0.57588935", "0.57588935", "0.57588935", "0.57588935", "0.57588935", "0.57588935", "0.57588935", "0.5753517", "0.57448936", ...
0.6277287
0
Get the URL where assets can be found.
private URL getAssetsUrl(String marker) { if (marker.length() == 0) { return getAssetsUrl(); } else { return url(ASSETS_URL + "?" + form().add("marker", marker).toString()); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private URL getAssetsUrl() {\n\t\treturn url(ASSETS_URL);\n\t}", "private String get_url() {\n File file = new File(url);\n return file.getAbsolutePath();\n }", "java.lang.String getArtifactUrl();", "public URL getURL()\n {\n if( url == null )\n {\n // Check if th...
[ "0.79898274", "0.68091387", "0.6521101", "0.6430868", "0.6418212", "0.63795453", "0.6372363", "0.637032", "0.6369403", "0.63539577", "0.6348158", "0.6300542", "0.62926143", "0.62926143", "0.62926143", "0.62926143", "0.62926143", "0.62926143", "0.62703735", "0.6261602", "0.626...
0.6916429
1
Get the base URL where assets can be found.
private URL getAssetsUrl() { return url(ASSETS_URL); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getBaseUrl() {\n return (String) get(\"base_url\");\n }", "public String getBaseStaticUrl() {\n return (String) get(\"base_static_url\");\n }", "public String getBaseUrl() {\n return builder.getBaseUrl();\n }", "public static String getBaseURL()\r\n {\r\n ...
[ "0.76296544", "0.75561845", "0.7412026", "0.73586696", "0.7326504", "0.7326504", "0.7312827", "0.73069507", "0.72786784", "0.7222895", "0.7212126", "0.7131041", "0.7099986", "0.70569015", "0.70506954", "0.70433915", "0.70272374", "0.70233464", "0.70233464", "0.7018835", "0.70...
0.75640297
1
Add shared Minecraft assets to the installer.
protected void installAssets(WorkUnit workUnit) throws IOException, InterruptedException { logger.log(Level.INFO, "Checking for asset downloads..."); File assetsDir = instance.getAssetsDir(); String marker = ""; while (marker != null) { URL bucketUrl = getAssetsUrl(marker); workUnit.push(0, _("minecraft...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void copyAssets(String dist) {\n copyFile(dist, \"pointer.png\");\n copyFile(dist, \"WebElementRecorder.js\");\n }", "public void copyAssets(View view) {\n log(\"copy assets to fon\");\n try {\n String [] list = getApplicationContext().getAssets().list(\"\");\n ...
[ "0.5596328", "0.54706514", "0.5392592", "0.529016", "0.5245065", "0.5232691", "0.5197894", "0.51935756", "0.5153163", "0.51326966", "0.50692713", "0.5037862", "0.50210875", "0.5008062", "0.50045675", "0.49898812", "0.49550575", "0.49407965", "0.4910413", "0.4896934", "0.48937...
0.5624915
0
Generate the Etag hash string that is returned by the assets location.
protected String getFileETag(File file) { FileInputStream is = null; try { is = new FileInputStream(file); return "\"" + DigestUtils.md5Hex(is) + "\""; } catch (IOException e) { return ""; } finally { closeQuietly(is); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getHash() {\n byte[] bArr = new byte[21];\n bArr[0] = (byte) getCTxDestinationType().getValue();\n System.arraycopy(this.mData, 0, bArr, 1, 20);\n return StringToolkit.bytesToString(bArr);\n }", "String getHash();", "String getHash();", "private String calulateHas...
[ "0.61759114", "0.60778517", "0.60778517", "0.6033163", "0.5907306", "0.5884412", "0.58420604", "0.57715726", "0.574358", "0.574358", "0.5736654", "0.5736654", "0.56894106", "0.56749386", "0.56538093", "0.5644214", "0.5580992", "0.5579677", "0.5559485", "0.55425525", "0.552793...
0.5670076
14
Sanitizes user input to prevent bad queries to the database.
public static String sanitizeInput(String input) { StringBuffer sb = new StringBuffer(); for (int i = 0 ; i < input.length(); i++) { char c = input.charAt(i); if (c >= 48 && c <= 57) { sb.append(c); } else if (c >= 65 && c <= 90) { sb.append(c); } else if (c >= 97 && c <= 122) { sb.append...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private String sanitizeQuery(String query) {\n if (query.length() >= MAX_ALLOWED_SQL_CHARACTERS) {\n throw new TooLongQueryError(query.length());\n }\n return query;\n }", "public interface Sanitizer {\n String sanitize(String input);\n }", "public static String san...
[ "0.6666882", "0.6464073", "0.63747656", "0.6293119", "0.62021303", "0.61673903", "0.59742576", "0.59587723", "0.5848652", "0.54928154", "0.54821736", "0.54064333", "0.5394157", "0.5348553", "0.53365177", "0.5284555", "0.5276467", "0.52700716", "0.52692264", "0.52553904", "0.5...
0.61118025
6
This interface provides all the methods needed to create,delete, retrieve, modify code level constructs (CodeUnits, Macros, Fragments, and Modules).
public interface Listing { /** * The name of the default tree in the display. * * @see #removeTree(String) */ public static final String DEFAULT_TREE_NAME = "Program Tree"; /** * get the code unit that starts at the given address. * * @param addr the address to look for a codeUnit. * @return the c...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface Ast {\n /**\n * Method for generating abstract syntactic structure for the source code\n * written in a programming language(Java or Python for example)\n */\n void genAst();\n\n}", "public interface JavaCode {\n\n /**\n * Get an unique identification code for an object\...
[ "0.61788046", "0.6147468", "0.59850174", "0.5953441", "0.5931783", "0.5863028", "0.5853796", "0.5849771", "0.5686926", "0.5686167", "0.56782", "0.5673287", "0.561346", "0.5597512", "0.5588353", "0.55746126", "0.55542004", "0.5514735", "0.54991806", "0.5496126", "0.5475635", ...
0.5144626
66
get the code unit that starts at the given address.
public CodeUnit getCodeUnitAt(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public CodeUnit getCodeUnitContaining(Address addr);", "public CodeUnit getCodeUnitBefore(Address addr);", "public CodeUnit getDefinedCodeUnitBefore(Address addr);", "public CodeUnit getCodeUnitAfter(Address addr);", "public CodeUnit getDefinedCodeUnitAfter(Address addr);", "public CodeUnitIterator getCo...
[ "0.781148", "0.7556192", "0.7423115", "0.72473806", "0.7160237", "0.59112525", "0.58466244", "0.5818443", "0.5773168", "0.57506734", "0.57031393", "0.56168354", "0.5575156", "0.55742335", "0.54734373", "0.54401356", "0.54399496", "0.53027314", "0.52971715", "0.5273124", "0.52...
0.80124456
0
get the code unit that contains the given address.
public CodeUnit getCodeUnitContaining(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public CodeUnit getCodeUnitAt(Address addr);", "public CodeUnit getDefinedCodeUnitAfter(Address addr);", "public CodeUnit getCodeUnitAfter(Address addr);", "public CodeUnit getDefinedCodeUnitBefore(Address addr);", "public CodeUnit getCodeUnitBefore(Address addr);", "private SimInstruction getInstruction...
[ "0.86251", "0.7461995", "0.74513894", "0.709205", "0.7088478", "0.6275304", "0.58358014", "0.5634228", "0.5591616", "0.55771184", "0.5473292", "0.546267", "0.54598725", "0.54459864", "0.53786534", "0.53786534", "0.53786534", "0.53786534", "0.53786534", "0.5377261", "0.5358621...
0.84495956
1
get the next code unit that starts an an address that is greater than the given address. The search will include instructions, defined data, and undefined data.
public CodeUnit getCodeUnitAfter(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private Address getNextAddress(Address addr) {\n\n\t\tInstruction instr = listing.getInstructionAfter(addr);\n\t\tAddress instrAddr = instr != null ? instr.getMinAddress() : null;\n\n\t\treturn instrAddr;\n// ?? ITERATOR HAS BEEN MODIFIED TO ONLY RETURN INSTRUCTION BLOCKS\n\n// Data data = getDefinedDataAft...
[ "0.63314724", "0.62417984", "0.59782714", "0.59601843", "0.59508437", "0.57027525", "0.56024086", "0.5548727", "0.5359083", "0.52102345", "0.5164567", "0.5051395", "0.4992066", "0.49585283", "0.48084453", "0.47980404", "0.47786736", "0.47398356", "0.47335127", "0.46729982", "...
0.6358997
0
get the next code unit that starts at an address that is less than the given address. The search will include instructions, defined data, and undefined data.
public CodeUnit getCodeUnitBefore(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public CodeUnit getDefinedCodeUnitBefore(Address addr);", "private Address getNextAddress(Address addr) {\n\n\t\tInstruction instr = listing.getInstructionAfter(addr);\n\t\tAddress instrAddr = instr != null ? instr.getMinAddress() : null;\n\n\t\treturn instrAddr;\n// ?? ITERATOR HAS BEEN MODIFIED TO ONLY RETURN ...
[ "0.6460616", "0.6274764", "0.62530065", "0.58382374", "0.5834023", "0.5737473", "0.564815", "0.55268323", "0.54871374", "0.5390867", "0.5240109", "0.52002674", "0.51540565", "0.5135533", "0.5115008", "0.5079923", "0.49638847", "0.49030128", "0.48863253", "0.4852128", "0.47461...
0.6613606
0
Get an iterator that contains all code units in the program which have the specified property type defined. Standard property types are defined in the CodeUnit class. The property types are: EOL_COMMENT, PRE_COMMENT, POST_COMMENT, USER_REFERENCE, MNEMONIC_REFERENCE, VALUE_REFERENCE. Property types can also be user defi...
public CodeUnitIterator getCodeUnitIterator(String property, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public CodeUnitIterator getCodeUnitIterator(String property, Address addr, boolean forward);", "public CodeUnitIterator getCommentCodeUnitIterator(int commentType, AddressSetView addrSet);", "public CodeUnitIterator getCodeUnitIterator(String property, AddressSetView addrSet,\n\t\t\tboolean forward);", "publ...
[ "0.59396654", "0.57630056", "0.5609544", "0.5273567", "0.5223194", "0.5187037", "0.5104233", "0.48467645", "0.48459128", "0.47885683", "0.47647503", "0.4653542", "0.462104", "0.45439145", "0.4534585", "0.4524385", "0.4490848", "0.44876853", "0.44713974", "0.44455096", "0.4437...
0.59686714
0
Get an iterator that contains the code units which have the specified property type defined. Only code units at an address greater than or equal to the specified start address will be returned by the iterator. If the start address is null then check the entire program. Standard property types are defined in the CodeUni...
public CodeUnitIterator getCodeUnitIterator(String property, Address addr, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public CodeUnitIterator getCodeUnitIterator(String property, boolean forward);", "public CodeUnitIterator getCodeUnitIterator(String property, AddressSetView addrSet,\n\t\t\tboolean forward);", "public CodeUnitIterator getCommentCodeUnitIterator(int commentType, AddressSetView addrSet);", "public interface L...
[ "0.5847573", "0.58019674", "0.56301165", "0.5113567", "0.50857985", "0.4806511", "0.46825412", "0.46221682", "0.459307", "0.45521113", "0.44797927", "0.44406232", "0.436125", "0.43540356", "0.4345405", "0.43422425", "0.43210444", "0.432023", "0.43008506", "0.42945677", "0.428...
0.63355833
0
Get an iterator that contains the code units which have the specified property type defined. Only code units starting within the address set will be returned by the iterator. If the address set is null then check the entire program. Standard property types are defined in the CodeUnit class.
public CodeUnitIterator getCodeUnitIterator(String property, AddressSetView addrSet, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public CodeUnitIterator getCodeUnitIterator(String property, Address addr, boolean forward);", "public CodeUnitIterator getCodeUnitIterator(String property, boolean forward);", "public CodeUnitIterator getCommentCodeUnitIterator(int commentType, AddressSetView addrSet);", "public CodeUnitIterator getCodeUnit...
[ "0.6307171", "0.5792047", "0.5635438", "0.53670543", "0.536341", "0.5146952", "0.49988532", "0.4960873", "0.47293165", "0.47099218", "0.46754825", "0.46068302", "0.45988932", "0.4580763", "0.4530616", "0.45224696", "0.4506573", "0.44699368", "0.4454517", "0.44423068", "0.4436...
0.61754173
1
Get a forward code unit iterator over code units that have the specified comment type.
public CodeUnitIterator getCommentCodeUnitIterator(int commentType, AddressSetView addrSet);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public AddressIterator getCommentAddressIterator(int commentType, AddressSetView addrSet,\n\t\t\tboolean forward);", "public CodeUnitIterator getCodeUnits(boolean forward);", "public CodeUnitIterator getCodeUnitIterator(String property, Address addr, boolean forward);", "public CodeUnitIterator getCodeUnits(...
[ "0.699732", "0.61150515", "0.5936307", "0.5903563", "0.5891776", "0.56692976", "0.55383503", "0.54784346", "0.53429294", "0.5321886", "0.52956885", "0.5134323", "0.5099443", "0.50917155", "0.50713897", "0.50677055", "0.50197595", "0.49429217", "0.49296695", "0.49211398", "0.4...
0.820608
0
Get a forward iterator over addresses that have the specified comment type.
public AddressIterator getCommentAddressIterator(int commentType, AddressSetView addrSet, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public CodeUnitIterator getCommentCodeUnitIterator(int commentType, AddressSetView addrSet);", "public AddressIterator getCommentAddressIterator(AddressSetView addrSet, boolean forward);", "public CommentHistory[] getCommentHistory(Address addr, int commentType);", "public String getComment(int commentType, ...
[ "0.7349432", "0.70595115", "0.6320613", "0.56374776", "0.48344266", "0.47928762", "0.479205", "0.47639105", "0.47415644", "0.4732901", "0.4710619", "0.47098818", "0.47022358", "0.46490675", "0.46416742", "0.4638544", "0.46188402", "0.46165246", "0.46151778", "0.4471151", "0.4...
0.8320843
0
Get a forward iterator over addresses that have any type of comment.
public AddressIterator getCommentAddressIterator(AddressSetView addrSet, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public AddressIterator getCommentAddressIterator(int commentType, AddressSetView addrSet,\n\t\t\tboolean forward);", "public CodeUnitIterator getCommentCodeUnitIterator(int commentType, AddressSetView addrSet);", "public ClosableIterator<org.ontoware.rdf2go.model.node.Node> getAllComments_asNode() {\r\n\t\tret...
[ "0.7392895", "0.6313815", "0.5756708", "0.53809136", "0.5373411", "0.52931345", "0.52007455", "0.5008831", "0.49365658", "0.48958686", "0.488664", "0.48852006", "0.48805016", "0.48347476", "0.4823594", "0.48040226", "0.47861794", "0.47676823", "0.47647306", "0.47122395", "0.4...
0.7295569
1
Get the comment for the given type at the specified address.
public String getComment(int commentType, Address address);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setComment(Address address, int commentType, String comment);", "public CommentHistory[] getCommentHistory(Address addr, int commentType);", "String getAddress(int type);", "public void setAddressType(String addressType) {\n this.addressType = addressType;\n }", "public CodeUnitIter...
[ "0.7052541", "0.6282044", "0.6129532", "0.57938", "0.5717057", "0.55629265", "0.5354968", "0.53363794", "0.52837867", "0.5188215", "0.5184359", "0.517115", "0.5135788", "0.5076414", "0.50307876", "0.49976462", "0.49976462", "0.49908826", "0.49778375", "0.49397108", "0.4904327...
0.8481864
0
Set the comment for the given comment type at the specified address.
public void setComment(Address address, int commentType, String comment);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setAddress(java.lang.String address)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.SimpleValue target = null;\n target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ADDRESS$2);\n if (target ...
[ "0.6431821", "0.62871635", "0.62091196", "0.6207589", "0.61807567", "0.61623555", "0.6158147", "0.6157271", "0.61289173", "0.61289173", "0.61161685", "0.61161685", "0.61161685", "0.61161685", "0.60988545", "0.60988545", "0.60988545", "0.60934156", "0.6080004", "0.604046", "0....
0.9022491
0
get a CodeUnit iterator that will iterate over the entire address space.
public CodeUnitIterator getCodeUnits(boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public CodeUnitIterator getCodeUnits(Address addr, boolean forward);", "public CodeUnitIterator getCodeUnitIterator(String property, Address addr, boolean forward);", "public CodeUnitIterator getCodeUnits(AddressSetView addrSet, boolean forward);", "public Iterator<? extends ICodeBase> appCodeBaseIterator();...
[ "0.7440831", "0.68778795", "0.67575663", "0.6446953", "0.6354262", "0.61130023", "0.603673", "0.5841473", "0.554867", "0.54908687", "0.5448066", "0.544601", "0.54251224", "0.5416681", "0.5411857", "0.5408071", "0.53847957", "0.53129655", "0.52974325", "0.52743673", "0.5274156...
0.5940844
7
Returns an iterator of the code units in this listing (in proper sequence), starting at the specified address. The specified address indicates the first code unit that would be returned by an initial call to the next method. An initial call to the previous method would return the code unit with an address less than the...
public CodeUnitIterator getCodeUnits(Address addr, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public CodeUnitIterator getCodeUnitIterator(String property, Address addr, boolean forward);", "public CodeUnit getCodeUnitBefore(Address addr);", "public CodeUnitIterator getCodeUnits(AddressSetView addrSet, boolean forward);", "public CodeUnitIterator getCodeUnitIterator(String property, AddressSetView add...
[ "0.6823876", "0.61968225", "0.60902107", "0.6070422", "0.58657384", "0.5844704", "0.5716347", "0.56976324", "0.56849974", "0.5660903", "0.5644212", "0.55368215", "0.5455282", "0.54499793", "0.5382377", "0.5238707", "0.52176726", "0.5139063", "0.5135898", "0.5106747", "0.50313...
0.72476584
0
Get an iterator over the address range(s). Only code units whose start addresses are contained in the given address set will be returned by the iterator.
public CodeUnitIterator getCodeUnits(AddressSetView addrSet, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public InstructionIterator getInstructions(AddressSetView addrSet, boolean forward);", "public Set<T> getRanges();", "public AddressIterator getCommentAddressIterator(AddressSetView addrSet, boolean forward);", "public CodeUnitIterator getCodeUnits(Address addr, boolean forward);", "public CodeUnitIterator...
[ "0.6157389", "0.5951599", "0.59367657", "0.58750486", "0.5670531", "0.55801594", "0.5458", "0.5441142", "0.54298806", "0.54082423", "0.5391307", "0.52611387", "0.52473176", "0.52306634", "0.5218712", "0.520738", "0.5198245", "0.5193855", "0.5169012", "0.51597166", "0.51388425...
0.64940155
0
get the Instruction that starts at the given address. If no Instruction has been defined to start at that address, return null.
public Instruction getInstructionAt(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Instruction getInstructionContaining(Address addr);", "public Instruction getInstructionBefore(Address addr);", "public DexlibAbstractInstruction instructionAtAddress(int address) {\n DexlibAbstractInstruction i = null;\n while (i == null && address >= 0) {\n // catch addresses can be in the ...
[ "0.74550736", "0.7238228", "0.64863926", "0.6310099", "0.618777", "0.6185855", "0.5617643", "0.560426", "0.56039083", "0.5563262", "0.5492868", "0.53707594", "0.53705496", "0.5205246", "0.5192263", "0.51133496", "0.51011926", "0.509219", "0.5088316", "0.5068159", "0.5065077",...
0.71612144
2
get the Instruction that contains the given address. If an Instruction is defined that contains that address, it will be returned. Otherwise, null will be returned.
public Instruction getInstructionContaining(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Instruction getInstructionAt(Address addr);", "private SimInstruction getInstruction(Addr address) {\n var inst = decodedInstructions.get(address);\n\n if (inst != null) {\n return inst;\n }\n\n // Try to decode instruction\n var rawInstruction = program.get(a...
[ "0.7403498", "0.68826085", "0.6754452", "0.6346563", "0.62359613", "0.6088273", "0.6061082", "0.574899", "0.53747404", "0.5355435", "0.52627", "0.5262048", "0.52470297", "0.5225712", "0.5212831", "0.51795363", "0.5174152", "0.50667906", "0.50645185", "0.5055936", "0.5018734",...
0.8223299
0
get the closest Instruction that starts at an address that is greater than the given address.
public Instruction getInstructionAfter(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private Address getNextAddress(Address addr) {\n\n\t\tInstruction instr = listing.getInstructionAfter(addr);\n\t\tAddress instrAddr = instr != null ? instr.getMinAddress() : null;\n\n\t\treturn instrAddr;\n// ?? ITERATOR HAS BEEN MODIFIED TO ONLY RETURN INSTRUCTION BLOCKS\n\n// Data data = getDefinedDataAft...
[ "0.58812755", "0.58101654", "0.56523657", "0.5252349", "0.5239398", "0.5184734", "0.5143116", "0.51255107", "0.50866294", "0.50855285", "0.5069121", "0.49899086", "0.4973576", "0.4917967", "0.4878125", "0.4877462", "0.48091948", "0.48036355", "0.4782375", "0.4757373", "0.4750...
0.5853024
1
get the closest Instruction that starts at an address that is less than the given address.
public Instruction getInstructionBefore(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Instruction getInstructionContaining(Address addr);", "private Address getNextAddress(Address addr) {\n\n\t\tInstruction instr = listing.getInstructionAfter(addr);\n\t\tAddress instrAddr = instr != null ? instr.getMinAddress() : null;\n\n\t\treturn instrAddr;\n// ?? ITERATOR HAS BEEN MODIFIED TO ONLY RETU...
[ "0.5812921", "0.5771001", "0.56578445", "0.563464", "0.5441169", "0.5379972", "0.5329751", "0.5324648", "0.53241557", "0.53115326", "0.5288498", "0.5253196", "0.52401006", "0.52357227", "0.52317804", "0.52097946", "0.5208333", "0.52011555", "0.51956695", "0.5195482", "0.51916...
0.6787092
0
get an Instruction iterator that will iterate over the entire address space.
public InstructionIterator getInstructions(boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public InstructionIterator getInstructions(Address addr, boolean forward);", "public InstructionIterator getInstructions(AddressSetView addrSet, boolean forward);", "public CodeUnitIterator getCodeUnits(Address addr, boolean forward);", "public OpIterator iterator() {\n // some code goes here\n ...
[ "0.737861", "0.6631445", "0.590328", "0.57450706", "0.5632712", "0.55749184", "0.55498415", "0.5516098", "0.5458979", "0.5448715", "0.5424757", "0.5411893", "0.5411781", "0.5379807", "0.5379807", "0.5379807", "0.5379807", "0.5370216", "0.5366796", "0.5362765", "0.53489935", ...
0.61810225
2
Returns an iterator of the instructions in this listing (in proper sequence), starting at the specified address. The specified address indicates the first instruction that would be returned by an initial call to the next method. An initial call to the previous method would return the instruction with an address less th...
public InstructionIterator getInstructions(Address addr, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Instruction getInstructionBefore(Address addr);", "private Address getNextAddress(Address addr) {\n\n\t\tInstruction instr = listing.getInstructionAfter(addr);\n\t\tAddress instrAddr = instr != null ? instr.getMinAddress() : null;\n\n\t\treturn instrAddr;\n// ?? ITERATOR HAS BEEN MODIFIED TO ONLY RETURN I...
[ "0.6398826", "0.61390734", "0.5822756", "0.569061", "0.5607173", "0.5548895", "0.5524082", "0.54783624", "0.54018855", "0.5385965", "0.53267795", "0.51855487", "0.5152817", "0.51020396", "0.50639135", "0.50595194", "0.5013587", "0.50089175", "0.49562147", "0.49268925", "0.492...
0.67382777
0
Get an Instruction iterator over the address range(s). Only instructions whose start addresses are contained in the given address set will be returned by the iterator.
public InstructionIterator getInstructions(AddressSetView addrSet, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public InstructionIterator getInstructions(Address addr, boolean forward);", "public AddressIterator getCommentAddressIterator(AddressSetView addrSet, boolean forward);", "public CodeUnitIterator getCodeUnits(AddressSetView addrSet, boolean forward);", "public Set<T> getRanges();", "private void getNextInS...
[ "0.62359035", "0.5748398", "0.5543227", "0.5371444", "0.53632987", "0.5247925", "0.5227429", "0.5179267", "0.51667655", "0.5121045", "0.50840425", "0.5012986", "0.49853376", "0.49140722", "0.49106935", "0.48962182", "0.48597443", "0.48564038", "0.4846609", "0.48452216", "0.47...
0.69870585
0
get the Data (Defined or Undefined) that starts at the given address.
public Data getDataAt(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data getDefinedDataAt(Address addr);", "public Data getUndefinedDataAt(Address addr);", "public Data getDefinedDataAfter(Address addr);", "public Data getDefinedDataBefore(Address addr);", "public Data getDefinedDataContaining(Address addr);", "public Data getDataBefore(Address addr);", "public ...
[ "0.81186306", "0.7934632", "0.7842683", "0.7793865", "0.7597878", "0.7361909", "0.7320095", "0.686719", "0.68031603", "0.67768884", "0.67434114", "0.66773665", "0.6472466", "0.62240696", "0.6203578", "0.6189396", "0.6088896", "0.5835064", "0.5742104", "0.5715404", "0.56339496...
0.7805811
3
Gets the data object that is at or contains the given address or null if the address in not in memory or is in an instruction.
public Data getDataContaining(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Entry getData(int address){\n\t\tint bank = address % numOfbank;\n\t\tif (contentInBank.get(bank) != null) {\n\t\t\tEntry d =contentInBank.get(bank).get(address);\n\t\t\tlogger.debug(\"memory \"+d.type+\" retrieval, bank:\" + bank +\", address:\"+ address);\n\t\t\treturn d;\n\t\t}\n\t\treturn null;\n\t}", ...
[ "0.68594426", "0.68198246", "0.66611683", "0.66005516", "0.6590701", "0.6463453", "0.619944", "0.6165787", "0.6115496", "0.60962135", "0.5942228", "0.5857395", "0.5801959", "0.56288004", "0.5627677", "0.5593962", "0.5539704", "0.55244035", "0.5459922", "0.5427366", "0.5399892...
0.6605886
3
get the closest Data object that starts at an address that is greater than the given address.
public Data getDataAfter(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data getDataBefore(Address addr);", "public Data getDefinedDataBefore(Address addr);", "public Data getDataContaining(Address addr);", "public Data getDefinedDataAfter(Address addr);", "private int binarySearchToFindClosest(String overflowName, int bottomRecord, int topRecord) {\n // Base con...
[ "0.64873654", "0.58448565", "0.5783931", "0.57259196", "0.55206966", "0.54403394", "0.5434184", "0.53908145", "0.52451515", "0.5218538", "0.5216841", "0.5156608", "0.51387364", "0.51353914", "0.51304024", "0.50941783", "0.49731314", "0.49576017", "0.49097097", "0.4897155", "0...
0.6302685
1
get the closest Data object that starts at an address that is less than the given address.
public Data getDataBefore(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data getDefinedDataBefore(Address addr);", "public Data getDataAfter(Address addr);", "private int binarySearchToFindClosest(String overflowName, int bottomRecord, int topRecord) {\n // Base condition for only having two records left to choose from\n if (topRecord - bottomRecord == 1) {\n ...
[ "0.6132284", "0.5765364", "0.56250226", "0.55601424", "0.55489653", "0.5527959", "0.5341106", "0.52915126", "0.52612156", "0.5249369", "0.5241457", "0.52391833", "0.52251494", "0.52047926", "0.5202618", "0.5202101", "0.5190752", "0.51865655", "0.5185238", "0.51802033", "0.517...
0.69056
0
get a Data iterator that will iterate over the entire address space; returning both defined and undefined Data objects.
public DataIterator getData(boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public DataIterator getDefinedData(Address addr, boolean forward);", "public DataIterator getData(Address addr, boolean forward);", "public DataIterator getDefinedData(AddressSetView addrSet, boolean forward);", "public DataIterator getData(AddressSetView addrSet, boolean forward);", "public DataIterator g...
[ "0.72631955", "0.685655", "0.65565103", "0.6374612", "0.60678935", "0.60132855", "0.58480084", "0.584209", "0.57476854", "0.5676158", "0.5656669", "0.5632181", "0.56263584", "0.5562449", "0.5513773", "0.5426553", "0.5340881", "0.5316066", "0.5311186", "0.5300931", "0.5273324"...
0.5604652
13
Returns an iterator of the data in this listing (in proper sequence), starting at the specified address. The specified address indicates the first Data that would be returned by an initial call to the next method. An initial call to the previous method would return the Data with an address less than the specified addre...
public DataIterator getData(Address addr, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public DataIterator getDefinedData(Address addr, boolean forward);", "public DataIterator getData(AddressSetView addrSet, boolean forward);", "public Data getDataBefore(Address addr);", "public IndexRecord getIteratorNext() {\n iter = (iter == next - 1 ? -1: iter + 1);\n return (iter == -1 ? nu...
[ "0.6237496", "0.5997467", "0.5988458", "0.5913631", "0.590285", "0.58227164", "0.57898766", "0.57824653", "0.5729313", "0.56053776", "0.5577195", "0.5522517", "0.5505955", "0.5494432", "0.5446636", "0.54297787", "0.541214", "0.5405946", "0.538908", "0.53534216", "0.53248286",...
0.70049536
0
Get an iterator over the address range(s). Only data whose start addresses are contained in the given address set will be returned by the iterator.
public DataIterator getData(AddressSetView addrSet, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public AddressIterator getCommentAddressIterator(AddressSetView addrSet, boolean forward);", "public InstructionIterator getInstructions(AddressSetView addrSet, boolean forward);", "public Set<T> getRanges();", "public DataIterator getDefinedData(AddressSetView addrSet, boolean forward);", "public Set<Stri...
[ "0.61326396", "0.61208326", "0.61017424", "0.6039343", "0.57747465", "0.570726", "0.567721", "0.5611015", "0.55599695", "0.5535301", "0.5472614", "0.54545933", "0.54343325", "0.54319906", "0.5426227", "0.5295463", "0.52807647", "0.522705", "0.5208125", "0.51532316", "0.514963...
0.5871461
4
get the Data (defined) object that starts at the given address. If no Data object is defined at that address, then return null.
public Data getDefinedDataAt(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data getDefinedDataContaining(Address addr);", "public Data getDataAt(Address addr);", "public Data getDefinedDataBefore(Address addr);", "public Data getDefinedDataAfter(Address addr);", "public Data getDataContaining(Address addr);", "public Entry getData(int address){\n\t\tint bank = address % ...
[ "0.7339281", "0.7053993", "0.7042519", "0.69814324", "0.69793767", "0.6923883", "0.68196094", "0.67969584", "0.6501607", "0.60158765", "0.5994002", "0.58820254", "0.58140576", "0.57035536", "0.5577975", "0.5533416", "0.5522333", "0.5480089", "0.54292053", "0.537829", "0.53637...
0.72878087
1
get the Data object that starts at the given address. If no Data objects have been defined that contain that address, then return null.
public Data getDefinedDataContaining(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data getDataContaining(Address addr);", "public Data getDataBefore(Address addr);", "public Entry getData(int address){\n\t\tint bank = address % numOfbank;\n\t\tif (contentInBank.get(bank) != null) {\n\t\t\tEntry d =contentInBank.get(bank).get(address);\n\t\t\tlogger.debug(\"memory \"+d.type+\" retriev...
[ "0.7206651", "0.6894514", "0.68231523", "0.68084055", "0.668409", "0.6648045", "0.65530324", "0.63946503", "0.63708055", "0.58154726", "0.5802512", "0.57808053", "0.5748462", "0.5633711", "0.5629626", "0.55521476", "0.55171114", "0.5447701", "0.54440176", "0.5422311", "0.5395...
0.7158034
1
get the defined Data object that starts at an address that is greater than the given address.
public Data getDefinedDataAfter(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data getDataBefore(Address addr);", "public Data getDataAfter(Address addr);", "public Data getDefinedDataBefore(Address addr);", "public Data getDataContaining(Address addr);", "public Data getDefinedDataContaining(Address addr);", "public Data getDefinedDataAt(Address addr);", "public Data get...
[ "0.69287556", "0.69230837", "0.66572714", "0.64548165", "0.63962114", "0.6303641", "0.62728107", "0.5609019", "0.559871", "0.54273134", "0.54058295", "0.5298324", "0.5180971", "0.5097101", "0.5067309", "0.50533295", "0.5050003", "0.50482297", "0.49888876", "0.49472442", "0.48...
0.6697307
2
get the closest defined Data object that starts at an address that is less than the given address.
public Data getDefinedDataBefore(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data getDataBefore(Address addr);", "public Data getDataAfter(Address addr);", "private int binarySearchToFindClosest(String overflowName, int bottomRecord, int topRecord) {\n // Base condition for only having two records left to choose from\n if (topRecord - bottomRecord == 1) {\n ...
[ "0.69619805", "0.58066005", "0.5652275", "0.5614907", "0.55964893", "0.5577153", "0.55026627", "0.5463937", "0.5434421", "0.5375281", "0.5305285", "0.529143", "0.5284568", "0.5248125", "0.52451414", "0.52374786", "0.5228372", "0.5206794", "0.51905257", "0.51852244", "0.518226...
0.6420698
1
get a Data iterator that will iterate over the entire address space; returning only defined Data objects.
public DataIterator getDefinedData(boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public DataIterator getDefinedData(Address addr, boolean forward);", "public DataIterator getData(Address addr, boolean forward);", "public DataIterator getData(AddressSetView addrSet, boolean forward);", "public DataIterator getDefinedData(AddressSetView addrSet, boolean forward);", "Iterator<TabularData>...
[ "0.700332", "0.6861309", "0.6499566", "0.6438549", "0.61134", "0.60342383", "0.6006647", "0.59692645", "0.5874661", "0.58157164", "0.5773736", "0.56678736", "0.56268847", "0.5606191", "0.55854076", "0.55834115", "0.55436164", "0.5533805", "0.54981863", "0.54681754", "0.539386...
0.5762759
11
Returns an iterator of the defined data in this listing (in proper sequence), starting at the specified address. The specified address indicates the first defined Data that would be returned by an initial call to the next method. An initial call to the previous method would return the defined Data with an address less ...
public DataIterator getDefinedData(Address addr, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public DataIterator getData(Address addr, boolean forward);", "private Address getNextAddress(Address addr) {\n\n\t\tInstruction instr = listing.getInstructionAfter(addr);\n\t\tAddress instrAddr = instr != null ? instr.getMinAddress() : null;\n\n\t\treturn instrAddr;\n// ?? ITERATOR HAS BEEN MODIFIED TO ONLY RET...
[ "0.67965794", "0.61520094", "0.5969956", "0.58972174", "0.5892964", "0.5873527", "0.5751115", "0.57193357", "0.57161146", "0.55697215", "0.55434567", "0.55203176", "0.5432688", "0.54269505", "0.5384237", "0.5382553", "0.537039", "0.53638846", "0.5307735", "0.5295009", "0.5227...
0.6973135
0
Get an iterator over the address range(s). Only defined data whose start addresses are contained in the given address set will be returned by the iterator.
public DataIterator getDefinedData(AddressSetView addrSet, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Set<T> getRanges();", "public AddressIterator getCommentAddressIterator(AddressSetView addrSet, boolean forward);", "public InstructionIterator getInstructions(AddressSetView addrSet, boolean forward);", "public DataIterator getData(AddressSetView addrSet, boolean forward);", "public AddressSetView ...
[ "0.6228045", "0.6122643", "0.6074604", "0.58515525", "0.5769331", "0.5703052", "0.56959945", "0.56088835", "0.56042874", "0.55398875", "0.5489035", "0.5438481", "0.5423378", "0.540978", "0.54052395", "0.5360099", "0.5334067", "0.52720433", "0.52549094", "0.52306646", "0.52275...
0.6290369
0
get the Data (undefined) object that starts at the given address.
public Data getUndefinedDataAt(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data getDataAt(Address addr);", "public Data getDefinedDataAt(Address addr);", "public Data getDataBefore(Address addr);", "public Data getDataAfter(Address addr);", "public Data getDefinedDataAfter(Address addr);", "public Data getDefinedDataBefore(Address addr);", "public Data getDefinedDataCo...
[ "0.7829817", "0.74704087", "0.7208945", "0.71597904", "0.71210057", "0.70542854", "0.70189935", "0.6931579", "0.6628073", "0.6372534", "0.63447875", "0.6316183", "0.6147194", "0.61142355", "0.60443974", "0.5969283", "0.58910257", "0.5759728", "0.5744401", "0.5696534", "0.5696...
0.7416704
2
Get the undefined Data object that starts at an address that is greater than the given address. This operation can be slow for large programs so a TaskMonitor is required.
public Data getUndefinedDataAfter(Address addr, TaskMonitor monitor);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data getDefinedDataBefore(Address addr);", "public Data getDataBefore(Address addr);", "public Data getDataAfter(Address addr);", "public Data getDefinedDataAfter(Address addr);", "public Data getUndefinedDataBefore(Address addr, TaskMonitor monitor);", "public Data getUndefinedDataAt(Address addr...
[ "0.6699853", "0.6694759", "0.66061336", "0.6588254", "0.65068", "0.6422704", "0.6325345", "0.62323815", "0.60694087", "0.59630924", "0.54403585", "0.53468424", "0.5337618", "0.528133", "0.51683694", "0.5164935", "0.5112058", "0.5019222", "0.49726206", "0.49635157", "0.4963291...
0.65052456
5
Get the undefined Data object that falls within the set. This operation can be slow for large programs so a TaskMonitor is required.
public Data getFirstUndefinedData(AddressSetView set, TaskMonitor monitor);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public long findSet_representative( long data ){\n return findSet( map.get(data) ).data;\n }", "public Data getUndefinedDataAt(Address addr);", "public Data getUndefinedDataAfter(Address addr, TaskMonitor monitor);", "public Data getUndefinedDataBefore(Address addr, TaskMonitor monitor);", "publi...
[ "0.58837825", "0.58371025", "0.5665299", "0.5663455", "0.5593164", "0.5589366", "0.54036576", "0.52586377", "0.52332604", "0.5228753", "0.520704", "0.5145212", "0.5136214", "0.5082297", "0.50606525", "0.5047115", "0.5042751", "0.50333154", "0.5018886", "0.5005598", "0.4979266...
0.7167264
0
get the closest undefined Data object that starts at an address that is less than the given address. This operation can be slow for large programs so a TaskMonitor is required.
public Data getUndefinedDataBefore(Address addr, TaskMonitor monitor);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data getDataBefore(Address addr);", "public Data getDefinedDataBefore(Address addr);", "public Data getDataAfter(Address addr);", "public Data getDefinedDataAfter(Address addr);", "public Data getDefinedDataContaining(Address addr);", "public Data getUndefinedDataAt(Address addr);", "public Data...
[ "0.6847229", "0.6574162", "0.58717", "0.57357967", "0.559452", "0.55436844", "0.55419934", "0.5456758", "0.544667", "0.54270625", "0.53948754", "0.5353749", "0.53445023", "0.53206915", "0.5300909", "0.52343076", "0.5208994", "0.51964617", "0.51833665", "0.51662683", "0.515552...
0.61026365
2
Get the address set which corresponds to all undefined code units within the specified set of address.
public AddressSetView getUndefinedRanges(AddressSetView set, boolean initializedMemoryOnly, TaskMonitor monitor) throws CancelledException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic List<Address> FindAllAddress() {\n\t\treturn ab.FindAll();\n\t}", "public AddressSetView getAddressSet() {\n\t\treturn new AddressSet(baseAddress, getEndAddress());\n\t}", "static Set<Location> generateIrrelevantSet(UnitLocation unitLocation){\n Objects.requireNonNull(unitLocation);\n ...
[ "0.53790474", "0.5351126", "0.5330697", "0.53080344", "0.5286528", "0.526674", "0.5112858", "0.5008804", "0.49092534", "0.48805788", "0.48698583", "0.48673442", "0.479302", "0.47648495", "0.47428453", "0.47329646", "0.47286442", "0.47195408", "0.47175604", "0.46837047", "0.46...
0.6237879
0
Returns the next instruction or defined data after the given address;
public CodeUnit getDefinedCodeUnitAfter(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Instruction getInstructionAfter(Address addr);", "private Address getNextAddress(Address addr) {\n\n\t\tInstruction instr = listing.getInstructionAfter(addr);\n\t\tAddress instrAddr = instr != null ? instr.getMinAddress() : null;\n\n\t\treturn instrAddr;\n// ?? ITERATOR HAS BEEN MODIFIED TO ONLY RETURN IN...
[ "0.7695593", "0.73913443", "0.7006707", "0.6874695", "0.68545187", "0.6589288", "0.6405229", "0.6206432", "0.61825126", "0.61766964", "0.59926236", "0.5979945", "0.5976988", "0.5883806", "0.5802495", "0.5739059", "0.57272846", "0.5696189", "0.56436706", "0.56372046", "0.55639...
0.5578419
20
Returns the closest instruction or defined data that starts before the given address.
public CodeUnit getDefinedCodeUnitBefore(Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Instruction getInstructionBefore(Address addr);", "public Data getDataBefore(Address addr);", "public Data getDefinedDataBefore(Address addr);", "public long getPreviousBlock(long address){\n int marker = readMarkerUpperBits(address - 1);\n int blocksize;\n if(marker == 0) {\n ...
[ "0.724652", "0.71825135", "0.6947881", "0.63523346", "0.6052878", "0.60273933", "0.59276795", "0.585619", "0.5837323", "0.5820251", "0.5731689", "0.56932825", "0.5662745", "0.5629273", "0.5428467", "0.52299833", "0.52155036", "0.5201907", "0.51662976", "0.51563036", "0.513617...
0.58921266
7
Get an iterator over all the composite data objects (Arrays, Structures, and Union) in the program.
public DataIterator getCompositeData(boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@VTID(14)\n java.util.Iterator<Com4jObject> iterator();", "@VTID(11)\r\n java.util.Iterator<Com4jObject> iterator();", "public Iterable<E> getData(){\n return new Iterable<E>(){\n @Override\n public Iterator<E> iterator() {\n return structure.iterator();\n ...
[ "0.600518", "0.6000809", "0.5975886", "0.5835278", "0.5827689", "0.57799876", "0.5777036", "0.57039994", "0.5693484", "0.5684818", "0.56756926", "0.5585017", "0.55263096", "0.55006284", "0.5497073", "0.5409722", "0.5389848", "0.5375458", "0.5343668", "0.53259426", "0.5308337"...
0.5939176
3
Get an iterator over all the composite data objects (Arrays, Structures, and Union) in the program at or after the given Address.
public DataIterator getCompositeData(Address start, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public DataIterator getCompositeData(AddressSetView addrSet, boolean forward);", "public Data getDataContaining(Address addr);", "public DataIterator getDefinedData(Address addr, boolean forward);", "public DataIterator getData(Address addr, boolean forward);", "public Data getDefinedDataContaining(Address...
[ "0.57392675", "0.54105425", "0.5388338", "0.52731556", "0.5232096", "0.50778097", "0.500599", "0.48615202", "0.48614463", "0.48572317", "0.48445547", "0.47898403", "0.47842234", "0.47612074", "0.47483206", "0.47270355", "0.47205335", "0.46911013", "0.46907723", "0.46874624", ...
0.5829769
0
Get an iterator over all the composite data objects (Arrays, Structures, and Union) within the specified address set in the program.
public DataIterator getCompositeData(AddressSetView addrSet, boolean forward);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public DataIterator getCompositeData(Address start, boolean forward);", "public DataIterator getDefinedData(AddressSetView addrSet, boolean forward);", "public DataIterator getData(AddressSetView addrSet, boolean forward);", "public abstract AbstractObjectIterator<LocalAbstractObject> getAllObjects();", "p...
[ "0.5802472", "0.5593387", "0.5419973", "0.5380113", "0.52812123", "0.50798756", "0.5057958", "0.5049242", "0.5024557", "0.5023874", "0.50214726", "0.50120354", "0.49961352", "0.4981962", "0.4941216", "0.49261838", "0.4917974", "0.4899826", "0.4861332", "0.48412582", "0.481674...
0.67392397
0
Returns an iterator over all user defined property names.
public Iterator<String> getUserDefinedProperties();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Iterator<String> getProperties() {\n List<String> list = Collections.emptyList();\n return list.iterator();\n }", "public Iterable<String> getPropertyKeys();", "public synchronized Enumeration<String> getPropertyNames() {\n return PropertyArray.enumerate(props);\n }", "java....
[ "0.7432759", "0.7152358", "0.70505327", "0.67656416", "0.66813326", "0.6639679", "0.65566474", "0.65403825", "0.6525061", "0.6524292", "0.6473546", "0.62501264", "0.61934614", "0.6185606", "0.61593556", "0.6145161", "0.6124798", "0.60558885", "0.59488356", "0.59068334", "0.58...
0.8063256
0
Removes the entire property from the program
public void removeUserDefinedProperty(String propertyName);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "PropertiesTask removeAllProperties();", "PropertiesTask removeProperty( String key );", "void clearProperty(String key);", "void clearProperty(String key);", "public void removeProperty(TLProperty element);", "public void reset() {\r\n properties.clear();\r\n }", "void graphRemoveProperty( in...
[ "0.7388795", "0.7273034", "0.7187385", "0.7187385", "0.70656276", "0.69072974", "0.6804839", "0.66690046", "0.6557765", "0.6547605", "0.6545119", "0.6536211", "0.65226287", "0.64857507", "0.6478998", "0.64058274", "0.6390632", "0.63805497", "0.6366165", "0.63386786", "0.63279...
0.65454215
10
Returns the PropertyMap associated with the given name
public PropertyMap getPropertyMap(String propertyName);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ConfigMapDTO getMapProperty(final String name) {\n \t\treturn mapProperties.get(name);\n \t}", "@SuppressWarnings(\"unchecked\")\n public Map getMap(String name)\n {\n Object v = getProperty(name);\n return (v == null) ? null : (Map) v;\n }", "public static String getProperty(String name...
[ "0.79068625", "0.77536285", "0.7235254", "0.70060056", "0.6789882", "0.67523783", "0.6554306", "0.6475097", "0.64725137", "0.642892", "0.6422447", "0.63886863", "0.6387532", "0.63612986", "0.6355204", "0.6328682", "0.6326209", "0.6309951", "0.63066185", "0.6228462", "0.617036...
0.77179635
2
Creates a complete set of instructions. A preliminary pass will be made checking for code unit conflicts which will be marked within the instructionSet causing dependent blocks to get pruned.
public AddressSetView addInstructions(InstructionSet instructionSet, boolean overwrite) throws CodeUnitInsertionException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void addInstructions() {\n for (InstructionWrapper instructionWrapper : this.instructions) {\n if (!(instructionWrapper.instruction instanceof LabelInstruction)) {\n this.code.addInstruction(instructionWrapper.instruction);\n }\n }\n }", "public Instructions() {\n\n\t\t// String c...
[ "0.56319827", "0.52220255", "0.49971223", "0.49337417", "0.48289558", "0.48083666", "0.4779197", "0.47122005", "0.47098708", "0.47081456", "0.46997643", "0.4678818", "0.4675215", "0.46314576", "0.4611534", "0.4583314", "0.45827976", "0.4566175", "0.45567468", "0.45450586", "0...
0.4863918
4
Creates a new defined Data object of a given length at the given address. This ignores the bytes that are present
public Data createData(Address addr, DataType dataType, int length) throws CodeUnitInsertionException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public abstract byte[] readData(int address, int length);", "public Data createData(Address addr, DataType dataType) throws CodeUnitInsertionException;", "public Data getDataAt(Address addr);", "public abstract int writeData(int address, byte[] buffer, int length);", "public Data getUndefinedDataAt(Address...
[ "0.6877047", "0.6344325", "0.59732896", "0.5944565", "0.5918106", "0.5660998", "0.5578372", "0.55409205", "0.53267366", "0.5323421", "0.5287356", "0.52756196", "0.52738625", "0.52256626", "0.5204539", "0.51586634", "0.51482236", "0.51355386", "0.5100706", "0.50714666", "0.506...
0.69304454
0
Creates a new defined Data object at the given address. This ignores the bytes that are present
public Data createData(Address addr, DataType dataType) throws CodeUnitInsertionException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Data createData(Address addr, DataType dataType, int length)\n\t\t\tthrows CodeUnitInsertionException;", "public Data getUndefinedDataAt(Address addr);", "public Data getDataAt(Address addr);", "public Data getDefinedDataAt(Address addr);", "public abstract byte[] readData(int address, int length);"...
[ "0.65660197", "0.64030486", "0.632673", "0.6041307", "0.603932", "0.5943755", "0.56721175", "0.5568642", "0.55500424", "0.55012405", "0.5490273", "0.547927", "0.5460374", "0.54500043", "0.5446275", "0.5443698", "0.5436882", "0.5389645", "0.53822625", "0.5381421", "0.53785545"...
0.70011246
0
Clears any code units in the given range returning everything to "db"s, and removing any references in the affected area. Note that the module and fragment structure is unaffected. If part of a code unit is contained in the given address range then the whole code unit will be cleared.
public void clearCodeUnits(Address startAddr, Address endAddr, boolean clearContext);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void clearCodeUnits(Address startAddr, Address endAddr, boolean clearContext,\n\t\t\tTaskMonitor monitor) throws CancelledException;", "public void clearComments(Address startAddr, Address endAddr);", "public void clearAll() {\n rangeMap.clear();\n }", "void clearPowertypeRanges();", "void...
[ "0.63901705", "0.5725959", "0.57245284", "0.5282238", "0.50799173", "0.5012508", "0.4966455", "0.49011388", "0.4898878", "0.48303753", "0.48229486", "0.47950876", "0.47919172", "0.47885388", "0.4784364", "0.47835678", "0.4781957", "0.47808143", "0.4768494", "0.47671154", "0.4...
0.7162968
0
Clears any code units in the given range returning everything to "db"s, and removing any references in the affected area. Note that the module and fragment structure is unaffected. If part of a code unit is contained in the given address range then the whole code unit will be cleared.
public void clearCodeUnits(Address startAddr, Address endAddr, boolean clearContext, TaskMonitor monitor) throws CancelledException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void clearCodeUnits(Address startAddr, Address endAddr, boolean clearContext);", "public void clearComments(Address startAddr, Address endAddr);", "public void clearAll() {\n rangeMap.clear();\n }", "void clearPowertypeRanges();", "void clearOffset();", "public void clearVariable(int off...
[ "0.7162856", "0.57252496", "0.57245255", "0.52829957", "0.5078819", "0.50114465", "0.49663717", "0.49010488", "0.4898568", "0.48299873", "0.4821856", "0.4795844", "0.47919247", "0.4788433", "0.47846502", "0.4782789", "0.4781453", "0.4779768", "0.47695056", "0.4766628", "0.474...
0.6389814
1
Checks if the given ranges consists entirely of undefined data.
public boolean isUndefined(Address start, Address end);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private boolean isRangeValid() {\n\n\t\tboolean valid = true;\n\n\t\tif (getRange() == null) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\t\t\tLong.parseLong(getRange());\n\t\t} catch (NumberFormatException nfe) {\n\t\t\tvalid = false;\n\t\t}\n\n\t\tvalid = valid || getRange().compareToIgnoreCase(CCLConstants.INDI...
[ "0.64775", "0.6317302", "0.61622494", "0.6160545", "0.6139302", "0.6089223", "0.6065879", "0.6024376", "0.60173404", "0.60073227", "0.5926235", "0.5917633", "0.5900326", "0.58861053", "0.58715093", "0.5849167", "0.5828703", "0.5827876", "0.58094406", "0.580581", "0.57875824",...
0.73208135
0
Clears the comments in the given range.
public void clearComments(Address startAddr, Address endAddr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void unsetComments();", "@Override\n\tpublic void clear() {\n\t\t\n\t\tsuperset.removeRange(lower, upper, fromInclusive, toInclusive);\n\t\t\n\t\t//Alternative direct implementation:\n\t\t//while (pollFirst() != null) {\n\t\t//}\n\t\t\n\t}", "public void clearAll() {\n rangeMap.clear();\n }", "publ...
[ "0.6069097", "0.5688562", "0.56060004", "0.5583865", "0.55397", "0.5471715", "0.546043", "0.54464716", "0.5424711", "0.53502977", "0.5268802", "0.52462965", "0.51700723", "0.51535064", "0.5106076", "0.510587", "0.50740266", "0.50684446", "0.50319546", "0.49856755", "0.4979673...
0.748082
0
Clears the properties in the given range.
public void clearProperties(Address startAddr, Address endAddr, TaskMonitor monitor) throws CancelledException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void clearAll() {\n rangeMap.clear();\n }", "@Override\n\tpublic void clear() {\n\t\t\n\t\tsuperset.removeRange(lower, upper, fromInclusive, toInclusive);\n\t\t\n\t\t//Alternative direct implementation:\n\t\t//while (pollFirst() != null) {\n\t\t//}\n\t\t\n\t}", "void clearPowertypeRanges();", ...
[ "0.6603483", "0.63921726", "0.6137088", "0.60485345", "0.6019733", "0.5988765", "0.59669495", "0.5961277", "0.5913356", "0.5878786", "0.5763435", "0.57630944", "0.57630944", "0.5614269", "0.553759", "0.5508758", "0.5498675", "0.5495206", "0.5405205", "0.5404825", "0.53691953"...
0.6726099
0
Removes all CodeUnits, comments, properties, and references from the listing.
public void clearAll(boolean clearContext, TaskMonitor monitor);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void removeAllItems() {\n contents.clear();\n }", "public final void removeAllCompositeTypes()\n {\n listModel.removeAllElements();\n\tallTypes.removeAllElements();\n }", "@Override\n\tpublic void removeAll() {\n\t\tfor (TestUnit testUnit : findAll()) {\n\t\t\tremove(testUnit);\n\...
[ "0.5739202", "0.572099", "0.5668902", "0.559218", "0.5577195", "0.55632246", "0.5549816", "0.55304164", "0.54789156", "0.54665107", "0.5466021", "0.5464414", "0.54590565", "0.53847694", "0.53625995", "0.5351624", "0.53495324", "0.530661", "0.5299662", "0.5286999", "0.52713645...
0.0
-1
Returns the fragment containing the given address.
public ProgramFragment getFragment(String treeName, Address addr);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "String fragment();", "com.google.protobuf.ByteString getQueryAddress();", "public ProgramFragment getFragment(String treeName, String name);", "protected abstract Fragment getFragmentByPosition(int position);", "com.google.protobuf.ByteString getAddressBytes();", "public static AddressFragment newInstanc...
[ "0.60827136", "0.5908728", "0.5812563", "0.56637996", "0.5625913", "0.55017835", "0.54391265", "0.53532314", "0.5335095", "0.5296087", "0.5292978", "0.52462673", "0.52462673", "0.52142817", "0.52142817", "0.52142817", "0.52070946", "0.52070946", "0.52070946", "0.52070946", "0...
0.69713175
0
Returns the module with the given name.
public ProgramModule getModule(String treeName, String name);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String module(String name)\n {\n return modules.get(name);\n }", "public Module getModule(String name) {\n\t\tif (this._modules == null)\n\t\t\treturn null;\n\t\treturn _modules.get(name);\n\t}", "public ModuleReference getModule (String name) {\n ModuleReference ref = this.moduleTable.g...
[ "0.79919565", "0.7699593", "0.7498875", "0.7380031", "0.66146976", "0.65725124", "0.6522171", "0.64701796", "0.64156973", "0.6408572", "0.63184893", "0.6226574", "0.61698776", "0.60150284", "0.60117036", "0.6011158", "0.5988501", "0.596109", "0.5956917", "0.5921349", "0.58616...
0.7102704
4
Returns the fragment with the given name.
public ProgramFragment getFragment(String treeName, String name);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ProgramFragment getFragment(String treeName, Address addr);", "public abstract String getFragmentName();", "public static Fragment getFragmentWithName(Fragment rootFragment,\n String name) {\n if (rootFragment.getName() != null\n && roo...
[ "0.7105678", "0.6778711", "0.64519686", "0.6420626", "0.623299", "0.6231584", "0.6069842", "0.60211265", "0.5860577", "0.58395547", "0.583807", "0.5810378", "0.57932884", "0.5748763", "0.5495412", "0.5456927", "0.54402167", "0.54320353", "0.5411622", "0.5408416", "0.5400744",...
0.76794565
0
Create a new tree that will be identified by the given name. By default, the new root module is populated with fragments based on memory blocks. Note that the root module's name is not the same as its tree name. The root module name defaults to the name of the program.
public ProgramModule createRootModule(String treeName) throws DuplicateNameException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ProgramModule getModule(String treeName, String name);", "public ProgramModule getRootModule(String treeName);", "private final void createAndAddNode(String name) {\n\t}", "public Node createNode(String p_name) {\n\t\tNode n = new Node(p_name, this);\n\t\taddNode(n);\n\t\treturn n;\n\t}", "private v...
[ "0.6330526", "0.6126209", "0.59867406", "0.58350515", "0.56869024", "0.56311774", "0.5627545", "0.56053096", "0.5594925", "0.5578913", "0.5578211", "0.5547059", "0.54330355", "0.5403641", "0.53879166", "0.53091735", "0.5305013", "0.5302903", "0.5289183", "0.52888346", "0.5256...
0.7694574
0
Gets the root module for a tree in this listing.
public ProgramModule getRootModule(String treeName);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ProgramModule getRootModule(long treeID);", "public String getRoot();", "@Override\n\tpublic List<Module> listRootModule() {\n\t\treturn moduleDao.listRootModule();\n\t}", "public String getRoot() {\n return root;\n }", "public Object getRoot(){\r\n\t\treturn _root;\r\n\t}", "public Node...
[ "0.78240657", "0.64793473", "0.6472735", "0.6459961", "0.6397743", "0.6360756", "0.63546544", "0.6344232", "0.6320369", "0.6318567", "0.6318567", "0.6318567", "0.63170946", "0.6291621", "0.62613577", "0.62579644", "0.62571687", "0.6250647", "0.6242335", "0.62363833", "0.62331...
0.7738124
1
Returns the root module of the program tree with the given name;
public ProgramModule getRootModule(long treeID);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ProgramModule getRootModule(String treeName);", "public ProgramModule getModule(String treeName, String name);", "public ProgramModule createRootModule(String treeName) throws DuplicateNameException;", "public String module(String name)\n {\n return modules.get(name);\n }", "public ProgramM...
[ "0.8437788", "0.7680956", "0.7318133", "0.6871878", "0.6568879", "0.6047169", "0.5900187", "0.5773397", "0.5704095", "0.57031626", "0.5659684", "0.56263024", "0.5458147", "0.53900504", "0.53652185", "0.53480136", "0.5317614", "0.52717686", "0.5254189", "0.52468157", "0.521947...
0.7467457
2
Returns the root module for the default program tree. This would be the program tree that has existed the longest.
public ProgramModule getDefaultRootModule();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ProgramModule getRootModule(String treeName);", "public ProgramModule getRootModule(long treeID);", "public ProgramModule createRootModule(String treeName) throws DuplicateNameException;", "public String getRoot();", "String getDefaultRoot() {\n return mDefaultRoot;\n }", "public...
[ "0.82243985", "0.81420565", "0.65861845", "0.634595", "0.6198116", "0.61868334", "0.6142905", "0.6037674", "0.59502906", "0.5808029", "0.5704548", "0.5703653", "0.56462944", "0.559733", "0.5574566", "0.5545586", "0.55135137", "0.5494915", "0.5490275", "0.54828495", "0.5459198...
0.75713056
2
Get the names of all the trees defined in this listing.
public String[] getTreeNames();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "List<String> getTrees();", "public String[] getTrees(){\n LinkedList l = new LinkedList();\n for(TreeInfo t : TreeInfo.values()){\n l.add(t.getTreeType());\n }\n return Arrays.copyOf(l.toArray(), l.toArray().length, String[].class);\n }", "public List<Tree> getTrees() ...
[ "0.706169", "0.6788371", "0.67352754", "0.6593549", "0.6506627", "0.62352586", "0.60895395", "0.60863066", "0.60860294", "0.60257316", "0.6002149", "0.5979312", "0.59288543", "0.5927663", "0.5900662", "0.5866402", "0.5856516", "0.5801481", "0.5787973", "0.5769553", "0.5710178...
0.7995301
0
Remove the tree rooted at the given name.
public boolean removeTree(String treeName);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Node safeRemoveNamedItem(String name) {\n return internalRemoveNamedItem(name, false);\n }", "public boolean delete(String name)\r\n\t{\r\n\t\t// Find the location of the Node with the search method and assign it to current\r\n\t\tNode current = search(name);\r\n\t\t\r\n\t\t// Return False if the Node ...
[ "0.7307859", "0.68984354", "0.6788459", "0.6782809", "0.67823744", "0.67672", "0.6688719", "0.66192174", "0.65556294", "0.65556294", "0.6445579", "0.63954365", "0.6339341", "0.63182926", "0.62926316", "0.6282362", "0.6244035", "0.62162894", "0.61633605", "0.6150773", "0.61301...
0.8003497
0
Rename the tree. This method does not change the root module's name only the identifier for the tree.
public void renameTree(String oldName, String newName) throws DuplicateNameException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void changeName(String name) {\n this.treeName = name;\n }", "protected void renameNode( String workspaceName,\n NodeKey key,\n Path newPath,\n Segment oldSegment,\n Name prima...
[ "0.69600624", "0.6470542", "0.6222027", "0.61861974", "0.61669576", "0.6156423", "0.6057131", "0.6052734", "0.60161704", "0.5999297", "0.59752035", "0.59118885", "0.5868344", "0.5841132", "0.5826229", "0.5723178", "0.5694435", "0.5639077", "0.56078994", "0.55901515", "0.55900...
0.7398887
0
gets the total number of CodeUnits (Instructions, defined Data, and undefined Data)
public long getNumCodeUnits();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public long getNumInstructions();", "private int getNumberOfMachineUnits() {\r\n\t\tint machineUnitsCount = 0;\r\n\r\n\t\tfor (UnitType unitType : RepairableUnitTypes) {\r\n\t\t\tmachineUnitsCount += this.informationStorage.getCurrentGameInformation().getCurrentUnitCounts()\r\n\t\t\t\t\t.getOrDefault(unitType, 0...
[ "0.6980624", "0.6751323", "0.6568254", "0.6555968", "0.6488732", "0.6363734", "0.6282756", "0.6260544", "0.62351316", "0.6201035", "0.6176931", "0.61567193", "0.61530334", "0.6138688", "0.61287475", "0.6127612", "0.6127612", "0.61257696", "0.60721564", "0.6047754", "0.6002532...
0.79623735
0
gets the total number of defined Data objects in the listing.
public long getNumDefinedData();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int getCount() {\n\t\t\treturn dataList.size();\r\n\t\t}", "public int getDataCount() {\n return data_.size();\n }", "public int getCountOfData (){\n return getData() == null ? 0 : getData().size();\n }", "int getDataCount();", "int getDataCount();", "int getDataCount();", "int get...
[ "0.75405544", "0.74717444", "0.7462418", "0.7442303", "0.7442303", "0.7442303", "0.7442303", "0.7442303", "0.74422264", "0.7403371", "0.7403371", "0.7403371", "0.7403371", "0.7403371", "0.7353949", "0.7352661", "0.7329984", "0.73290086", "0.73290086", "0.73015213", "0.7286247...
0.6613684
91
gets the total number of Instructions in the listing.
public long getNumInstructions();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int listAmount() {\n return count;\n }", "public int size(){\n\t\tListUtilities start = this.returnToStart();\n\t\tint count = 1;\n\t\twhile(start.nextNum != null){\n\t\t\tcount++;\n\t\t\tstart = start.nextNum;\n\t\t}\n\t\treturn count;\n\t}", "int getTotalCount();", "int getDetailsCount();"...
[ "0.70508856", "0.681856", "0.67995816", "0.6760811", "0.6760811", "0.6758937", "0.6758937", "0.6758937", "0.67575264", "0.6727858", "0.6727858", "0.6727858", "0.668107", "0.6675179", "0.66577834", "0.65798885", "0.65572804", "0.6538632", "0.652831", "0.65025616", "0.65024", ...
0.73488325
0
Get the data type manager for the program.
public DataTypeManager getDataTypeManager();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "TypeManager getTypeManager() {\n return types;\n }", "@Override\n\tpublic DataType getDataType() {\n\t\tif (dataType == null) {\n\t\t\tdataType = getDataType(getProgram());\n\t\t}\n\t\treturn dataType;\n\t}", "public static DataManager getInstance()\n\t{\n\t\tDataManager pManager = null;\n\t\tObject ...
[ "0.65205866", "0.64527774", "0.5865182", "0.5797112", "0.5687261", "0.5663989", "0.5572427", "0.55251837", "0.54934424", "0.5487025", "0.54624254", "0.54623246", "0.5451854", "0.54323864", "0.54166216", "0.54111373", "0.5292336", "0.52419287", "0.52241075", "0.52218723", "0.5...
0.7733786
0
Create a function with an entry point and a body of addresses.
public Function createFunction(String name, Address entryPoint, AddressSetView body, SourceType source) throws InvalidInputException, OverlappingFunctionException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Function createFunction(String name, Namespace nameSpace, Address entryPoint,\n\t\t\tAddressSetView body, SourceType source)\n\t\t\tthrows InvalidInputException, OverlappingFunctionException;", "public Function getFunctionAt(Address entryPoint);", "Address createAddress();", "EntryPoint createEntryPoi...
[ "0.6625541", "0.64521086", "0.627569", "0.6191586", "0.56924915", "0.56659895", "0.5612602", "0.55123633", "0.5309553", "0.53089184", "0.52711594", "0.5266362", "0.52186143", "0.5078283", "0.50492865", "0.501938", "0.50118214", "0.50100803", "0.5007298", "0.50033176", "0.4982...
0.6849456
0
Create a function in the specified namespace with an entry point and a body of addresses.
public Function createFunction(String name, Namespace nameSpace, Address entryPoint, AddressSetView body, SourceType source) throws InvalidInputException, OverlappingFunctionException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Function createFunction(String name, Address entryPoint, AddressSetView body,\n\t\t\tSourceType source) throws InvalidInputException, OverlappingFunctionException;", "public Function getFunctionAt(Address entryPoint);", "Function createFunction();", "EntryPoint createEntryPoint();", "FunctionExtract...
[ "0.65101993", "0.59966445", "0.5896775", "0.5522315", "0.53063184", "0.5249121", "0.5170126", "0.5138406", "0.5054914", "0.49889985", "0.48563188", "0.4849005", "0.48461336", "0.48303148", "0.48203444", "0.47974727", "0.47886196", "0.47685295", "0.4741787", "0.47135", "0.4680...
0.6798834
0