Home
last modified time | relevance | path

Searched refs:ConfigurationMethod (Results 1 – 7 of 7) sorted by relevance

/external/testng/src/main/java/org/testng/
DTestClass.java5 import org.testng.internal.ConfigurationMethod;
130 m_beforeSuiteMethods = ConfigurationMethod in initMethods()
135 m_afterSuiteMethods = ConfigurationMethod in initMethods()
140 m_beforeTestConfMethods = ConfigurationMethod in initMethods()
145 m_afterTestConfMethods = ConfigurationMethod in initMethods()
150 m_beforeClassMethods = ConfigurationMethod in initMethods()
155 m_afterClassMethods = ConfigurationMethod in initMethods()
160 m_beforeGroupsMethods = ConfigurationMethod in initMethods()
165 m_afterGroupsMethods = ConfigurationMethod in initMethods()
170 m_beforeTestMethods = ConfigurationMethod in initMethods()
[all …]
/external/testng/src/main/java/org/testng/internal/
DConfigurationMethod.java28 public class ConfigurationMethod extends BaseTestMethod { class
47 private ConfigurationMethod(ConstructorOrMethod com, in ConfigurationMethod() method in ConfigurationMethod
88 public ConfigurationMethod(Method method, in ConfigurationMethod() method in ConfigurationMethod
106 public ConfigurationMethod(ConstructorOrMethod com, in ConfigurationMethod() method in ConfigurationMethod
139 result.add(new ConfigurationMethod(method.getConstructorOrMethod(), in createMethods()
211 result[i] = new ConfigurationMethod(methods[i].getConstructorOrMethod(), in createBeforeConfigurationMethods()
234 result[i] = new ConfigurationMethod(methods[i].getConstructorOrMethod(), in createAfterConfigurationMethods()
412 public ConfigurationMethod clone() { in clone()
413 ConfigurationMethod clone= new ConfigurationMethod(getConstructorOrMethod(), in clone()
DTestNGMethodFinder.java216 ITestNGMethod confMethod = new ConfigurationMethod(new ConstructorOrMethod(method), in addConfigurationMethod()
DInvoker.java760 ConfigurationMethod cm = (ConfigurationMethod) m; in filterConfigurationMethods()
/external/ComputeLibrary/src/gpu/cl/operators/
DClConv2d.cpp198 using ConfigurationMethod = std::pair<ConvolutionConfiguration, ConvolutionMethod>; in get_convolution_method() typedef
200 const std::vector<ConfigurationMethod> known_configs = in get_convolution_method()
203ConfigurationMethod(ConvolutionConfiguration(Size2D(27U, 27U), Size2D(5U, 5U), Size2D(48U, 128U), … in get_convolution_method()
205ConfigurationMethod(ConvolutionConfiguration(Size2D(224U, 224U), Size2D(3U, 3U), Size2D(3U, 64U), … in get_convolution_method()
207ConfigurationMethod(ConvolutionConfiguration(Size2D(224U, 224U), Size2D(3U, 3U), Size2D(3U, 32U), … in get_convolution_method()
209ConfigurationMethod(ConvolutionConfiguration(Size2D(160U, 160U), Size2D(3U, 3U), Size2D(3U, 24U), … in get_convolution_method()
211ConfigurationMethod(ConvolutionConfiguration(Size2D(224U, 224U), Size2D(3U, 3U), Size2D(3U, 32U), … in get_convolution_method()
213ConfigurationMethod(ConvolutionConfiguration(Size2D(160U, 160U), Size2D(3U, 3U), Size2D(3U, 24U), … in get_convolution_method()
216 const auto find_config = [&](ConfigurationMethod c) in get_convolution_method()
227 std::vector<ConfigurationMethod>::const_iterator found; in get_convolution_method()
/external/ComputeLibrary/src/cpu/operators/
DCpuConv2d.cpp138 using ConfigurationMethod = std::pair<ConvolutionConfiguration, ConvolutionMethod>; in get_convolution_method() typedef
140 const std::vector<ConfigurationMethod> known_configs = in get_convolution_method()
143ConfigurationMethod(ConvolutionConfiguration(Size2D(27U, 27U), Size2D(5U, 5U), Size2D(48U, 128U), … in get_convolution_method()
145ConfigurationMethod(ConvolutionConfiguration(Size2D(224U, 224U), Size2D(3U, 3U), Size2D(3U, 64U), … in get_convolution_method()
147ConfigurationMethod(ConvolutionConfiguration(Size2D(224U, 224U), Size2D(3U, 3U), Size2D(3U, 32U), … in get_convolution_method()
149ConfigurationMethod(ConvolutionConfiguration(Size2D(160U, 160U), Size2D(3U, 3U), Size2D(3U, 24U), … in get_convolution_method()
152 const auto find_config = [&](ConfigurationMethod c) in get_convolution_method()
162 std::vector<ConfigurationMethod>::const_iterator found; in get_convolution_method()
/external/testng/
DCHANGES.txt127 Fixed: GITHUB-337: ConfigurationMethod#m_instance set to Boolean.FALSE due to incorrect constructor…