MCPcopy Create free account

hub / github.com/Erlandys/UE4LinuxLauncher / functions

Functions520 in github.com/Erlandys/UE4LinuxLauncher

↓ 257 callersMethodappend
Append values to the array under a key. If the key does not exist in the JSONObject, then the key is put in the JSONObject with its value being a JSON
src/org/json/JSONObject.java:463
↓ 127 callersMethodgetInstance
()
src/launcher/managers/SessionManager.java:33
↓ 84 callersMethodequals
A Null object is equal to the null value and to itself. @param object An object to test for nullness. @return true if the object parameter
src/org/json/JSONObject.java:128
↓ 78 callersMethodhas
Determine if the JSONObject contains a specific key. @param key A key string. @return true if the key exists in the JSONObject.
src/org/json/JSONObject.java:820
↓ 75 callersMethodgetString
Get the string associated with an index. @param index The index must be between 0 and length() - 1. @return A string value. @throws JSONEx
src/org/json/JSONArray.java:459
↓ 69 callersMethodlength
Get the number of elements in the JSONArray, included nulls. @return The length (or size).
src/org/json/JSONArray.java:507
↓ 64 callersMethodgetUser
()
src/launcher/managers/SessionManager.java:15
↓ 59 callersMethodgetSession
()
src/launcher/managers/SessionManager.java:19
↓ 55 callersMethodget
Get the object value associated with an index. @param index The index must be between 0 and length() - 1. @return An object value. @throws
src/org/json/JSONArray.java:215
↓ 51 callersMethodsyntaxError
Make a JSONException to signal a syntax error. @param message The error message. @return A JSONException object, suitable for throwing
src/org/json/JSONTokener.java:504
↓ 47 callersMethodassignHeader
(String header, String value)
src/launcher/objects/Request.java:288
↓ 44 callersMethodnext
()
src/org/json/XML.java:91
↓ 43 callersMethodput
Put a key/boolean pair in the JSONObject. @param key A key string. @param value A boolean which is the value. @return this. @th
src/org/json/JSONObject.java:1490
↓ 37 callersMethodgetString
Get the string associated with a key. @param key A key string. @return A string which is the value. @throws JSONException if t
src/org/json/JSONObject.java:805
↓ 37 callersMethodput
Append a boolean value. This increases the array's length by one. @param value A boolean value. @return this.
src/org/json/JSONArray.java:955
↓ 28 callersMethodgetValue
()
src/launcher/objects/Request.java:30
↓ 28 callersMethodwrite
Write the contents of the JSONObject as JSON text to a writer. For compactness, no whitespace is added. <p><b> Warning: This method assumes that the d
src/org/json/JSONObject.java:2195
↓ 26 callersMethodgetInstance
()
src/launcher/DownloadForm.java:101
↓ 26 callersMethodquote
Produce a string in double quotes with backslash sequences in all the right places. A backslash will be inserted within </, producing <\/, allowing JS
src/org/json/JSONObject.java:1743
↓ 25 callersMethodopt
Get an optional value associated with a key. @param key A key string. @return An object which is the value, or null if there is no value.
src/org/json/JSONObject.java:971
↓ 24 callersMethodassignInput
(String name, Object value)
src/launcher/objects/Request.java:276
↓ 24 callersMethodexecute
()
src/launcher/objects/Request.java:110
↓ 23 callersMethodgetInstance
()
src/launcher/LoginForm.java:149
↓ 23 callersMethodopt
Get the optional object value associated with an index. @param index The index must be between 0 and length() - 1. If not, null is returne
src/org/json/JSONArray.java:518
↓ 22 callersMethodgetInt
Get the int value associated with an index. @param index The index must be between 0 and length() - 1. @return The value. @throws JSONExce
src/org/json/JSONArray.java:384
↓ 22 callersMethodtoString
()
src/launcher/objects/Request.java:390
↓ 21 callersMethodtoString
Produce a comma delimited text from a JSONArray of JSONObjects. The first row will be a list of names obtained by inspecting the first JSONObject. @pa
src/org/json/CDL.java:253
↓ 20 callersMethodback
Back up one character. This provides a sort of lookahead capability, so that you can test for a digit or letter before attempting to parse the next nu
src/org/json/JSONTokener.java:105
↓ 20 callersMethodgetXSRF
()
src/launcher/objects/Request.java:347
↓ 20 callersMethodtoString
Make a JSON text of this JSONObject. For compactness, no whitespace is added. If this would not result in a syntactically correct JSON text, then null
src/org/json/JSONObject.java:2058
↓ 19 callersMethodgetConnection
()
src/launcher/managers/DatabaseManager.java:14
↓ 19 callersMethodgetInstance
()
src/launcher/managers/DatabaseManager.java:198
↓ 18 callersMethodlength
Get the number of keys stored in the JSONObject. @return The number of keys in the JSONObject.
src/org/json/JSONObject.java:916
↓ 17 callersMethodgetContent
()
src/launcher/objects/Request.java:351
↓ 16 callersMethodassignCookies
(Session session)
src/launcher/objects/Request.java:298
↓ 16 callersMethodgetCookies
()
src/launcher/objects/Request.java:365
↓ 16 callersMethodkeySet
Get a set of keys of the JSONObject. Modifying this key Set will also modify the JSONObject. Use with caution. @see Map#keySet() @return A keySet.
src/org/json/JSONObject.java:891
↓ 16 callersMethodnextToken
Get the next XML Token. These tokens are found inside of angle brackets. It may be one of these characters: <code>/ > = ! ?</code> or it may be a stri
src/org/json/XMLTokener.java:259
↓ 15 callersMethodgetJSONObject
Get the JSONObject associated with an index. @param index subscript @return A JSONObject value. @throws JSONException If there
src/org/json/JSONArray.java:422
↓ 15 callersMethodsetCookies
(Map<String, AbstractMap.SimpleEntry<String, Integer>> cookies)
src/launcher/objects/Session.java:90
↓ 14 callersMethodassignXSRF
(String xsrf)
src/launcher/objects/Request.java:303
↓ 14 callersMethodget
Get the value object associated with a key. @param key A key string. @return The object associated with the key. @throws JSONException
src/org/json/JSONObject.java:514
↓ 14 callersMethodgetDescription
()
src/launcher/objects/EpicItem.java:189
↓ 14 callersMethodgetInstance
()
src/launcher/MainForm.java:820
↓ 14 callersMethodnext
Get the next character in the source string. @return The next character, or 0 if past the end of the source string. @throws JSONException Thrown if t
src/org/json/JSONTokener.java:192
↓ 13 callersMethodstart
()
src/launcher/TwoFactorForm.java:84
↓ 13 callersMethodtoString
Make a JSON text of this JSONArray. For compactness, no unnecessary whitespace is added. If it is not possible to produce a syntactically correct JSON
src/org/json/JSONArray.java:1347
↓ 12 callersMethodescape
Replace special characters with XML escapes: <pre> &amp; <small>(ampersand)</small> is replaced by &amp;amp; &lt; <small>(less than)</small> is repla
src/org/json/XML.java:122
↓ 12 callersMethodgetCurrentProject
()
src/launcher/objects/User.java:232
↓ 12 callersMethodgetInstance
()
src/launcher/managers/MarketplaceManager.java:289
↓ 12 callersMethodgetValue
Get the next value. The value can be wrapped in quotes. The value can be empty. @param x A JSONTokener of the source text. @return The value string, o
src/org/json/CDL.java:55
↓ 12 callersMethodsuccessfullStep
()
src/launcher/managers/AuthenticationManager.java:78
↓ 11 callersMethodaccumulate
Accumulate values under a key. It is similar to the put method except that if there is already an object stored under the key then a JSONArray is stor
src/org/json/JSONObject.java:433
↓ 11 callersMethodgetReleases
()
src/launcher/objects/EpicItem.java:229
↓ 11 callersMethodnextClean
Get the next char in the string, skipping whitespace. @throws JSONException Thrown if there is an error reading the source string. @return A characte
src/org/json/JSONTokener.java:290
↓ 10 callersMethodentrySet
Get a set of entries of the JSONObject. These are raw values and may not match what is returned by the JSONObject get and opt functions. Modifying the
src/org/json/JSONObject.java:907
↓ 10 callersMethodgetJSONObject
Get the JSONObject value associated with a key. @param key A key string. @return A JSONObject which is the value. @throws JSONException
src/org/json/JSONObject.java:731
↓ 10 callersMethodgetName
()
src/launcher/objects/EpicItem.java:185
↓ 10 callersMethodnextTo
Get the text up but not including the specified character or the end of line, whichever comes first. @param delimiter A delimiter character. @return
src/org/json/JSONTokener.java:374
↓ 9 callersMethodappend
Append a value. @param string A string value. @return this @throws JSONException If the value is out of sequence.
src/org/json/JSONWriter.java:112
↓ 9 callersMethodisNull
Determine if the value is null. @param index The index must be between 0 and length() - 1. @return true if the value at the index is null,
src/org/json/JSONArray.java:474
↓ 9 callersMethodtableExists
(String tableName)
src/launcher/managers/DatabaseManager.java:175
↓ 8 callersMethodassignParameter
(String name, Object value)
src/launcher/objects/Request.java:281
↓ 8 callersMethodgetImages
()
src/launcher/objects/EpicItem.java:205
↓ 8 callersMethodgetUe4InstallLocation
()
src/launcher/objects/User.java:67
↓ 8 callersMethodparse
Parse XML values and store them in a JSONArray. @param x The XMLTokener containing the source string. @param arrayForm true if array form, false
src/org/json/JSONML.java:46
↓ 7 callersMethodallowActions
()
src/launcher/LoginForm.java:93
↓ 7 callersMethodgetJSONArray
Get the JSONArray associated with an index. @param index The index must be between 0 and length() - 1. @return A JSONArray value. @throws
src/org/json/JSONArray.java:404
↓ 7 callersMethodgetProjects
()
src/launcher/objects/User.java:84
↓ 7 callersMethodget_manifest_appName
()
src/launcher/objects/EpicItemMeta.java:27
↓ 7 callersMethodmore
Determine if the source string still contains characters that next() can consume. @return true if not yet at the end of the source. @throws JSONExcept
src/org/json/JSONTokener.java:163
↓ 7 callersMethodupdateOwnedAssetsList
()
src/launcher/MainForm.java:512
↓ 6 callersMethodescape
Produce a copy of a string in which the characters '+', '%', '=', ';' and control characters are replaced with "%hh". This is a gentle form of URL enc
src/org/json/Cookie.java:47
↓ 6 callersMethodgetCatalogItemId
()
src/launcher/objects/EpicItem.java:225
↓ 6 callersMethodgetInt
Get the int value associated with a key. @param key A key string. @return The integer value. @throws JSONException if the key
src/org/json/JSONObject.java:693
↓ 6 callersMethodgetManifest_root
()
src/launcher/objects/EpicItemMeta.java:43
↓ 6 callersMethodsetMainProgressText
(String mainProgressText)
src/launcher/DownloadForm.java:61
↓ 6 callersMethodsetMinorProgressText
(String text)
src/launcher/DownloadForm.java:56
↓ 6 callersMethodsetXSRF
(String xsrf)
src/launcher/objects/Session.java:80
↓ 6 callersMethodtestValidity
Throw an exception if the object is a NaN or infinite number. @param o The object to test. @throws JSONException If o is a non
src/org/json/JSONObject.java:2007
↓ 6 callersMethodtoString
Make a printable string of this JSONTokener. @return " at {index} [character {character} line {line}]"
src/org/json/JSONTokener.java:524
↓ 5 callersMethodgetCompatibility
()
src/launcher/objects/EpicItemReleaseInfo.java:87
↓ 5 callersMethodgetInstance
()
src/launcher/managers/AuthenticationManager.java:488
↓ 5 callersMethodgetResource
(String path)
src/launcher/utils/Utils.java:34
↓ 5 callersMethodgetUnrealEngineVersion
()
src/launcher/objects/User.java:75
↓ 5 callersMethodgetUrl
()
src/launcher/objects/EpicImage.java:23
↓ 5 callersMethodpostRequest
()
src/launcher/objects/Request.java:254
↓ 5 callersMethodrandomString
(int length)
src/launcher/utils/Utils.java:10
↓ 5 callersMethodskipPast
(String to)
src/org/json/XMLTokener.java:343
↓ 5 callersMethodtoBytes
(long size)
src/launcher/objects/EpicItem.java:644
↓ 5 callersMethodupdateMarketplaceList
()
src/launcher/MainForm.java:446
↓ 5 callersMethodwrite
Write the contents of the JSONArray as JSON text to a writer. For compactness, no whitespace is added. <p><b> Warning: This method assumes that the da
src/org/json/JSONArray.java:1400
↓ 4 callersMethodappend
Adds an arbitrary token to the list of reference tokens. It can be any non-null value. Unlike in the case of JSON string or URI fragment representati
src/org/json/JSONPointer.java:88
↓ 4 callersMethodassignBearer
()
src/launcher/objects/Request.java:312
↓ 4 callersMethodgetCategory
(String name)
src/launcher/managers/MarketplaceManager.java:262
↓ 4 callersMethodgetDisplayName
()
src/launcher/objects/User.java:43
↓ 4 callersMethodgetDouble
Get the double value associated with an index. @param index The index must be between 0 and length() - 1. @return The value. @throws JSONE
src/org/json/JSONArray.java:258
↓ 4 callersMethodgetInstance
()
src/launcher/managers/EngineManager.java:136
↓ 4 callersMethodgetItemId
()
src/launcher/objects/EpicItem.java:181
↓ 4 callersMethodgetPassword
()
src/launcher/objects/User.java:59
next →1–100 of 520, ranked by callers