Home
last modified time | relevance | path

Searched refs:delegates (Results 1 – 25 of 3809) sorted by relevance

12345678910>>...153

/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System/
H A DMulticastDelegate.cs109 if (delegates.Length != d.delegates.Length) in Equals()
113 if (!delegates [i].Equals (d.delegates [i])) in Equals()
170 Array.Copy (other.delegates, 0, ret.delegates, 1, other.delegates.Length); in CombineImpl()
174 Array.Copy (delegates, 0, ret.delegates, 0, delegates.Length); in CombineImpl()
177 ret.delegates = new Delegate [delegates.Length + other.delegates.Length]; in CombineImpl()
179 Array.Copy (delegates, 0, ret.delegates, 0, delegates.Length); in CombineImpl()
180 Array.Copy (other.delegates, 0, ret.delegates, delegates.Length, other.delegates.Length); in CombineImpl()
247 Array.Copy (delegates, idx + 1, ret.delegates, idx, delegates.Length - idx - 1); in RemoveImpl()
255 if (delegates.Equals (other.delegates)) in RemoveImpl()
265 ret.delegates = new Delegate [delegates.Length - other.delegates.Length]; in RemoveImpl()
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/automation/src/
H A DAutomationClasses.as32 import mx.automation.delegates.containers.BoxAutomationImpl; BoxAutomationImpl;
33 import mx.automation.delegates.containers.CanvasAutomationImpl; CanvasAutomationImpl;
35 import mx.automation.delegates.containers.FormAutomationImpl; FormAutomationImpl;
37 import mx.automation.delegates.containers.PanelAutomationImpl; PanelAutomationImpl;
40 import mx.automation.delegates.controls.AlertAutomationImpl; AlertAutomationImpl;
42 import mx.automation.delegates.controls.ButtonAutomationImpl; ButtonAutomationImpl;
52 import mx.automation.delegates.controls.LabelAutomationImpl; LabelAutomationImpl;
54 import mx.automation.delegates.controls.ListAutomationImpl; ListAutomationImpl;
58 import mx.automation.delegates.controls.MenuAutomationImpl; MenuAutomationImpl;
62 import mx.automation.delegates.controls.NavBarAutomationImpl; NavBarAutomationImpl;
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/automation_spark/src/
H A DAutomationSparkClasses.as20 import mx.automation.delegates.core.UIFTETextFieldAutomationImpl;UIFTETextFieldAutomationImpl;
25 import spark.automation.delegates.components.SparkButtonAutomationImpl;SparkButtonAutomationImpl;
28 …import spark.automation.delegates.components.SparkCheckBoxAutomationImpl;SparkCheckBoxAutomationIm…
29 …import spark.automation.delegates.components.SparkComboBoxAutomationImpl;SparkComboBoxAutomationIm…
33 import spark.automation.delegates.components.SparkFormAutomationImpl;SparkFormAutomationImpl;
35 import spark.automation.delegates.components.SparkGroupAutomationImpl;SparkGroupAutomationImpl;
36 import spark.automation.delegates.components.SparkImageAutomationImpl;SparkImageAutomationImpl;
37 import spark.automation.delegates.components.SparkLabelAutomationImpl;SparkLabelAutomationImpl;
38 import spark.automation.delegates.components.SparkListAutomationImpl;SparkListAutomationImpl;
41 import spark.automation.delegates.components.SparkPanelAutomationImpl;SparkPanelAutomationImpl;
[all …]
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/pluginsimpl/local/utils/resourcedownloader/
H A DResourceDownloaderAlternateImpl.java60 delegates = _delegates; in ResourceDownloaderAlternateImpl()
64 for (int i=0;i<delegates.length;i++){ in ResourceDownloaderAlternateImpl()
71 max_to_try = delegates.length; in ResourceDownloaderAlternateImpl()
82 delegates = new ResourceDownloader[delegates.length]; in ResourceDownloaderAlternateImpl()
84 for (int i=0;i<delegates.length;i++){ in ResourceDownloaderAlternateImpl()
96 for (int i=0;i<delegates.length;i++){ in getName()
110 if( delegates.length == 0 ){ in getSize()
140 if ( i == delegates.length-1 ){ in getSize()
183 for (int i=0;i<delegates.length;i++){ in setProperty()
195 for (int i=0;i<delegates.length;i++){ in getClone()
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/automation_dmv/src/
H A DAutomationDMVClasses.as38 import mx.automation.delegates.charts.AreaSeriesAutomationImpl; AreaSeriesAutomationImpl;
39 import mx.automation.delegates.charts.AxisRendererAutomationImpl; AxisRendererAutomationImpl;
40 import mx.automation.delegates.charts.BarSeriesAutomationImpl; BarSeriesAutomationImpl;
41 import mx.automation.delegates.charts.BubbleSeriesAutomationImpl; BubbleSeriesAutomationImpl;
43 import mx.automation.delegates.charts.ChartBaseAutomationImpl; ChartBaseAutomationImpl;
46 import mx.automation.delegates.charts.LegendAutomationImpl; LegendAutomationImpl;
47 import mx.automation.delegates.charts.LegendItemAutomationImpl; LegendItemAutomationImpl;
48 import mx.automation.delegates.charts.LineSeriesAutomationImpl; LineSeriesAutomationImpl;
49 import mx.automation.delegates.charts.PieSeriesAutomationImpl; PieSeriesAutomationImpl;
50 import mx.automation.delegates.charts.PlotSeriesAutomationImpl; PlotSeriesAutomationImpl;
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/jms/serializer/src/JMS/Serializer/Exclusion/
H A DDisjunctExclusionStrategy.php21 private $delegates; variable in JMS\\Serializer\\Exclusion\\DisjunctExclusionStrategy
24 * @param ExclusionStrategyInterface[]|SequenceInterface $delegates
26 public function __construct($delegates) argument
28 if (!$delegates instanceof SequenceInterface) {
29 $delegates = new Sequence($delegates);
32 $this->delegates = $delegates;
37 $this->delegates->add($strategy);
49 foreach ($this->delegates as $delegate) {
68 foreach ($this->delegates as $delegate) {
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/launching/
H A DLaunchDelegateTests.java95 ILaunchDelegate[] delegates = type.getDelegates(modes); in testMixedModeDelegate() local
96 assertTrue("missing delegate", delegates.length > 0); //$NON-NLS-1$ in testMixedModeDelegate()
112 ILaunchDelegate[] delegates = type.getDelegates(modes); in testSingleDebugModeDelegate() local
113 assertTrue("missing delegate", delegates.length > 0); //$NON-NLS-1$ in testSingleDebugModeDelegate()
115 for(int i = 0; i < delegates.length; i++) { in testSingleDebugModeDelegate()
135 ILaunchDelegate[] delegates = type.getDelegates(modes); in testSingleAlternateModeDelegate() local
155 ILaunchDelegate[] delegates = type.getDelegates(modes); in testMultipleModeSingleDelegate() local
173 ILaunchDelegate[] delegates = type.getDelegates(modes); in testSingleModeMultipleDelegates() local
175 …ertEquals("Wrong number of delegates, should be 2 only "+delegates.length+" found", 2, delegates.l… in testSingleModeMultipleDelegates()
177 for(int i = 0; i < delegates.length; i++) { in testSingleModeMultipleDelegates()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/
H A DBoundedRegionGroupingProvider.java45 private WALProvider[] delegates; field in BoundedRegionGroupingProvider
53 delegates = new WALProvider[Math.max(1, conf.getInt(NUM_REGION_GROUPS, in init()
55 for (int i = 0; i < delegates.length; i++) { in init()
59 LOG.info("Configured to run with " + delegates.length + " delegate WAL providers."); in init()
64 final WALProvider temp = delegates[counter.getAndIncrement() % delegates.length]; in populateCache()
75 for (WALProvider provider : delegates) { in shutdown()
93 for (WALProvider provider : delegates) { in close()
118 for (int i = 0; i < groupProviders.delegates.length; i++) { in getNumLogFiles()
125 for (int i = 0; i < ((BoundedRegionGroupingProvider)meta).delegates.length; i++) { in getNumLogFiles()
144 for (int i = 0; i < groupProviders.delegates.length; i++) { in getLogFileSize()
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/config/annotation/
H A DWebMvcConfigurerComposite.java43 this.delegates.addAll(configurers); in addWebMvcConfigurers()
48 for (WebMvcConfigurer delegate : delegates) { in addFormatters()
54 for (WebMvcConfigurer delegate : delegates) { in configureMessageConverters()
60 for (WebMvcConfigurer delegate : delegates) { in addArgumentResolvers()
66 for (WebMvcConfigurer delegate : delegates) { in addReturnValueHandlers()
72 for (WebMvcConfigurer delegate : delegates) { in configureHandlerExceptionResolvers()
78 for (WebMvcConfigurer delegate : delegates) { in addInterceptors()
84 for (WebMvcConfigurer delegate : delegates) { in addViewControllers()
90 for (WebMvcConfigurer delegate : delegates) { in addResourceHandlers()
96 for (WebMvcConfigurer delegate : delegates) { in configureDefaultServletHandling()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/java/beans/
H A DEncoder.java70 private static HashMap delegates = new HashMap(); field in Encoder
102 synchronized (delegates) in setupDefaultPersistenceDelegates()
110 delegates.put(Boolean.class, pd); in setupDefaultPersistenceDelegates()
111 delegates.put(Byte.class, pd); in setupDefaultPersistenceDelegates()
112 delegates.put(Short.class, pd); in setupDefaultPersistenceDelegates()
113 delegates.put(Integer.class, pd); in setupDefaultPersistenceDelegates()
114 delegates.put(Long.class, pd); in setupDefaultPersistenceDelegates()
115 delegates.put(Float.class, pd); in setupDefaultPersistenceDelegates()
116 delegates.put(Double.class, pd); in setupDefaultPersistenceDelegates()
231 synchronized (delegates) in setPersistenceDelegate()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/java/beans/
H A DEncoder.java70 private static HashMap delegates = new HashMap(); field in Encoder
102 synchronized (delegates) in setupDefaultPersistenceDelegates()
110 delegates.put(Boolean.class, pd); in setupDefaultPersistenceDelegates()
111 delegates.put(Byte.class, pd); in setupDefaultPersistenceDelegates()
112 delegates.put(Short.class, pd); in setupDefaultPersistenceDelegates()
113 delegates.put(Integer.class, pd); in setupDefaultPersistenceDelegates()
114 delegates.put(Long.class, pd); in setupDefaultPersistenceDelegates()
115 delegates.put(Float.class, pd); in setupDefaultPersistenceDelegates()
116 delegates.put(Double.class, pd); in setupDefaultPersistenceDelegates()
231 synchronized (delegates) in setPersistenceDelegate()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/java/beans/
H A DEncoder.java70 private static HashMap delegates = new HashMap(); field in Encoder
102 synchronized (delegates) in setupDefaultPersistenceDelegates()
110 delegates.put(Boolean.class, pd); in setupDefaultPersistenceDelegates()
111 delegates.put(Byte.class, pd); in setupDefaultPersistenceDelegates()
112 delegates.put(Short.class, pd); in setupDefaultPersistenceDelegates()
113 delegates.put(Integer.class, pd); in setupDefaultPersistenceDelegates()
114 delegates.put(Long.class, pd); in setupDefaultPersistenceDelegates()
115 delegates.put(Float.class, pd); in setupDefaultPersistenceDelegates()
116 delegates.put(Double.class, pd); in setupDefaultPersistenceDelegates()
231 synchronized (delegates) in setPersistenceDelegate()
[all …]
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/java/beans/
H A DEncoder.java70 private static HashMap delegates = new HashMap(); field in Encoder
102 synchronized (delegates) in setupDefaultPersistenceDelegates()
110 delegates.put(Boolean.class, pd); in setupDefaultPersistenceDelegates()
111 delegates.put(Byte.class, pd); in setupDefaultPersistenceDelegates()
112 delegates.put(Short.class, pd); in setupDefaultPersistenceDelegates()
113 delegates.put(Integer.class, pd); in setupDefaultPersistenceDelegates()
114 delegates.put(Long.class, pd); in setupDefaultPersistenceDelegates()
115 delegates.put(Float.class, pd); in setupDefaultPersistenceDelegates()
116 delegates.put(Double.class, pd); in setupDefaultPersistenceDelegates()
231 synchronized (delegates) in setPersistenceDelegate()
[all …]
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/java/beans/
H A DEncoder.java70 private static HashMap delegates = new HashMap(); field in Encoder
102 synchronized (delegates) in setupDefaultPersistenceDelegates()
110 delegates.put(Boolean.class, pd); in setupDefaultPersistenceDelegates()
111 delegates.put(Byte.class, pd); in setupDefaultPersistenceDelegates()
112 delegates.put(Short.class, pd); in setupDefaultPersistenceDelegates()
113 delegates.put(Integer.class, pd); in setupDefaultPersistenceDelegates()
114 delegates.put(Long.class, pd); in setupDefaultPersistenceDelegates()
115 delegates.put(Float.class, pd); in setupDefaultPersistenceDelegates()
116 delegates.put(Double.class, pd); in setupDefaultPersistenceDelegates()
231 synchronized (delegates) in setPersistenceDelegate()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/java/adapter/avro/src/main/java/org/apache/arrow/consumers/
H A DAvroStructConsumer.java33 private final Consumer[] delegates; field in AvroStructConsumer
38 public AvroStructConsumer(StructVector vector, Consumer[] delegates) { in AvroStructConsumer() argument
40 this.delegates = delegates; in AvroStructConsumer()
47 for (int i = 0; i < delegates.length; i++) { in consume()
48 delegates[i].consume(decoder); in consume()
58 AutoCloseables.close(delegates); in close()
63 for (int i = 0; i < delegates.length; i++) { in resetValueVector()
64 delegates[i].resetValueVector(vector.getChildrenFromFields().get(i)); in resetValueVector()
/dports/databases/arrow/apache-arrow-6.0.1/java/adapter/avro/src/main/java/org/apache/arrow/consumers/
H A DAvroStructConsumer.java33 private final Consumer[] delegates; field in AvroStructConsumer
38 public AvroStructConsumer(StructVector vector, Consumer[] delegates) { in AvroStructConsumer() argument
40 this.delegates = delegates; in AvroStructConsumer()
47 for (int i = 0; i < delegates.length; i++) { in consume()
48 delegates[i].consume(decoder); in consume()
58 AutoCloseables.close(delegates); in close()
63 for (int i = 0; i < delegates.length; i++) { in resetValueVector()
64 delegates[i].resetValueVector(vector.getChildrenFromFields().get(i)); in resetValueVector()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/java/adapter/avro/src/main/java/org/apache/arrow/consumers/
H A DAvroStructConsumer.java33 private final Consumer[] delegates; field in AvroStructConsumer
38 public AvroStructConsumer(StructVector vector, Consumer[] delegates) { in AvroStructConsumer() argument
40 this.delegates = delegates; in AvroStructConsumer()
47 for (int i = 0; i < delegates.length; i++) { in consume()
48 delegates[i].consume(decoder); in consume()
58 AutoCloseables.close(delegates); in close()
63 for (int i = 0; i < delegates.length; i++) { in resetValueVector()
64 delegates[i].resetValueVector(vector.getChildrenFromFields().get(i)); in resetValueVector()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/audio_device/ios/objc/
H A DRTCAudioSessionTest.mm102 [delegates addObject:delegate];
103 EXPECT_EQ(i + 1, session.delegates.size());
110 EXPECT_EQ(0u, session.delegates.size());
121 [delegates addObject:delegate];
134 [delegates addObject:delegate];
154 EXPECT_EQ(1u, session.delegates.size());
155 EXPECT_TRUE(session.delegates[0]);
158 EXPECT_FALSE(session.delegates[0]);
163 EXPECT_EQ(1u, session.delegates.size());
164 EXPECT_TRUE(session.delegates[0]);
[all …]
/dports/biology/ugene/ugene-40.1/src/plugins/external_tool_support/src/bwa/
H A DBwaWorker.cpp128 QMap<QString, PropertyDelegate *> delegates; in init() local
254 delegates[MAX_DIFF] = new SpinBoxDelegate(spinMap); in init()
255 delegates[SEED_LENGTH] = new SpinBoxDelegate(spinMap); in init()
256 delegates[MAX_GAP] = new SpinBoxDelegate(spinMap); in init()
257 delegates[BEST_HITS] = new SpinBoxDelegate(spinMap); in init()
259 delegates[INDEL_OFFSET] = new SpinBoxDelegate(spinMap); in init()
260 delegates[LONG_DELETIONS] = new SpinBoxDelegate(spinMap); in init()
263 delegates[NUM_THREADS] = new SpinBoxDelegate(spinMap); in init()
264 delegates[MAX_SEED_DIFF] = new SpinBoxDelegate(spinMap); in init()
277 delegates[INDEX_ALG] = new ComboBoxDelegate(vm); in init()
[all …]
H A DBwaMemWorker.cpp149 QMap<QString, PropertyDelegate *> delegates; in init() local
249 delegates[THREADS] = new SpinBoxDelegate(spinMap); in init()
250 delegates[MIN_SEED] = new SpinBoxDelegate(spinMap); in init()
251 delegates[BAND_WIDTH] = new SpinBoxDelegate(spinMap); in init()
252 delegates[DROPOFF] = new SpinBoxDelegate(spinMap); in init()
256 delegates[MAX_MATE_RESCUES] = new SpinBoxDelegate(spinMap); in init()
257 delegates[MATCH_SCORE] = new SpinBoxDelegate(spinMap); in init()
258 delegates[MISMATCH_PENALTY] = new SpinBoxDelegate(spinMap); in init()
263 delegates[SCORE_THRESHOLD] = new SpinBoxDelegate(spinMap); in init()
270 delegates[INDEX_ALG] = new ComboBoxDelegate(vm); in init()
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/antlr/antlr4/runtime/Java/src/org/antlr/v4/runtime/
H A DProxyErrorListener.java22 private final Collection<? extends ANTLRErrorListener> delegates; field in ProxyErrorListener
24 public ProxyErrorListener(Collection<? extends ANTLRErrorListener> delegates) { in ProxyErrorListener() argument
25 if (delegates == null) { in ProxyErrorListener()
29 this.delegates = delegates; in ProxyErrorListener()
40 for (ANTLRErrorListener listener : delegates) { in syntaxError()
54 for (ANTLRErrorListener listener : delegates) { in reportAmbiguity()
67 for (ANTLRErrorListener listener : delegates) { in reportAttemptingFullContext()
80 for (ANTLRErrorListener listener : delegates) { in reportContextSensitivity()
/dports/devel/py-google-cloud-iam/google-cloud-iam-2.5.1/google/cloud/iam_credentials_v1/services/iam_credentials/
H A Dasync_client.py184 delegates: Sequence[str] = None,
276 if delegates:
277 request.delegates.extend(delegates)
316 delegates: Sequence[str] = None,
404 if delegates:
405 request.delegates.extend(delegates)
442 delegates: Sequence[str] = None,
516 if delegates:
517 request.delegates.extend(delegates)
631 if delegates:
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/JitInterface/src/
H A DCorInfoBase.cs2745 delegates[0] = d0; in GetUnmanagedCallbacks()
2748 delegates[1] = d1; in GetUnmanagedCallbacks()
2751 delegates[2] = d2; in GetUnmanagedCallbacks()
2754 delegates[3] = d3; in GetUnmanagedCallbacks()
2757 delegates[4] = d4; in GetUnmanagedCallbacks()
2760 delegates[5] = d5; in GetUnmanagedCallbacks()
2763 delegates[6] = d6; in GetUnmanagedCallbacks()
2766 delegates[7] = d7; in GetUnmanagedCallbacks()
2769 delegates[8] = d8; in GetUnmanagedCallbacks()
2772 delegates[9] = d9; in GetUnmanagedCallbacks()
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/antlr/antlr4/runtime/CSharp/runtime/CSharp/Antlr4.Runtime/
H A DProxyErrorListener.cs20 private readonly IEnumerable<IAntlrErrorListener<Symbol>> delegates; field in Antlr4.Runtime.ProxyErrorListener
22 public ProxyErrorListener(IEnumerable<IAntlrErrorListener<Symbol>> delegates) in ProxyErrorListener() argument
24 if (delegates == null) in ProxyErrorListener()
28 this.delegates = delegates; in ProxyErrorListener()
35 return delegates;
41 foreach (IAntlrErrorListener<Symbol> listener in delegates) in SyntaxError()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/antlr/antlr4/runtime/Swift/Sources/Antlr4/
H A DProxyErrorListener.swift16 private final var delegates: [ANTLRErrorListener] variable
18 public init(_ delegates: [ANTLRErrorListener]) {
19 self.delegates = delegates
29 for listener in delegates {
42 for listener in delegates {
54 for listener in delegates {
66 for listener in delegates {

12345678910>>...153