Home
last modified time | relevance | path

Searched refs:strName (Results 1 – 25 of 1316) sorted by relevance

12345678910>>...53

/dports/security/keepass/KeePass-2.49-Source/KeePassLib/Collections/
H A DVariantDictionary.cs103 m_d[strName] = t;
117 m_d[strName] = t;
120 public bool Remove(string strName) in Remove() argument
124 return m_d.Remove(strName); in Remove()
143 m_d.TryGetValue(strName, out o); in GetTypeOf()
158 SetStruct<uint>(strName, uValue); in SetUInt32()
182 SetStruct<bool>(strName, bValue); in SetBool()
194 SetStruct<int>(strName, iValue); in SetInt32()
212 Get<string>(strName, out str); in GetString()
224 Get<byte[]>(strName, out pb); in GetByteArray()
[all …]
H A DStringDictionaryEx.cs110 public string Get(string strName) in Get() argument
115 m_d.TryGetValue(strName, out str); in Get()
130 public bool Exists(string strName) in Exists() argument
134 return m_d.ContainsKey(strName); in Exists()
137 public void Set(string strName, string strValue) in Set() argument
142 m_d[strName] = strValue; in Set()
152 m_d[strName] = strValue; in Set()
157 else m_dLastMod.Remove(strName); in Set()
161 public bool Remove(string strName) in Remove() argument
165 if(m_dLastMod != null) m_dLastMod.Remove(strName); in Remove()
[all …]
H A DProtectedStringDictionary.cs166 public ProtectedString Get(string strName) in Get() argument
168 Debug.Assert(strName != null); if(strName == null) throw new ArgumentNullException("strName"); in Get()
188 Debug.Assert(strName != null); if(strName == null) throw new ArgumentNullException("strName"); in GetSafe()
203 public bool Exists(string strName) in Exists() argument
205 Debug.Assert(strName != null); if(strName == null) throw new ArgumentNullException("strName"); in Exists()
207 return m_vStrings.ContainsKey(strName); in Exists()
219 public string ReadSafe(string strName) in ReadSafe() argument
221 Debug.Assert(strName != null); if(strName == null) throw new ArgumentNullException("strName"); in ReadSafe()
224 if(m_vStrings.TryGetValue(strName, out ps)) in ReadSafe()
240 public string ReadSafeEx(string strName) in ReadSafeEx() argument
[all …]
/dports/databases/pgbackrest/pgbackrest-release-2.35/doc/lib/pgBackRestDoc/Common/
H A DDoc.pm107 $strName,
119 my $bText = $strName eq 'text' || $strName eq 'li' || $strName eq 'p' || $strName eq 'title' ||
120 …$strName eq 'summary' || $strName eq 'table-cell' || $strName eq 'table-column' || $strName eq 'li…
124 $oOut{name} = $strName;
288 $strName,
305 if ((defined($strName) && $$oDoc{children}[$iIndex]{name} eq $strName) &&
364 my $strName = shift;
431 $strName,
653 $strName,
700 $strName,
[all …]
/dports/security/keepass/KeePass-2.49-Source/KeePass/Util/
H A DGlobalMutexPool.cs54 return CreateMutexWin(strName, bInitiallyOwned); in CreateMutex()
56 return CreateMutexUnix(strName, bInitiallyOwned); in CreateMutex()
79 string strPath = GetMutexPath(strName); in CreateMutexUnix()
104 ReleaseMutexUnix(strName); in CreateMutexUnix()
128 public static bool ReleaseMutex(string strName) in ReleaseMutex() argument
131 return ReleaseMutexWin(strName); in ReleaseMutex()
133 return ReleaseMutexUnix(strName); in ReleaseMutex()
136 private static bool ReleaseMutexWin(string strName) in ReleaseMutexWin() argument
156 private static bool ReleaseMutexUnix(string strName) in ReleaseMutexUnix() argument
216 private static string GetMutexPath(string strName) in GetMutexPath() argument
[all …]
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/channels/
H A DPVRChannel.cpp342 if (strName.empty()) in SetChannelName()
439 strName = "EuroDec"; in GetEncryptionName()
445 strName = "Irdeto"; in GetEncryptionName()
451 strName = "Conax"; in GetEncryptionName()
457 strName = "PowerVu"; in GetEncryptionName()
459 strName = "RAS"; in GetEncryptionName()
472 strName = "BISS"; in GetEncryptionName()
474 strName = "CryptOn"; in GetEncryptionName()
480 strName = "EasyCas"; in GetEncryptionName()
499 strName = "KeyFly"; in GetEncryptionName()
[all …]
/dports/databases/pgbackrest/pgbackrest-release-2.35/test/lib/pgBackRestTest/Env/
H A DManifest.pm659 foreach my $strName (@{$stryFileList})
831 foreach my $strName (sort(CORE::keys(%{$hManifest})))
835 if ($strName ne '.')
854 $strFile .= "/${strName}";
868 next if $strName =~ ('(^|\/)' . DB_FILE_PREFIX_TMP);
918 my $strDir = dirname($strName);
925 my $strBaseName = basename($strName);
992 my $cType = $hManifest->{$strName}{type};
1018 if ($hManifest->{$strName}{type} ne 'l')
1036 if (defined($hManifest->{$strName}{user}))
[all …]
/dports/games/openbor4432/openbor-ba1eb4f/engine/xbox/common/include/
H A Dxbresource.h33 CHAR* strName; member
82 VOID* GetData( const CHAR* strName ) const;
84 LPDIRECT3DRESOURCE8 GetResource( const CHAR* strName ) const in GetResource() argument
85 { return (LPDIRECT3DRESOURCE8)GetData( strName ); } in GetResource()
87 LPDIRECT3DTEXTURE8 GetTexture( const CHAR* strName ) const in GetTexture() argument
88 { return (LPDIRECT3DTEXTURE8)GetResource( strName ); } in GetTexture()
90 LPDIRECT3DCUBETEXTURE8 GetCubemap( const CHAR* strName ) const in GetCubemap() argument
91 { return (LPDIRECT3DCUBETEXTURE8)GetResource( strName ); } in GetCubemap()
94 { return (LPDIRECT3DVOLUMETEXTURE8)GetResource( strName ); } in GetVolumeTexture()
96 LPDIRECT3DVERTEXBUFFER8 GetVertexBuffer( const CHAR* strName ) const in GetVertexBuffer() argument
[all …]
/dports/games/openbor3979/openbor-2bcf25b/engine/xbox/common/include/
H A Dxbresource.h33 CHAR* strName; member
82 VOID* GetData( const CHAR* strName ) const;
84 LPDIRECT3DRESOURCE8 GetResource( const CHAR* strName ) const in GetResource() argument
85 { return (LPDIRECT3DRESOURCE8)GetData( strName ); } in GetResource()
87 LPDIRECT3DTEXTURE8 GetTexture( const CHAR* strName ) const in GetTexture() argument
88 { return (LPDIRECT3DTEXTURE8)GetResource( strName ); } in GetTexture()
90 LPDIRECT3DCUBETEXTURE8 GetCubemap( const CHAR* strName ) const in GetCubemap() argument
91 { return (LPDIRECT3DCUBETEXTURE8)GetResource( strName ); } in GetCubemap()
94 { return (LPDIRECT3DVOLUMETEXTURE8)GetResource( strName ); } in GetVolumeTexture()
96 LPDIRECT3DVERTEXBUFFER8 GetVertexBuffer( const CHAR* strName ) const in GetVertexBuffer() argument
[all …]
/dports/games/openbor3711/openbor-6ec17fa/engine/xbox/common/include/
H A Dxbresource.h33 CHAR* strName; member
82 VOID* GetData( const CHAR* strName ) const;
84 LPDIRECT3DRESOURCE8 GetResource( const CHAR* strName ) const in GetResource() argument
85 { return (LPDIRECT3DRESOURCE8)GetData( strName ); } in GetResource()
87 LPDIRECT3DTEXTURE8 GetTexture( const CHAR* strName ) const in GetTexture() argument
88 { return (LPDIRECT3DTEXTURE8)GetResource( strName ); } in GetTexture()
90 LPDIRECT3DCUBETEXTURE8 GetCubemap( const CHAR* strName ) const in GetCubemap() argument
91 { return (LPDIRECT3DCUBETEXTURE8)GetResource( strName ); } in GetCubemap()
94 { return (LPDIRECT3DVOLUMETEXTURE8)GetResource( strName ); } in GetVolumeTexture()
96 LPDIRECT3DVERTEXBUFFER8 GetVertexBuffer( const CHAR* strName ) const in GetVertexBuffer() argument
[all …]
/dports/games/openbor3482/openbor-2c1ecd7/engine/xbox/common/include/
H A Dxbresource.h33 CHAR* strName; member
82 VOID* GetData( const CHAR* strName ) const;
84 LPDIRECT3DRESOURCE8 GetResource( const CHAR* strName ) const in GetResource() argument
85 { return (LPDIRECT3DRESOURCE8)GetData( strName ); } in GetResource()
87 LPDIRECT3DTEXTURE8 GetTexture( const CHAR* strName ) const in GetTexture() argument
88 { return (LPDIRECT3DTEXTURE8)GetResource( strName ); } in GetTexture()
90 LPDIRECT3DCUBETEXTURE8 GetCubemap( const CHAR* strName ) const in GetCubemap() argument
91 { return (LPDIRECT3DCUBETEXTURE8)GetResource( strName ); } in GetCubemap()
94 { return (LPDIRECT3DVOLUMETEXTURE8)GetResource( strName ); } in GetVolumeTexture()
96 LPDIRECT3DVERTEXBUFFER8 GetVertexBuffer( const CHAR* strName ) const in GetVertexBuffer() argument
[all …]
/dports/games/openbor/openbor-3caaddd5/engine/xbox/common/include/
H A Dxbresource.h33 CHAR* strName; member
82 VOID* GetData( const CHAR* strName ) const;
84 LPDIRECT3DRESOURCE8 GetResource( const CHAR* strName ) const in GetResource() argument
85 { return (LPDIRECT3DRESOURCE8)GetData( strName ); } in GetResource()
87 LPDIRECT3DTEXTURE8 GetTexture( const CHAR* strName ) const in GetTexture() argument
88 { return (LPDIRECT3DTEXTURE8)GetResource( strName ); } in GetTexture()
90 LPDIRECT3DCUBETEXTURE8 GetCubemap( const CHAR* strName ) const in GetCubemap() argument
91 { return (LPDIRECT3DCUBETEXTURE8)GetResource( strName ); } in GetCubemap()
94 { return (LPDIRECT3DVOLUMETEXTURE8)GetResource( strName ); } in GetVolumeTexture()
96 LPDIRECT3DVERTEXBUFFER8 GetVertexBuffer( const CHAR* strName ) const in GetVertexBuffer() argument
[all …]
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/filesystem/MusicDatabaseDirectory/
H A DDirectoryNode.cpp39 m_strName=strName; in CDirectoryNode()
110 return new CDirectoryNodeRoot(strName, pParent); in CreateNode()
112 return new CDirectoryNodeOverview(strName, pParent); in CreateNode()
119 return new CDirectoryNodeDiscs(strName, pParent); in CreateNode()
121 return new CDirectoryNodeArtist(strName, pParent); in CreateNode()
123 return new CDirectoryNodeAlbum(strName, pParent); in CreateNode()
125 return new CDirectoryNodeSong(strName, pParent); in CreateNode()
127 return new CDirectoryNodeSingles(strName, pParent); in CreateNode()
129 return new CDirectoryNodeTop100(strName, pParent); in CreateNode()
131 return new CDirectoryNodeAlbumTop100(strName, pParent); in CreateNode()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml.Linq/tests/xNodeReader/
H A DCXMLReaderAttrTest.cs244 string strName; in ThisWithName1()
257 string strName; in ThisWithName2()
270 string strName; in ThisWithName3()
283 string strName; in ThisWithName4()
296 string strName; in ThisWithName5()
309 string strName; in ThisWithName6()
323 string strName; in ThisWithName7()
338 string strName; in ThisWithName8()
352 string strName; in ThisWithName9()
634 if (DataReader.GetAttribute(strName) == DataReader[strName, strNamespace]) in GetAttributeWithName5()
[all …]
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/filesystem/VideoDatabaseDirectory/
H A DDirectoryNode.cpp38 m_strName = strName; in CDirectoryNode()
95 return new CDirectoryNodeRoot(strName, pParent); in CreateNode()
97 return new CDirectoryNodeOverview(strName, pParent); in CreateNode()
107 return new CDirectoryNodeGrouped(Type, strName, pParent); in CreateNode()
109 return new CDirectoryNodeTitleMovies(strName, pParent); in CreateNode()
111 return new CDirectoryNodeTitleTvShows(strName, pParent); in CreateNode()
113 return new CDirectoryNodeMoviesOverview(strName, pParent); in CreateNode()
115 return new CDirectoryNodeTvShowsOverview(strName, pParent); in CreateNode()
117 return new CDirectoryNodeSeasons(strName, pParent); in CreateNode()
119 return new CDirectoryNodeEpisodes(strName, pParent); in CreateNode()
[all …]
/dports/multimedia/kodi-addon-peripheral.joystick/peripheral.joystick-1.7.1-Matrix/src/settings/
H A DSettings.cpp36 void CSettings::SetSetting(const std::string& strName, const kodi::CSettingValue& value) in SetSetting() argument
38 if (strName == SETTING_RETROARCH_CONFIG) in SetSetting()
43 else if (strName == SETTING_LINUX_DRIVER || in SetSetting()
44 strName == SETTING_SDL_DRIVER || in SetSetting()
45 strName == SETTING_OSX_DRIVER) in SetSetting()
49 if (strName == SETTING_LINUX_DRIVER) in SetSetting()
57 else if (strName == SETTING_SDL_DRIVER) in SetSetting()
66 else if (strName == SETTING_OSX_DRIVER) in SetSetting()
86 else if (strName == SETTING_XINPUT_DRIVER) in SetSetting()
92 else if (strName == SETTING_DIRECTINPUT_DRIVER) in SetSetting()
/dports/security/keepass/KeePass-2.49-Source/KeePass/DataExchange/Formats/
H A DEnpassTxt5.cs72 string strName = PwDefs.TitleField; in Import()
95 strName = PwDefs.TitleField; in Import()
97 else if(strName == PwDefs.NotesField) in Import()
102 if(string.IsNullOrEmpty(strName)) in Import()
104 strName = strCurName; in Import()
105 if(string.IsNullOrEmpty(strName)) in Import()
108 strName = PwDefs.NotesField; in Import()
120 ImportUtil.AppendToField(pe, strName, strValue, pwStorage); in Import()
121 else if(strName == PwDefs.NotesField) in Import()
123 ProtectedString ps = pe.Strings.GetSafe(strName); in Import()
[all …]
H A DPwSaverXml412.cs161 string strName = null; in ImportField()
168 strName = XmlUtil.SafeInnerText(xmlChild); in ImportField()
178 if((strName == "Control Panel") || (strName == "Webmail Interface")) in ImportField()
180 else if(strName == "FTP Address") in ImportField()
181 strF = strName; in ImportField()
182 else if(strName == "FTP Username") in ImportField()
184 else if(strName == "FTP Password") in ImportField()
185 strF = strName; in ImportField()
187 if(string.IsNullOrEmpty(strF)) strF = strName; in ImportField()
193 private static PwIcon GetIcon(string strName) in GetIcon() argument
[all …]
/dports/security/keepass/KeePass-2.49-Source/KeePass/UI/
H A DUISystemFonts.cs164 string strName = strDef.Substring(0, iSep); in GnomeCreateFont()
170 if(strName.EndsWith(" Oblique", StrUtil.CaseIgnoreCmp)) // Gnome in GnomeCreateFont()
173 strName = strName.Substring(0, strName.Length - 8); in GnomeCreateFont()
175 if(strName.EndsWith(" Italic", StrUtil.CaseIgnoreCmp)) // Ubuntu in GnomeCreateFont()
178 strName = strName.Substring(0, strName.Length - 7); in GnomeCreateFont()
180 if(strName.EndsWith(" Bold", StrUtil.CaseIgnoreCmp)) in GnomeCreateFont()
183 strName = strName.Substring(0, strName.Length - 5); in GnomeCreateFont()
186 return FontUtil.CreateFont(strName, fSize, fs); in GnomeCreateFont()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/tests/XmlReaderLib/
H A DCXMLReaderAttrTest.cs369 string strName; in ThisWithName1()
383 string strName; in ThisWithName2()
397 string strName; in ThisWithName3()
411 string strName; in ThisWithName4()
426 string strName; in ThisWithName5()
445 string strName; in ThisWithName6()
460 string strName; in ThisWithName7()
476 string strName; in ThisWithName8()
492 string strName; in ThisWithName9()
508 string strName; in ThisWithName10()
[all …]
/dports/emulators/bochs/bochs-2.7/misc/
H A Dniclist.c50 LPSTR strName; member
80 LPSTR strName, strDesc; in main() local
162 strName=(LPSTR)AdapterInfo; in main()
166 while ((*strName)) in main()
169 ni9X[nAdapterCount].strName=strName; in main()
170 strName += lstrlen(strName) +1; in main()
174 strDesc = (LPSTR)++strName; in main()
185 printf(" Device: %s",ni9X[i].strName); in main()
190 …rintf("ne2k: ioaddr=0x300, irq=3, mac=b0:c4:20:00:00:00, ethmod=win32, ethdev=%s",ni9X[0].strName); in main()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/SpellChecker/wxspellchecker/include/
H A DSpellCheckEngineOption.h37 SpellCheckEngineOption(wxString strName);
38 SpellCheckEngineOption(wxString strName, wxString strText);
39 …SpellCheckEngineOption(wxString strName, wxString strText, wxString strValue, int nType = SpellChe…
40 SpellCheckEngineOption(wxString strName, wxString strText, long nValue);
41 SpellCheckEngineOption(wxString strName, wxString strText, double dblValue);
42 SpellCheckEngineOption(wxString strName, wxString strText, bool bValue);
44 …void SetName(wxString strName) { m_strOptionName = strName; if (m_strDialogText.IsEmpty()) m_strDi… in SetName() argument
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/osl/
H A Dpipe.hxx40 inline Pipe::Pipe(const ::rtl::OUString& strName, oslPipeOptions Options ) in Pipe() argument
41 : m_handle( osl_createPipe( strName.pData, Options , NULL ) ) in Pipe()
45 …inline Pipe::Pipe(const ::rtl::OUString& strName, oslPipeOptions Options,const Security & rSecurit… in Pipe() argument
46 : m_handle( osl_createPipe( strName.pData, Options , rSecurity.getHandle() ) ) in Pipe()
83 inline bool Pipe::create( const ::rtl::OUString & strName, in create() argument
86 *this = Pipe( strName, Options, rSec ); in create()
91 inline bool Pipe::create( const ::rtl::OUString & strName, oslPipeOptions Options ) in create() argument
93 *this = Pipe( strName, Options ); in create()
185 : Pipe( strName, Options , rSec ) in StreamPipe()
189 inline StreamPipe::StreamPipe(const ::rtl::OUString& strName, oslPipeOptions Options ) in StreamPipe() argument
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/osl/
H A Dpipe.hxx36 inline Pipe::Pipe(const ::rtl::OUString& strName, oslPipeOptions Options ) in Pipe() argument
37 : m_handle( osl_createPipe( strName.pData, Options , NULL ) ) in Pipe()
41 …inline Pipe::Pipe(const ::rtl::OUString& strName, oslPipeOptions Options,const Security & rSecurit… in Pipe() argument
42 : m_handle( osl_createPipe( strName.pData, Options , rSecurity.getHandle() ) ) in Pipe()
79 inline bool Pipe::create( const ::rtl::OUString & strName, in create() argument
82 *this = Pipe( strName, Options, rSec ); in create()
87 inline bool Pipe::create( const ::rtl::OUString & strName, oslPipeOptions Options ) in create() argument
89 *this = Pipe( strName, Options ); in create()
181 : Pipe( strName, Options , rSec ) in StreamPipe()
185 inline StreamPipe::StreamPipe(const ::rtl::OUString& strName, oslPipeOptions Options ) in StreamPipe() argument
[all …]
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/SpellChecker/wxspellchecker/src/
H A DSpellCheckEngineOption.cpp17 SpellCheckEngineOption::SpellCheckEngineOption(wxString strName) in SpellCheckEngineOption() argument
19 m_strOptionName = strName; in SpellCheckEngineOption()
20 m_strDialogText = strName; in SpellCheckEngineOption()
27 SpellCheckEngineOption::SpellCheckEngineOption(wxString strName, wxString strText) in SpellCheckEngineOption() argument
29 m_strOptionName = strName; in SpellCheckEngineOption()
39 m_strOptionName = strName; in SpellCheckEngineOption()
66 SpellCheckEngineOption::SpellCheckEngineOption(wxString strName, wxString strText, long nValue) in SpellCheckEngineOption() argument
68 m_strOptionName = strName; in SpellCheckEngineOption()
80 m_strOptionName = strName; in SpellCheckEngineOption()
90 SpellCheckEngineOption::SpellCheckEngineOption(wxString strName, wxString strText, bool bValue) in SpellCheckEngineOption() argument
[all …]

12345678910>>...53