SYMBOL INDEX (375 symbols across 46 files) FILE: h/Action.h function class (line 25) | class ActionData type shared_ptr (line 69) | typedef shared_ptr Action; FILE: h/AllOperators.h function class (line 11) | class AllOperators FILE: h/AstNode.h type shared_ptr (line 8) | typedef shared_ptr Namespace; type unique_ptr (line 14) | typedef unique_ptr AstNode; function class (line 18) | class AstNodeBase function class (line 144) | class AstVoid: public AstNodeBase function class (line 177) | class AstList: public AstNodeBase function class (line 216) | class AstToken: public AstNodeBase function class (line 248) | class AstFuncBody: public AstNodeBase function AstNode (line 271) | AstNode makeCopy(bool copyCache) function Token (line 287) | Token getToken() {return bodyNode->getToken();} function setTypesInput (line 289) | void setTypesInput() function canBeWhatev (line 300) | bool canBeWhatev() function class (line 315) | class AstExpression: public AstNodeBase function class (line 351) | class AstConstExpression: public AstNodeBase function class (line 389) | class AstOpWithInput: public AstNodeBase function class (line 431) | class AstTuple: public AstNodeBase function class (line 467) | class AstType: public AstNodeBase function class (line 478) | class AstTypeType: public AstType function class (line 520) | class AstVoidType: public AstType FILE: h/CppProgram.h function class (line 22) | class CppNameContainer function class (line 48) | class CppFuncBase type shared_ptr (line 88) | typedef shared_ptr CppFunc; function class (line 90) | class CppProgram FILE: h/ErrorHandler.h type ErrorPriority (line 11) | enum ErrorPriority function class (line 20) | class ErrorHandler function class (line 39) | class PineconeError FILE: h/Namespace.h type shared_ptr (line 18) | typedef shared_ptr Namespace; function class (line 26) | class NamespaceData: public std::enable_shared_from_this FILE: h/Operator.h function class (line 15) | class OperatorData type shared_ptr (line 58) | typedef shared_ptr Operator; FILE: h/PineconeProgram.h function class (line 31) | class PineconeProgram FILE: h/SourceFile.h function class (line 6) | class SourceFile FILE: h/StackFrame.h function class (line 12) | class StackFrame FILE: h/Token.h function class (line 15) | class TokenData function isComment (line 51) | bool isComment() {return tokenType==LINE_COMMENT || tokenType==BLOCK_COM... type shared_ptr (line 67) | typedef shared_ptr Token; FILE: h/Type.h type shared_ptr (line 18) | typedef shared_ptr Type; type NamedType (line 32) | struct NamedType type OffsetAndType (line 38) | struct OffsetAndType function class (line 44) | class TypeBase: public std::enable_shared_from_this function class (line 135) | class TupleTypeMaker FILE: h/utils/stringArray.h function namespace (line 5) | namespace str FILE: h/utils/stringDrawing.h function namespace (line 5) | namespace str FILE: h/utils/stringNumConversion.h function namespace (line 5) | namespace str FILE: h/utils/stringUtils.h function namespace (line 12) | namespace str FILE: src/Actions/Action.cpp function string (line 19) | string ActionData::toString() function string (line 26) | string ActionData::getTypesString() class VoidAction (line 35) | class VoidAction: public ActionData method VoidAction (line 38) | VoidAction(): ActionData(Void, Void, Void) method addToProg (line 48) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) method string (line 54) | string getDescription() class LambdaAction (line 60) | class LambdaAction: public ActionData method LambdaAction (line 63) | LambdaAction(Type inLeftTypeIn, Type inRightTypeIn, Type returnTypeIn, method addToProg (line 101) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) method string (line 106) | string getDescription() function Action (line 117) | Action lambdaAction(Type inLeftTypeIn, Type inRightTypeIn, Type returnTy... function Action (line 125) | Action createNewVoidAction() FILE: src/Actions/BoolOpAction.cpp class AndAction (line 5) | class AndAction: public ActionData method AndAction (line 9) | AndAction(Action firstActionIn, Action secondActionIn) method string (line 26) | string getDescription() method addToProg (line 55) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) class OrAction (line 74) | class OrAction: public ActionData method OrAction (line 78) | OrAction(Action firstActionIn, Action secondActionIn) method string (line 95) | string getDescription() method addToProg (line 123) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) function Action (line 142) | Action andAction(Action firstActionIn, Action secondActionIn) function Action (line 147) | Action orAction(Action firstActionIn, Action secondActionIn) FILE: src/Actions/BranchAction.cpp class BranchAction (line 6) | class BranchAction: public ActionData method BranchAction (line 9) | BranchAction(Action leftInputIn, Action actionIn, Action rightInputIn) method string (line 46) | string getDescription() method addToProg (line 69) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) class RightBranchAction (line 89) | class RightBranchAction: public ActionData method RightBranchAction (line 92) | RightBranchAction(Action actionIn, Action rightInputIn) method string (line 120) | string getDescription() method addToProg (line 141) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) class LeftBranchAction (line 156) | class LeftBranchAction: public ActionData method LeftBranchAction (line 159) | LeftBranchAction(Action leftInputIn, Action actionIn) method string (line 182) | string getDescription() method addToProg (line 203) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) function Action (line 218) | Action branchAction(Action leftInputIn, Action actionIn, Action rightInp... FILE: src/Actions/FunctionAction.cpp class FunctionAction (line 12) | class FunctionAction: public ActionData method FunctionAction (line 16) | FunctionAction(Action actionIn, shared_ptr stackFameIn): method FunctionAction (line 31) | FunctionAction(AstNode nodeIn, Type returnTypeIn, shared_ptr stackFameIn) function Action (line 218) | Action functionAction(AstNode nodeIn, Type returnTypeIn, shared_ptr& actionsIn, const vector& dest... method string (line 32) | string getDescription() method addToProg (line 96) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) method addToProg (line 101) | void addToProg(CppProgram* prog, Type returnType) function addListToProgWithCppCasting (line 167) | void addListToProgWithCppCasting(ListAction* list, Type returnType, CppP... function Action (line 172) | Action listAction(const vector& actionsIn, const vector&... FILE: src/Actions/LoopAction.cpp class LoopAction (line 4) | class LoopAction: public ActionData method LoopAction (line 8) | LoopAction(Action conditionIn, Action endActionIn, Action loopActionIn) method string (line 31) | string getDescription() method addToProg (line 78) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) function Action (line 104) | Action loopAction(Action conditionIn, Action loopActionIn) function Action (line 109) | Action loopAction(Action conditionIn, Action endActionIn, Action loopAct... FILE: src/Actions/MakeTupleAction.cpp class GetElemFromTupleAction (line 9) | class GetElemFromTupleAction method GetElemFromTupleAction (line 261) | GetElemFromTupleAction(Type typeInIn, string nameIn): method string (line 272) | string getDescription() method addToProg (line 285) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) class CppTupleCastAction (line 10) | class CppTupleCastAction method CppTupleCastAction (line 143) | CppTupleCastAction(Action actionIn, Type returnType): method string (line 154) | string getDescription() method addToProg (line 164) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) class ListAction (line 12) | class ListAction class MakeTupleAction (line 15) | class MakeTupleAction: public ActionData method MakeTupleAction (line 19) | MakeTupleAction(const vector& sourceActionsIn): method string (line 57) | string getDescription() method addToProg (line 109) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) class CppTupleCastAction (line 139) | class CppTupleCastAction: public ActionData method CppTupleCastAction (line 143) | CppTupleCastAction(Action actionIn, Type returnType): method string (line 154) | string getDescription() method addToProg (line 164) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) class GetElemFromTupleAction (line 257) | class GetElemFromTupleAction: public ActionData method GetElemFromTupleAction (line 261) | GetElemFromTupleAction(Type typeInIn, string nameIn): method string (line 272) | string getDescription() method addToProg (line 285) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) function Action (line 347) | Action makeTupleAction(const std::vector& sourceActionsIn) function Action (line 352) | Action getElemFromTupleAction(Type source, string name) function Action (line 362) | Action cppTupleCastAction(Action actionIn, Type returnType) FILE: src/Actions/TypeAction.cpp class TypeGetAction (line 4) | class TypeGetAction: public ActionData method TypeGetAction (line 8) | TypeGetAction(Type typeIn): method string (line 14) | string getCSource(string inLeft, string inRight) method string (line 26) | string getDescription() function Action (line 34) | Action typeGetAction(Type typeIn) FILE: src/Actions/VarAction.cpp class VarGetAction (line 9) | class VarGetAction: public ActionData method VarGetAction (line 13) | VarGetAction(size_t in, void ** stackPtrPtrIn, Type typeIn, string idIn): method addToProg (line 36) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) method string (line 61) | string getDescription() class VarSetAction (line 72) | class VarSetAction: public ActionData method VarSetAction (line 76) | VarSetAction(size_t in, void ** stackPtrPtrIn, Type typeIn, string idIn): method addToProg (line 103) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) method string (line 147) | string getDescription() class ConstGetAction (line 158) | class ConstGetAction: public ActionData method ConstGetAction (line 162) | ConstGetAction(const void* in, Type typeIn, string textIn): method addToProg (line 183) | void addToProg(Action inLeft, Action inRight, CppProgram* prog) method string (line 241) | string getDescription() function Action (line 251) | Action varGetAction(size_t in, Type typeIn, string textIn) function Action (line 256) | Action varSetAction(size_t in, Type typeIn, string varNameIn) function Action (line 261) | Action globalGetAction(size_t in, Type typeIn, string textIn) function Action (line 266) | Action globalSetAction(size_t in, Type typeIn, string textIn) function Action (line 271) | Action constGetAction(const void* in, Type typeIn, string textIn, Namesp... FILE: src/AstNode.cpp function string (line 33) | string AstList::getString() function string (line 98) | string AstFuncBody::getString() function AstNode (line 113) | AstNode AstFuncBody::makeCopyWithSpecificTypes(Type leftInType, Type rig... function string (line 167) | string AstExpression::getString() function string (line 223) | string AstConstExpression::getString() function string (line 265) | string AstOpWithInput::getString() function string (line 496) | string AstToken::getString() function string (line 609) | string AstTuple::getString() function string (line 637) | string AstTokenType::getString() function string (line 650) | string AstTupleType::getString() FILE: src/CppProgram.cpp function string (line 7) | string getValidCppId(string in) function string (line 156) | string CppNameContainer::getCpp(const string& pn) function string (line 303) | string CppFuncBase::pnToCpp(const string& in) function string (line 372) | string CppProgram::getTypeCode(Type in) function string (line 670) | string CppProgram::getCppCode() FILE: src/ErrorHandler.cpp function string (line 13) | string ErrorHandler::priorityToStr(ErrorPriority in) FILE: src/Lexer.cpp class CharClassifier (line 13) | class CharClassifier type Type (line 16) | enum Type function lexString (line 192) | void lexString(shared_ptr file, vector& tokens) FILE: src/Namespace.cpp function Namespace (line 32) | Namespace NamespaceData::makeRootNamespace() function Namespace (line 37) | Namespace NamespaceData::makeChild() function Namespace (line 42) | Namespace NamespaceData::makeChildAndFrame(string nameIn) function string (line 54) | string NamespaceData::getString() function string (line 112) | string NamespaceData::getStringWithParents() function Action (line 160) | Action NamespaceData::addVar(Type type, string name) function Type (line 256) | Type NamespaceData::getType(string name, bool throwSourceError, Token to... function Action (line 285) | Action NamespaceData::getDestroyer(Type type) function Action (line 312) | Action NamespaceData::wrapInDestroyer(Action in) function Action (line 323) | Action NamespaceData::getCopier(Type type) function Action (line 350) | Action NamespaceData::getActionForTokenWithInput(Token token, Type left,... FILE: src/Parser.cpp function AstNode (line 60) | AstNode astNodeFromTokens(const vector& tokens, int left, int right) function skipBrace (line 80) | int skipBrace(const vector& tokens, int start) function findExpressionSplit (line 273) | int findExpressionSplit(const vector& tokens, int left, int right) function AstNode (line 315) | AstNode parseExpression(const vector& tokens, int left, int right) function parseTokenList (line 523) | void parseTokenList(const vector& tokens, int left, int right, ve... function parseSequence (line 641) | void parseSequence(const vector& tokens, int left, int right, Ope... function parseType (line 673) | unique_ptr parseType(const vector& tokens, int left, int... function importFile (line 759) | void importFile(vector& nodes, string path) FILE: src/PineconeProgram.cpp function string (line 132) | string PineconeProgram::getCpp() FILE: src/PineconeStdLib.cpp function string (line 83) | string getText(Operator op) {return op->getText();} function string (line 84) | string getText(string in) {return in;} function addConst (line 86) | void addConst(void* data, Type type, string name) function addAction (line 92) | void addAction(T id, Type leftType, Type rightType, Type returnType, fun... function addType (line 97) | void addType(Type type, string id) function stringToLambda (line 104) | function stringTo... function addAction (line 160) | void addAction(string text, Type leftType, Type rightType, Type returnTy... function addAction (line 165) | void addAction(Operator op, Type leftType, Type rightType, Type returnTy... function T (line 174) | inline T getValFromTuple(void* data, Type type, string name) function setValInTuple (line 208) | inline void setValInTuple(void* data, Type type, string name, T val) function string (line 224) | inline string pncnStr2CppStr(void* obj) function addToProgPnStr (line 249) | void addToProgPnStr(CppProgram * prog) function addToProgCStr (line 266) | void addToProgCStr(CppProgram * prog) function addToProgSubStr (line 284) | void addToProgSubStr(CppProgram * prog) function addToProgIntToStr (line 299) | void addToProgIntToStr(CppProgram * prog) function addToProgStrToInt (line 330) | void addToProgStrToInt(CppProgram * prog) function addToProgStrToDub (line 354) | void addToProgStrToDub(CppProgram * prog) function addToProgConcatStr (line 388) | void addToProgConcatStr(CppProgram * prog) function addToProgDoubleToStr (line 404) | void addToProgDoubleToStr(CppProgram * prog) function addToProgAsciiToStr (line 426) | void addToProgAsciiToStr(CppProgram * prog) function addToProgGetInputLine (line 440) | void addToProgGetInputLine(CppProgram * prog) function addToProgEqStr (line 468) | void addToProgEqStr(CppProgram * prog) function addToProgRunCmd (line 487) | void addToProgRunCmd(CppProgram * prog) function addToProgMakeIntArray (line 516) | void addToProgMakeIntArray(CppProgram * prog) function addToProgStrWithEscapedNames (line 529) | void addToProgStrWithEscapedNames(CppProgram * prog, string str) function basicSetup (line 573) | void basicSetup() function populateBasicTypes (line 581) | void populateBasicTypes() function populateConstants (line 594) | void populateConstants() function populateOperators (line 710) | void populateOperators() function populateConverters (line 892) | void populateConverters() function populateStdFuncs (line 1085) | void populateStdFuncs() function populateTypeInfoFuncs (line 1157) | void populateTypeInfoFuncs() function populateMemManagementFuncs (line 1222) | void populateMemManagementFuncs() function populateStringFuncs (line 1337) | void populateStringFuncs() function populateArrayFuncs (line 1622) | void populateArrayFuncs() function populateIntArrayAndFuncs (line 1914) | void populateIntArrayAndFuncs() function populateNonStdFuncs (line 2009) | void populateNonStdFuncs() function populateCppInterfaceFuncs (line 2067) | void populateCppInterfaceFuncs() function populatePineconeStdLib (line 2092) | void populatePineconeStdLib() FILE: src/ResolveLiteral.cpp function Action (line 8) | Action resolveIntLiteral(Token token, Type type) function Action (line 37) | Action resolveDubLiteral(Token token) function Action (line 84) | Action resolveStringLiteral(Token token) function Action (line 102) | Action resolveLiteral(Token token) FILE: src/SourceFile.cpp function string (line 20) | string SourceFile::getDirPath() function string (line 33) | string SourceFile::getBoxedString() function string (line 38) | string SourceFile::getLine(int lineNum) FILE: src/StackFrame.cpp function Type (line 53) | Type StackFrame::getLeftInType() function Type (line 65) | Type StackFrame::getRightInType() FILE: src/Token.cpp function Token (line 5) | Token makeToken(string textIn, shared_ptr fileIn, int lineIn... function Token (line 12) | Token makeToken(string textIn) function string (line 17) | string TokenData::typeToString(TokenData::Type in) function string (line 35) | string TokenData::getDescription() function string (line 40) | string TokenData::getTypeDescription() function string (line 61) | string tableStringFromTokens(const vector& tokens, string tableName) function string (line 137) | string stringFromTokens(const vector& tokens, int left, int right) FILE: src/Type.cpp class VoidType (line 11) | class VoidType: public TypeBase method string (line 14) | virtual string getString() method string (line 19) | string getCompactString() method string (line 24) | string getCppLiteral(void * data, CppProgram * prog) method isCreatable (line 29) | bool isCreatable() method isVoid (line 34) | bool isVoid() method getSize (line 39) | size_t getSize() method PrimitiveType (line 44) | PrimitiveType getType() method matchesSameTypeType (line 51) | bool matchesSameTypeType(Type other) class UnknownType (line 57) | class UnknownType: public TypeBase method string (line 60) | virtual string getString() method string (line 65) | string getCompactString() method string (line 70) | string getCppLiteral(void * data, CppProgram * prog) method isCreatable (line 75) | bool isCreatable() method isVoid (line 80) | bool isVoid() method getSize (line 85) | size_t getSize() method PrimitiveType (line 90) | PrimitiveType getType() method matchesSameTypeType (line 97) | bool matchesSameTypeType(Type other) class PrimType (line 103) | class PrimType: public TypeBase method PrimType (line 107) | PrimType(PrimitiveType in) method string (line 112) | string getCompactString() method string (line 126) | string getString() method string (line 131) | string getCppLiteral(void * data, CppProgram * prog) method getSize (line 155) | size_t getSize() method PrimitiveType (line 169) | PrimitiveType getType() method matchesSameTypeType (line 178) | bool matchesSameTypeType(Type other) class TupleType (line 184) | class TupleType: public TypeBase method TupleType (line 188) | TupleType(unique_ptr> in, bool isAnonymousIn) method string (line 216) | string getString() method string (line 235) | string getCompactString() method string (line 252) | string getCppLiteral(void * data, CppProgram * prog) method getSize (line 277) | size_t getSize() method PrimitiveType (line 289) | PrimitiveType getType() method OffsetAndType (line 294) | OffsetAndType getSubType(string name) method isWhatev (line 314) | bool isWhatev() method isCreatable (line 319) | bool isCreatable() method Type (line 324) | Type actuallyIs(Type target) method matchesSameTypeType (line 352) | bool matchesSameTypeType(Type other) class PtrType (line 385) | class PtrType: public TypeBase method PtrType (line 389) | PtrType(Type in) method string (line 394) | string getString() method string (line 399) | string getCompactString() method string (line 404) | string getCppLiteral(void * data, CppProgram * prog) method getSize (line 412) | size_t getSize() method PrimitiveType (line 417) | PrimitiveType getType() method Type (line 422) | Type getSubType() method Type (line 427) | Type actuallyIs(Type target) method matchesSameTypeType (line 436) | bool matchesSameTypeType(Type other) class MetaType (line 442) | class MetaType: public TypeBase method MetaType (line 446) | MetaType(Type in) method string (line 451) | string getString() method string (line 456) | string getCompactString() method string (line 461) | string getCppLiteral(void * data, CppProgram * prog) method getSize (line 466) | size_t getSize() method isCreatable (line 471) | bool isCreatable() method PrimitiveType (line 476) | PrimitiveType getType() method Type (line 481) | Type getSubType() method isWhatev (line 486) | bool isWhatev() method Type (line 491) | Type actuallyIs(Type target) method matchesSameTypeType (line 500) | bool matchesSameTypeType(Type other) class WhatevType (line 506) | class WhatevType: public TypeBase method WhatevType (line 510) | WhatevType() {} method string (line 512) | string getString() method string (line 517) | string getCompactString() method isCreatable (line 522) | bool isCreatable() method string (line 527) | string getCppLiteral(void * data, CppProgram * prog) method getSize (line 532) | size_t getSize() method PrimitiveType (line 537) | PrimitiveType getType() method isWhatev (line 542) | bool isWhatev() method Type (line 547) | Type getSubType() method Type (line 552) | Type actuallyIs(Type target) method matchesSameTypeType (line 561) | bool matchesSameTypeType(Type other) function Type (line 567) | Type TypeBase::makeNewVoid() function Type (line 572) | Type TypeBase::makeNewPrimitive(PrimitiveType typeIn) function Type (line 577) | Type TypeBase::makeNewWhatev() function Type (line 596) | Type TypeBase::getMeta() function Type (line 601) | Type TypeBase::getPtr() function string (line 609) | string TypeBase::getString(PrimitiveType in) function Type (line 661) | Type TypeBase::actuallyIs(Type target) function Type (line 676) | Type makeTuple(const vector& in, bool isAnonymous) function Type (line 709) | Type TupleTypeMaker::get(bool isAnonymous) function string (line 719) | string TupleTypeMaker::getUniqueName() FILE: src/main.cpp type Flags (line 14) | struct Flags function main (line 30) | int main(int argc, char ** argv) function Flags (line 169) | Flags getFlags(int argc, char ** argv) FILE: src/msclStringFuncs.cpp function substringMatches (line 16) | bool substringMatches(const string& in, int pos, const string& subStr) function searchInString (line 31) | int searchInString(const string& in, const string& pattern, int startPos) function string (line 42) | string replaceSubstring(const string& in, const string& searchFor, const... function sliceStringBy (line 66) | void sliceStringBy(const string& in, const string& pattern, vector& in) function string (line 154) | string padString(const string& in, int size, int alignment, string pad,... function string (line 209) | string getTextOfLine(const string& in, int lineNum) function string (line 254) | string lineListToBoxedString(const vector& in, string boxName, i... function string (line 333) | string putStringInBox(const string& in, string boxName, bool showLineNum... function string (line 351) | string putStringInTable(const string& in, string tableName) function string (line 440) | string doubleToString(double in) function stringToInt (line 453) | int stringToInt(string in) function stringToDouble (line 473) | double stringToDouble(string in) function string (line 503) | string loadEntireFile(string inName, bool printOutput) function writeFile (line 535) | bool writeFile(const string& filename, const string& contents, bool debug) function getRandChar (line 596) | char getRandChar() function string (line 621) | string getUniqueString(string hint, std::function checker... function string (line 655) | string runCmd(string cmd, bool printOutput) // if print output is false,... function getTermWidth (line 683) | int getTermWidth() FILE: src/utils/fileUtils.cpp function loadFile (line 9) | void loadFile(string filepath, string& contents) function writeFile (line 28) | void writeFile(string filepath, const string& contents) FILE: src/utils/stringArray.cpp type str (line 3) | namespace str function getMaxWidth (line 6) | int getMaxWidth(vector& in) function padWidths (line 21) | void padWidths(vector& out, int size, StringPadAlignment align... function string (line 34) | string join(vector& in, string joiner, bool addAtEnd) FILE: src/utils/stringDrawing.cpp type str (line 9) | namespace str function string (line 15) | string getBoxedString(const string& in, string boxName, bool showLineN... function putArrayInTreeNodeBox (line 111) | void putArrayInTreeNodeBox(vector& data) function string (line 124) | string putStringInTreeNodeBox(const string& in) function string (line 132) | string makeList(vector& data) function string (line 166) | string makeRootUpBinaryTree(const string& root, const string& leftBran... FILE: src/utils/stringNumConversion.cpp type str (line 4) | namespace str function string (line 7) | string charToCppStringLiteralEscaped(unsigned char c) function string (line 20) | string intToBase62(unsigned int num, int maxDigits) function string (line 53) | string ptrToUniqueStr(void* ptrIn, int digits) FILE: src/utils/stringUtils.cpp type str (line 4) | namespace str function splitBy (line 7) | void splitBy(vector& out, const string& in, const string& spli... function string (line 36) | string pad(const string& in, int size, StringPadAlignment alignment, s... function string (line 94) | string tabsToSpaces(const string& in, int tabWidth) function getGlyphPosOf (line 131) | int getGlyphPosOf(const string& in, string pattern)