Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dirkvranckaert/AndroidDecompiler
/ functions
Functions
395 in github.com/dirkvranckaert/AndroidDecompiler
⨍
Functions
395
◇
Types & classes
49
Function
AStyleMainUtf16
astyle/src/astyle_main.cpp:3540
Method
ChineseSimplified
astyle/src/ASLocalizer.cpp:391
Method
ChineseTraditional
astyle/src/ASLocalizer.cpp:417
Method
Dutch
astyle/src/ASLocalizer.cpp:443
Method
English
astyle/src/ASLocalizer.cpp:470
Method
Finnish
astyle/src/ASLocalizer.cpp:474
Method
French
astyle/src/ASLocalizer.cpp:501
Method
German
astyle/src/ASLocalizer.cpp:528
Method
Hindi
astyle/src/ASLocalizer.cpp:555
Method
Italian
astyle/src/ASLocalizer.cpp:584
Method
Japanese
astyle/src/ASLocalizer.cpp:611
Function
Java_AStyleInterface_AStyleGetVersion
astyle/src/astyle_main.cpp:3471
Function
Java_AStyleInterface_AStyleMain
astyle/src/astyle_main.cpp:3479
Method
Korean
astyle/src/ASLocalizer.cpp:637
Method
Polish
astyle/src/ASLocalizer.cpp:663
Method
Portuguese
astyle/src/ASLocalizer.cpp:690
Method
Russian
astyle/src/ASLocalizer.cpp:717
Method
Spanish
astyle/src/ASLocalizer.cpp:744
Method
Swedish
astyle/src/ASLocalizer.cpp:771
Method
Translation
astyle/src/ASLocalizer.h:84
Method
Ukrainian
astyle/src/ASLocalizer.cpp:798
Method
Utf16LengthFromUtf8
Adapted from SciTE UniConversion.cxx. Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> Modified for Artistic Style by Jim Pattee. Compute th
astyle/src/astyle_main.cpp:2206
Method
Utf16ToUtf8
Adapted from SciTE Utf8_16.cxx. Copyright (C) 2002 Scott Kirkwood. Modified for Artistic Style by Jim Pattee. Convert a utf-16 file to utf-8.
astyle/src/astyle_main.cpp:2236
Method
Utf8LengthFromUtf16
Adapted from SciTE UniConversion.cxx. Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> Modified for Artistic Style by Jim Pattee. Compute th
astyle/src/astyle_main.cpp:2076
Method
Utf8ToUtf16
Adapted from SciTE Utf8_16.cxx. Copyright (C) 2002 Scott Kirkwood. Modified for Artistic Style by Jim Pattee. Convert a utf-8 file to utf-16.
astyle/src/astyle_main.cpp:2114
Method
addBracketsToStatement
* Add brackets to a single line statement following a header. * Brackets are not added if the proper conditions are not met. * Brackets are added to
astyle/src/ASFormatter.cpp:5267
Method
addPair
astyle/src/ASLocalizer.cpp:302
Method
adjustChecksumIn
* Adjust the input checksum for deleted chars. * This is called as an assert so it for is debug config only */
astyle/src/ASFormatter.cpp:6292
Method
adjustComments
* adjust comment position because of adding or deleting spaces * the spaces are added or deleted to formattedLine * spacePadNum contains the adjustm
astyle/src/ASFormatter.cpp:3109
Method
adjustIndentCountForBreakElseIfComments
* Compute indentCount adjustment when in a series of else-if statements * and shouldBreakElseIfs is requested. * It increments by one for each 'else
astyle/src/ASBeautifier.cpp:2070
Method
adjustParsedLineIndentation
astyle/src/ASBeautifier.cpp:1999
Method
appendChar
* Append a character to the current formatted line. * The formattedLine split points are updated. * * @param char the character to appe
astyle/src/ASFormatter.cpp:2305
Method
appendCharInsideComments
* append the current bracket inside the end of line comments * currentChar contains the bracket, it will be appended to formattedLine * formattedLin
astyle/src/ASFormatter.cpp:3157
Method
appendCurrentChar
inline functions append the CURRENT character (curentChar) to the current formatted line.
astyle/src/astyle.h:970
Method
appendOperator
* Append an operator sequence to the current formatted line. * The formattedLine split points are updated. * * @param sequence the sequence
astyle/src/ASFormatter.cpp:2346
Method
appendSequence
* Append a string sequence to the current formatted line. * The formattedLine split points are NOT updated. * But the formattedLine is checked for t
astyle/src/ASFormatter.cpp:2330
Method
appendSpaceAfter
* append a space to the current formattedline, UNLESS the * next character is already a white-space character. */
astyle/src/ASFormatter.cpp:2387
Method
appendSpacePad
* append a space to the current formattedline, UNLESS the * last character is already a white-space character. */
astyle/src/ASFormatter.cpp:2365
Method
beautify
* beautify a line of source code. * every line of source code in a source code file should be sent * one after the other to the beautify method. *
astyle/src/ASBeautifier.cpp:800
Method
breakLine
* register a line break for the formatted line. */
astyle/src/ASFormatter.cpp:2408
Method
buildAssignmentOperators
* Build the vector of assignment operators. * Used by BOTH ASFormatter.cpp and ASBeautifier.cpp * * @param assignmentOperators a reference to the
astyle/src/ASResource.cpp:193
Method
buildCastOperators
* Build the vector of C++ cast operators. * Used by ONLY ASFormatter.cpp * * @param castOperators a reference to the vector to be built. */
astyle/src/ASResource.cpp:222
Method
buildHeaders
* Build the vector of header words. * Used by BOTH ASFormatter.cpp and ASBeautifier.cpp * * @param headers a reference to the vector to be bu
astyle/src/ASResource.cpp:236
Method
buildIndentableHeaders
* Build the vector of indentable headers. * Used by ONLY ASBeautifier.cpp * * @param indentableHeaders a reference to the vector to be built.
astyle/src/ASResource.cpp:294
Method
buildLanguageVectors
* build vectors for each programing language * depending on the file extension. */
astyle/src/ASFormatter.cpp:279
Method
buildNonAssignmentOperators
* Build the vector of non-assignment operators. * Used by ONLY ASBeautifier.cpp * * @param nonAssignmentOperators a reference to the vector t
astyle/src/ASResource.cpp:307
Method
buildNonParenHeaders
* Build the vector of header non-paren headers. * Used by BOTH ASFormatter.cpp and ASBeautifier.cpp. * NOTE: Non-paren headers should also be includ
astyle/src/ASResource.cpp:334
Method
buildOperators
* Build the vector of operators. * Used by ONLY ASFormatter.cpp * * @param operators a reference to the vector to be built. */
astyle/src/ASResource.cpp:382
Method
buildPreBlockStatements
* Build the vector of pre-block statements. * Used by ONLY ASBeautifier.cpp * NOTE: Cannot be both a header and a preBlockStatement. * * @param pr
astyle/src/ASResource.cpp:442
Method
buildPreCommandHeaders
* Build the vector of pre-command headers. * Used by BOTH ASFormatter.cpp and ASBeautifier.cpp. * NOTE: Cannot be both a header and a preCommandHead
astyle/src/ASResource.cpp:475
Method
buildPreDefinitionHeaders
* Build the vector of pre-definition headers. * Used by ONLY ASFormatter.cpp * NOTE: Do NOT add 'enum' here. It is an array type bracket. * NOTE: D
astyle/src/ASResource.cpp:506
Method
checkForHeaderFollowingComment
* Check for a following header when a comment is reached. * firstLine must contain the start of the comment. * return value is a pointer to the head
astyle/src/ASFormatter.cpp:4546
Method
checkIfTemplateOpener
* Determine if a < is a template definition or instantiation. * Sets the class variables isInTemplate and templateDepth. */
astyle/src/ASFormatter.cpp:5707
Method
clearFormattedLineSplitPoints
astyle/src/ASFormatter.cpp:6251
Method
clearObjCMethodDefinitionAlignment
* Clear the variables used to align the Objective-C method definitions. */
astyle/src/ASBeautifier.cpp:2106
Method
commentAndHeaderFollows
* determine if the next line starts a comment * and a header follows the comment or comments. */
astyle/src/ASFormatter.cpp:4599
Method
computeChecksumIn
* Compute the input checksum. * This is called as an assert so it for is debug config only */
astyle/src/ASFormatter.cpp:6280
Method
computeChecksumOut
* Compute the output checksum. * This is called as an assert so it is for debug config only */
astyle/src/ASFormatter.cpp:6312
Method
computeObjCColonAlignment
* Compute the spaceIndentCount necessary to align the current line colon * with the colon position in the argument. * If it cannot be aligned indent
astyle/src/ASBeautifier.cpp:2124
Method
computePreliminaryIndentation
Compute the preliminary indentation based on data in the headerStack and data from previous lines. Update the class variable indentCount.
astyle/src/ASBeautifier.cpp:1881
Method
convertForceTabIndentToSpaces
* convert a force-tab indent to spaces * * @param line a reference to the line that will be converted. */
astyle/src/ASEnhancer.cpp:159
Method
convertLineEnds
rewrite a stringstream converting the line ends
astyle/src/astyle_main.cpp:293
Method
convertSpaceIndentToForceTab
* convert a space indent to force-tab * * @param line a reference to the line that will be converted. */
astyle/src/ASEnhancer.cpp:180
Method
convertTabToSpaces
* convert a tab to spaces. * charNum points to the current character to convert to spaces. * tabIncrementIn is the increment that must be added for
astyle/src/ASFormatter.cpp:4497
Method
convertTabToSpaces
* convert tabs to spaces. * i is the position of the character to convert to spaces. * tabIncrementIn is the increment that must be added for tab in
astyle/src/ASBeautifier.cpp:1308
Method
convertToMultiByte
astyle/src/ASLocalizer.cpp:309
Method
convertUtf16ToUtf8
* WINDOWS function to convert wchar_t (utf16) strings to utf-8 strings. * Windows wchar_t is utf-16. * The calling function must check for errors an
astyle/src/astyle_main.cpp:2639
Method
convertUtf8ToUtf16
* WINDOWS function to convert utf-8 strings to wchar_t (utf16) strings. * Windows wchar_t is utf-16. * Memory is allocated by the calling program me
astyle/src/astyle_main.cpp:2621
Method
copyTempStacks
* Copy tempStacks for the copy constructor. * The value of the vectors must also be copied. */
astyle/src/ASBeautifier.cpp:1361
Method
correctMixedLineEnds
astyle/src/astyle_main.cpp:376
Method
deleteBeautifierContainer
* Delete the ASBeautifier vector object. * This is a vector of pointers to ASBeautifier objects allocated with the 'new' operator. * Therefore the A
astyle/src/ASBeautifier.cpp:1413
Method
deleteBeautifierVectors
* delete a member vectors to eliminate memory leak reporting */
astyle/src/ASBeautifier.cpp:1379
Method
deleteContainer
* delete a bracketTypeStack vector object * BracketTypeStack did not work with the DeleteContainer template */
astyle/src/ASFormatter.cpp:4437
Method
deleteContainer
astyle/src/ASBeautifier.cpp:1397
Method
deleteTempStacksContainer
* Delete the tempStacks vector object. * The tempStacks is a vector of pointers to strings allocated with the 'new' operator. * Therefore the string
astyle/src/ASBeautifier.cpp:1434
Method
detectEncoding
check files for 16 or 32 bit encoding the file must have a Byte Order Mark (BOM) NOTE: some string functions don't work with NULLs (e.g. length())
astyle/src/astyle_main.cpp:391
Method
displayLastError
* WINDOWS function to display the last system error. */
astyle/src/astyle_main.cpp:791
Method
error
error exit without a message
astyle/src/astyle_main.cpp:408
Method
extractPreprocessorStatement
* Extract a preprocessor statement without the #. * If a error occurs an empty string is returned. */
astyle/src/ASBeautifier.cpp:2090
Method
findCaseColon
* find the colon following a 'case' statement * * @param line a reference to the line. * @param i the line index of the case s
astyle/src/ASEnhancer.cpp:198
Method
findFormattedLineSplitPoint
astyle/src/ASFormatter.cpp:6190
Method
findHeader
call ASBase::findHeader for the current character
astyle/src/astyle.h:980
Method
findHeader
check if a specific line position contains a header.
astyle/src/ASBeautifier.cpp:1227
Method
findKeyword
check if a specific line position contains a keyword.
astyle/src/ASResource.cpp:533
Method
findNextChar
* Find the next character that is not in quotes or a comment. * * @param line the line to be searched. * @param searchChar the char to fi
astyle/src/ASFormatter.cpp:5424
Method
findOperator
call ASBase::findOperator for the current character
astyle/src/astyle.h:985
Method
findOperator
check if a specific line position contains an operator.
astyle/src/ASBeautifier.cpp:1265
Method
fixOptionVariableConflicts
* set the variables for each predefined style. * this will override any previous settings. */
astyle/src/ASFormatter.cpp:310
Method
formatArrayBrackets
* format array brackets as attached or broken * determine if the brackets can have an inStatement indent * currentChar contains the bracket * the b
astyle/src/ASFormatter.cpp:4123
Method
formatArrayRunIn
* remove whitepace and add indentation for an array run-in. */
astyle/src/ASFormatter.cpp:4401
Method
formatClosingBracket
* format closing bracket * currentChar contains the bracket * the calling function should have a continue statement after calling this method * *
astyle/src/ASFormatter.cpp:4043
Method
formatCommentBody
* format comment body * the calling function should have a continue statement after calling this method */
astyle/src/ASFormatter.cpp:4734
Method
formatCommentCloser
* format a comment closer * the comment closer will be appended to the current formattedLine */
astyle/src/ASFormatter.cpp:4853
Method
formatCommentOpener
* format a comment opener * the comment opener will be appended to the current formattedLine or a new formattedLine as necessary * the calling funct
astyle/src/ASFormatter.cpp:4761
Method
formatFile
* Open input file, format it, and close the output. * * @param fileName_ The path and name of the file to be processed. */
astyle/src/astyle_main.cpp:477
Method
formatLineCommentBody
* format a line comment body * the calling function should have a continue statement after calling this method */
astyle/src/ASFormatter.cpp:4878
Method
formatLineCommentOpener
* format a line comment opener * the line comment opener will be appended to the current formattedLine or a new formattedLine as necessary * the cal
astyle/src/ASFormatter.cpp:4908
Method
formatOpeningBracket
* format opening bracket as attached or broken * currentChar contains the bracket * the brackets will be appended to the current formattedLine or a
astyle/src/ASFormatter.cpp:3908
Method
formatPointerOrReference
* format pointer or reference * currentChar contains the pointer or reference * the symbol and necessary padding will be appended to formattedLine
astyle/src/ASFormatter.cpp:3281
Method
formatPointerOrReferenceCast
* format pointer or reference cast * currentChar contains the pointer or reference * NOTE: the pointers and references in function definitions *
astyle/src/ASFormatter.cpp:3645
← previous
next →
101–200 of 395, ranked by callers