Home
last modified time | relevance | path

Searched refs:CodeBase (Results 1 – 25 of 319) sorted by relevance

12345678910>>...13

/dports/devel/upp/upp/uppsrc/ide/
H A DCpp.cpp18 return ResolveTParam(CodeBase(), type, tparam); in ResolveTParam()
24 return ResolveTParam(CodeBase(), type, tparam); in ResolveTParam()
30 return Qualify(CodeBase(), scope, type, usings); in Qualify()
50 String t = Qualify(CodeBase(), scope, type, usings); in Context()
66 return GetExpressionType(CodeBase(), parser, xp); in EvaluateExpressionType()
91 int q = CodeBase().Find(ntp); in GatherItems()
94 q = CodeBase().Find(ntp); in GatherItems()
101 for(int i = 0; i < CodeBase().GetCount(); i++) { in GatherItems()
102 String nest = CodeBase().GetKey(i); in GatherItems()
106 Array<CppItem>& n = CodeBase()[i]; in GatherItems()
[all …]
H A DContextGoto.cpp22 if(CodeBase().Find(nn) >= 0) { // Console -> LineEdit::EditPos in GetIdScope()
26 int q = CodeBase().Find(n); in GetIdScope()
29 const Array<CppItem>& m = CodeBase()[q]; in GetIdScope()
266 ScopeInfo f(CodeBase(), t); // Try base classes too! in ContextGoto0()
286 if(CodeBase().Find(h) >= 0) { in ContextGoto0()
302 if(CodeBase().Find(t) >= 0) { // Ctrl::MOUSELEFT in ContextGoto0()
312 ScopeInfo f(CodeBase(), t); // Try base classes too! in ContextGoto0()
326 ScopeInfo f(CodeBase(), t); // Try base classes too! in ContextGoto0()
343 if(CodeBase().Find(tt) >= 0) { in ContextGoto0()
363 q = CodeBase().Find(scope[j]); in ContextGoto0()
[all …]
H A DThisbacks.cpp56 int q = CodeBase().Find(scope); in ThisbacksDlg()
59 const Array<CppItem>& n = CodeBase()[q]; in ThisbacksDlg()
77 int q = CodeBase().Find(ParseTemplatedType(scope, tparam)); in GatherCallbacks()
80 const Array<CppItem>& n = CodeBase()[q]; in GatherCallbacks()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/org/omg/SendingContext/
H A DCodeBaseHelper.java43 public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.SendingContext.CodeBase that) in insert()
51 public static com.sun.org.omg.SendingContext.CodeBase extract (org.omg.CORBA.Any a) in extract()
71 …public static com.sun.org.omg.SendingContext.CodeBase read (org.omg.CORBA.portable.InputStream ist… in read()
76 … write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.SendingContext.CodeBase value) in write()
81 public static com.sun.org.omg.SendingContext.CodeBase narrow (org.omg.CORBA.Object obj) in narrow()
85 else if (obj instanceof com.sun.org.omg.SendingContext.CodeBase) in narrow()
86 return (com.sun.org.omg.SendingContext.CodeBase)obj; in narrow()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/org/omg/SendingContext/
H A DCodeBaseHelper.java43 public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.SendingContext.CodeBase that) in insert()
51 public static com.sun.org.omg.SendingContext.CodeBase extract (org.omg.CORBA.Any a) in extract()
71 …public static com.sun.org.omg.SendingContext.CodeBase read (org.omg.CORBA.portable.InputStream ist… in read()
76 … write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.SendingContext.CodeBase value) in write()
81 public static com.sun.org.omg.SendingContext.CodeBase narrow (org.omg.CORBA.Object obj) in narrow()
85 else if (obj instanceof com.sun.org.omg.SendingContext.CodeBase) in narrow()
86 return (com.sun.org.omg.SendingContext.CodeBase)obj; in narrow()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime/tests/System/Reflection/
H A DAssemblyNameTests.cs27 Assert.Null(n.CodeBase); in Verify_CodeBase()
29 n.CodeBase = System.IO.Directory.GetCurrentDirectory(); in Verify_CodeBase()
30 Assert.NotNull(n.CodeBase); in Verify_CodeBase()
40 n.CodeBase = @"file:///d:/temp/MyAssemblyName1.dll"; in Verify_EscapedCodeBase()
42 Assert.Equal(n.EscapedCodeBase, n.CodeBase); in Verify_EscapedCodeBase()
44 n.CodeBase = @"file:///c:/program files/MyAssemblyName.dll"; in Verify_EscapedCodeBase()
45 Assert.Equal(n.EscapedCodeBase, Uri.EscapeUriString(n.CodeBase)); in Verify_EscapedCodeBase()
/dports/devel/upp/upp/uppsrc/ide/Browser/
H A DBase.cpp54 INITIALIZER(CodeBase) in INITIALIZER() argument
60 CppBase& CodeBase() in CodeBase() function
146 CodeBase().Serialize(s); in SerializeCodeBase()
155 LLOG("Save code base " << CodeBase().GetCount()); in SaveCodeBase()
202 LLOG("LoadCodeBase: " << CodeBase().GetCount()); in LoadCodeBase()
211 Qualify(CodeBase()); in FinishCodeBase()
370 CodeBase().Sweep(keep_file); in UpdateCodeBase2()
427 CodeBase().Append(pick(base)); in ParseSrc()
443 CppBase& base = CodeBase(); in CodeBaseScanFile0()
483 CodeBase().Clear(); in ClearCodeBase()
[all …]
H A DCodeBrowser.cpp82 for(int i = 0; i < CodeBase().GetCount(); i++) { in Load()
83 String s = CodeBase().GetKey(i); in Load()
84 const Array<CppItem>& n = CodeBase()[i]; in Load()
158 int q = CodeBase().Find(type); in GatherMethods()
160 const Array<CppItem>& n = CodeBase()[q]; in GatherMethods()
199 const Array<CppItem>& n = CodeBase()[q]; in LoadScope()
219 for(int q = 0; q < CodeBase().GetCount(); q++) in LoadScope()
222 int q = CodeBase().Find(scope); in LoadScope()
H A DUtil.cpp38 int q = CodeBase().Find(scope); in GetCodeRefItem()
41 const Array<CppItem>& n = CodeBase()[q]; in GetCodeRefItem()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/Reflection/
H A DAssemblyName.cs40 n.CodeBase = CodeBase; in Clone()
124 public string CodeBase { get; set; } property in System.Reflection.AssemblyName
133 if (CodeBase == null)
136 return EscapeCodeBase(CodeBase);
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/security/policy/
H A Dapplicationsecurityinfo.cs112 Url url = new Url(m_context.Identity.CodeBase);
132 …if (String.Compare("file:", 0, m_context.Identity.CodeBase, 0, 5, StringComparison.OrdinalIgnoreCa…
171 Url deploymentUrl = new Url(m_context.Identity.CodeBase);
173 … appEvidence.AddHostEvidence(Zone.CreateFromUrl(m_context.Identity.CodeBase));
174 …if (String.Compare("file:", 0, m_context.Identity.CodeBase, 0, 5, StringComparison.OrdinalIgnoreCa…
175 … appEvidence.AddHostEvidence(Site.CreateFromUrl(m_context.Identity.CodeBase));
/dports/math/reduce/Reduce-svn5758-src/psl/dist/comp/armv6/
H A Darmv6-cross.sl89 CodeBase*
115 (binarywriteblock codeout* CodeBase* s)
145 (putword32 (wplus2 CodeBase* CurrentOffset*) x)
152 (putword32 (wplus2 CodeBase* CurrentOffset*)
153 (iplus2 offset (if *writingfaslfile 0 CodeBase*)))
162 (putword32 (wplus2 CodeBase* CurrentOffset*)
215 (wPlus2 CodeBase* (LabelOffset InfPart)))
225 (putword32 (wPlus2 CodeBase* CurrentOffset*)
228 (putword32 (wPlus2 CodeBase* CurrentOffset*)
257 (setq wrd (wgetv (iplus2 CodeBase* (car (first ForwardInternalReferences*))) 0))
[all …]
/dports/devel/php-ice37/ice-3.7.2/csharp/test/Ice/assemblies/
H A DClient.cs30 … Path.GetFileName(Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase))); in run()
35 … return e.CodeBase.EndsWith(assembly, StringComparison.InvariantCultureIgnoreCase); in run()
43 … return e.CodeBase.EndsWith(assembly, StringComparison.InvariantCultureIgnoreCase); in run()
/dports/devel/ice37/ice-3.7.2/csharp/test/Ice/assemblies/
H A DClient.cs30 … Path.GetFileName(Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase))); in run()
35 … return e.CodeBase.EndsWith(assembly, StringComparison.InvariantCultureIgnoreCase); in run()
43 … return e.CodeBase.EndsWith(assembly, StringComparison.InvariantCultureIgnoreCase); in run()
/dports/devel/py-ice37/ice-3.7.2/csharp/test/Ice/assemblies/
H A DClient.cs30 … Path.GetFileName(Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase))); in run()
35 … return e.CodeBase.EndsWith(assembly, StringComparison.InvariantCultureIgnoreCase); in run()
43 … return e.CodeBase.EndsWith(assembly, StringComparison.InvariantCultureIgnoreCase); in run()
/dports/math/reduce/Reduce-svn5758-src/psl/dist/comp/aarch64/
H A Daarch64-cross.sl75 CodeBase*
101 (binarywriteblock codeout* CodeBase* s)
143 (put_a_halfword (wplus2 CodeBase* CurrentOffset*)
144 (iplus2 offset (if *writingfaslfile 0 CodeBase*)))
153 (put_a_halfword (wplus2 CodeBase* CurrentOffset*)
163 % (printf "Deposit %w at %x -> %x%n" x CurrentOffset* (wplus2 CodeBase* CurrentOffset*))
188 % (wplus2 (wplus2 CodeBase* CurrentOffset*) -4)
189 % (getword32 (wplus2 (wplus2 CodeBase* CurrentOffset*) -8) 0)
190 % (getword32 (wplus2 (wplus2 CodeBase* CurrentOffset*) -4) 0)
191 % (getword32 (wplus2 CodeBase* CurrentOffset*) 0)
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DEncapsInputStream.java30 import com.sun.org.omg.SendingContext.CodeBase;
133 CodeBase codeBase) { in EncapsInputStream()
179 public CodeBase getCodeBase() { in getCodeBase()
183 private CodeBase codeBase;
H A DCachedCodeBase.java29 import com.sun.org.omg.SendingContext.CodeBase;
57 private volatile CodeBase delegate;
61 private static Hashtable<IOR,CodeBase> iorMap = new Hashtable<>();
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DEncapsInputStream.java30 import com.sun.org.omg.SendingContext.CodeBase;
133 CodeBase codeBase) { in EncapsInputStream()
179 public CodeBase getCodeBase() { in getCodeBase()
183 private CodeBase codeBase;
H A DCachedCodeBase.java29 import com.sun.org.omg.SendingContext.CodeBase;
57 private volatile CodeBase delegate;
61 private static Hashtable<IOR,CodeBase> iorMap = new Hashtable<>();
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System/
H A DApplicationIdentityTest.cs42 Assert.IsNull (appid.CodeBase, "CodeBase"); in ApplicationIdentity()
51 Assert.IsNull (appid.CodeBase, "CodeBase"); in ApplicationIdentity_WithCulture()
H A DAppDomainTest.cs2492 aname.CodeBase = assemblyFile; in Load_Manifest_Mismatch()
2511 aname.CodeBase = "whatever"; in Load_Manifest_Mismatch()
2520 aname.CodeBase = assemblyFile; in Load_Manifest_Mismatch()
2525 aname.CodeBase = assemblyFile; in Load_Manifest_Mismatch()
2533 aname.CodeBase = assemblyFile; in Load_Manifest_Mismatch()
2542 aname.CodeBase = assemblyFile; in Load_Manifest_Mismatch()
2549 aname.CodeBase = assemblyFile; in Load_Manifest_Mismatch()
2556 aname.CodeBase = assemblyFile; in Load_Manifest_Mismatch()
2565 aname.CodeBase = assemblyFile; in Load_Manifest_Mismatch()
2626 aname.CodeBase = "whatever"; in Load_Manifest_Mismatch()
[all …]
/dports/devel/py-xdis/xdis-5.0.13/xdis/codetype/
H A Dbase.py24 return inspect.iscode(obj) or isinstance(obj, CodeBase)
38 class CodeBase(object): class
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.Reflection/
H A DAssemblyNameTest.cs175 Assert.IsNull (an.CodeBase, "CodeBase"); in Constructor0()
925 Assert.AreEqual (an.CodeBase, dsAssemblyName.CodeBase, "CodeBase"); in Serialization()
966 Assert.AreEqual (an.CodeBase, dsAssemblyName.CodeBase, "CodeBase"); in Serialization_WithoutStrongName()
1002 Assert.AreEqual (an.CodeBase, clone.CodeBase, "CodeBase"); in Clone_Corlib()
1044 Assert.AreEqual (an.CodeBase, clone.CodeBase, "CodeBase"); in Clone_Self()
1120 Assert.IsNotNull (aname.CodeBase, "#1"); in GetAssemblyName_CodeBase()
1121 Assert.AreEqual (execAssembly.CodeBase, aname.CodeBase, "#2"); in GetAssemblyName_CodeBase()
1141 Assert.IsNull (an.CodeBase, "CodeBase"); in Constructor1_Name()
1169 Assert.IsNull (an.CodeBase, "CodeBase"); in Constructor1_Full()
1252 Assert.IsNull (an.CodeBase, "CodeBase"); in Constructor1_Culture()
[all …]
/dports/www/xsp/xsp-4.5/tools/asp_state/
H A Dasp_state.cs21 return Path.GetFileNameWithoutExtension(Assembly.GetEntryAssembly ().CodeBase);
29 configurationfile = Assembly.GetEntryAssembly ().CodeBase + ".config";

12345678910>>...13