Click here to Skip to main content
15,917,456 members

fefe.wyx - Professional Profile



Summary

    Blog RSS
175
Authority
20
Debator
1
Enquirer
28
Organiser
287
Participant
0
Author
0
Editor
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
Generalmangled names [modified] Pin
fefe.wyx12-Sep-06 17:56
fefe.wyx12-Sep-06 17:56 
Ident :=
    ? QualifiedName @ IdentType

QualifiedName :=
    BaseName
    BaseName NameQualifier

BaseName :=
    StringTemplateName
    OperatorName

NameQualifier :=
    ClassNamespaceName
    ClassNamespaceName NameQualifier

ClassNamespaceName :=
    StringTemplateName
    AnoymousNamespaceName
    '??' Ident				// `Ident'
    '?1' IntConst			// `IntConst'

StringTemplateName :=
    StringName
    TemplateName
    BackRefStringName

StringName :=
    [_a-zA-Z][_0-9a-zA-Z]* @

TemplateName :=
    '?$' QualifiedName TplParaList

AnonymousNamespacename :
    ?A0x [0-9a-f](6) @

TplParaList :=
    TplPara
    TplParaList TplPara

TplPara :=
    Type
    IntTplPara
    RefTplPara
    CVQTplPara

IntTplPara :=
    '$0' IntConst

IntConst :=
    [0-9]           // 1 ~ 10
    [A-P][A-P]+@    // other possitive, A-P <-> 0-F
    ?[0-9]          // -1 ~ -10
    ?[A-P][A-P]+@   // other negtive

RefTplPara :=
    '$?' QualifiedName VariableType

CVQTplPara :=
    '$$' 'C' CVQ Type

VariableType :=
    VarAccMod Type VarCVQ

VarAccMode :=
	0	// private: static
    3   // normal

VarCVQ :=
    A   // normal
    B   // const

Type :=
    BaseType        // int
    RefType         // pointer, ref
    CompoundType    // class
    BackRefType

RefType :=
    RefSpLt CVQType
    RefSpLt Func

CVQType :=
    CVQVar Type

RefSpLt :=
    A   // &
    P   // *
    Q   // * const

CompoundType :=
    CompoundSpLt QualifiedName

CompoundSpLt :=
    T   // union
    U   // struct
    V   // class
    W4  // enum

Func :=
    NonMemCVQFunc FuncP
    MemCVQFunc ClassNamespaceList CVQThis FuncP

CVQThis :=
    CVQVar

NonMemCVQFunc :=
    6   // normal

MemCVQFunc :=
    8

FuncP :=
    CallConv RetType ParamList

ParamList :=
    XZ                    // void
    NonVoidType @Z
    NonVoidType Z         // Z stands for ,... here
    NonVoidType ParamList //

RetType :=
    Type

IdentType :=
    VariableType
    NonMemFuncMod FuncP
    MemFuncMod CVQThis FuncP
    ThunkFuncMod ThunkAdjustor CVQThis FuncP

ThunkAdjustor :=
    IntConst

BaseType :=
    NonVoidType
    'X'         // void

GeneralRe: mangled names Pin
fefe.wyx12-Sep-06 21:33
fefe.wyx12-Sep-06 21:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.