Lines Matching refs:Name
16 3. The name of the author may not be used to endorse or promote products
317 /// to access variables by name. For example, see the following C code:
376 function GetAsInteger(const Name: String): Integer;
377 procedure SetAsInteger(const Name: String; const Value: Integer);
378 function GetAsInterface(const Name: String): IInterface;
379 procedure SetAsInterface(const Name: String; const Value: IInterface);
385 property AsInteger[const Name: String]: Integer read GetAsInteger write SetAsInteger;
386 property AsInterface[const Name: String]: IInterface read GetAsInterface write SetAsInterface; default;
939 function TLocalStorage.GetAsInteger(const Name: String): Integer;
944 if (FEntries[I].FName = Name) then
949 function TLocalStorage.GetAsInterface(const Name: String): IInterface;
954 if (FEntries[I].FName = Name) then
964 procedure TLocalStorage.SetAsInteger(const Name: String; const Value: Integer);
969 if (FEntries[I].FName = Name) then
974 FEntries[FCount].FName := Name;
980 procedure TLocalStorage.SetAsInterface(const Name: String;
986 if (FEntries[I].FName = Name) then
991 FEntries[FCount].FName := Name;