Searched refs:create (Results 276 - 300 of 2457) sorted by relevance

<<11121314151617181920>>

/external/vboot_reference/tests/futility/
H A Dtest_create.sh18 ${FUTILITY} --vb1 create --hash_alg "${hash}" \
28 # Demonstrate that we can create some vb21 keypairs. This doesn't prove
32 ${FUTILITY} --vb21 create --hash_alg "${hash}" \
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DVideoCapturer.java37 public static VideoCapturer create(String deviceName) { method in class:VideoCapturer
/external/autotest/contrib/
H A Dmove_cq_hosts.sh27 ./cli/atest label create --web=$TO_HOST $1
31 ./cli/atest label create -t --web=$TO_HOST $1
35 ./cli/atest host create --web=$TO_HOST -b $2 $1
/external/autotest/frontend/afe/
H A Dfrontend_test_utils.py15 models.DroneSet.objects.create(
18 acl_group = models.AclGroup.objects.create(name='my_acl')
21 self.hosts = [models.Host.objects.create(hostname=hostname)
29 self.labels = [models.Label.objects.create(name=name) for name in
33 platform = models.Label.objects.create(name='myplatform', platform=True)
40 self.labels.append(models.Label.objects.create(name='static'))
41 self.replaced_labels = [models.ReplacedLabel.objects.create(
78 # Get or create the reference object in afe_host_attributes.
130 job = models.Job.objects.create(
144 models.HostQueueEntry.objects.create(jo
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
H A DNat384.java15 int[] dx = Nat192.create(), dy = Nat192.create();
34 int[] dx = Nat192.create();
H A DNat512.java15 int[] dx = Nat256.create(), dy = Nat256.create();
34 int[] dx = Nat256.create();
/external/dagger2/core/src/test/java/dagger/internal/
H A DScopedProviderTest.java34 ScopedProvider.create(null);
41 Provider<Object> scopedProvider = ScopedProvider.create(new Factory<Object>() {
54 Provider<Integer> scopedProvider = ScopedProvider.create(new Factory<Integer>() {
/external/desugar/test/java/com/google/devtools/build/android/desugar/
H A DFrameInfoTest.java32 FrameInfo info = FrameInfo.create(ImmutableList.of(), ImmutableList.of());
38 FrameInfo.create(ImmutableList.of(InferredType.INT), ImmutableList.of(InferredType.BYTE));
44 FrameInfo.create(
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DISimpleElement.java28 public static ISimpleElement create (final Tag tag) method in class:ISimpleElement.Factory
30 return new SimpleElementImpl (tag, AttributeSet.create ());
33 public static ISimpleElement create (final Tag tag, final AttributeSet attrs) method in class:ISimpleElement.Factory
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEnumHashBiMap.java52 create(Class<K> keyType) { method in class:EnumHashBiMap
67 create(Map<K, ? extends V> map) { method in class:EnumHashBiMap
68 EnumHashBiMap<K, V> bimap = create(EnumBiMap.inferKeyType(map));
H A DHashMultimap.java55 public static <K, V> HashMultimap<K, V> create() { method in class:HashMultimap
68 public static <K, V> HashMultimap<K, V> create( method in class:HashMultimap
80 public static <K, V> HashMultimap<K, V> create( method in class:HashMultimap
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestStringMapGenerator.java49 public Map<String, String> create(Object... entries) { method in class:TestStringMapGenerator
58 return create(array);
61 protected abstract Map<String, String> create( method in class:TestStringMapGenerator
H A DTestStringSortedMapGenerator.java61 protected abstract SortedMap<String, String> create(Entry<String, String>[] entries); method in class:TestStringSortedMapGenerator
64 public SortedMap<String, String> create(Object... entries) { method in class:TestStringSortedMapGenerator
65 return (SortedMap<String, String>) super.create(entries);
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DTestEnumMultisetGenerator.java43 public Multiset<AnEnum> create(Object... elements) { method in class:TestEnumMultisetGenerator
49 return create(array);
52 protected abstract Multiset<AnEnum> create(AnEnum[] elements); method in class:TestEnumMultisetGenerator
/external/guava/guava-testlib/src/com/google/common/testing/
H A DClusterException.java52 * throw ClusterException.create(exceptions);
57 * <p>See semantic details at {@link #create(Collection)}.
76 * @see #create(Collection)
78 public static RuntimeException create(Throwable... exceptions) { method in class:ClusterException
83 return create(temp);
107 public static RuntimeException create(Collection<? extends Throwable> exceptions) { method in class:ClusterException
110 "Can't create an ExceptionCollection with no exceptions");
/external/guava/guava-tests/test/com/google/common/collect/
H A DNewCustomTableTest.java35 @Override protected Table<String, Integer, Character> create( method in class:NewCustomTableTest
53 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c');
58 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c');
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCExpr.h36 static const ARMMCExpr *create(VariantKind Kind, const MCExpr *Expr,
40 return create(VK_ARM_HI16, Expr, Ctx);
44 return create(VK_ARM_LO16, Expr, Ctx);
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
H A DServerSocketFactoryTest.java68 ss = this.getServerSocketFactory().create();
83 ss = ssFactory.create();
93 public ServerSocket create() { method in class:ServerSocketFactoryTest.TestFactory
/external/python/cpython2/Demo/threads/
H A Dfcmp.py16 f = co.create(fringe, co, list)
31 co1 = Coroutine(); f1 = co1.create(fringe, co1, l1)
32 co2 = Coroutine(); f2 = co2.create(fringe, co2, l2)
/external/testng/src/main/java/org/testng/internal/
H A DTestNGMethodFinder.java113 boolean create = false;
127 create = configuration.getBeforeSuite();
131 create = configuration.getAfterSuite();
135 create = configuration.getBeforeTest();
139 create = configuration.getAfterTest();
143 create = configuration.getBeforeTestClass();
147 create = configuration.getAfterTestClass();
151 create = configuration.getBeforeTestMethod();
155 create = configuration.getAfterTestMethod();
160 create
[all...]
/external/testng/src/test/java/test/alwaysrun/
H A DAlwaysRunTest.java17 TestNG testng = create();
28 TestNG testng = create();
39 TestNG testng = create();
/external/testng/src/test/java/test/factory/
H A DFactoryIntegrationTest.java17 TestNG tng = create(GitHub876Sample.class);
28 TestNG tng = create(NonPublicFactoryMethodSample.class);
39 TestNG tng = create(BadFactoryMethodReturnTypeSample.class);
/external/testng/src/test/java/test/serviceloader/
H A DServiceLoaderTest.java18 TestNG tng = create(ServiceLoaderSampleTest.class);
35 TestNG tng = create(ServiceLoaderSampleTest.class);
43 TestNG tng = create(ServiceLoaderSampleTest.class);
/external/turbine/javatests/com/google/turbine/diag/
H A DLineMapTest.java31 LineMap map = LineMap.create(input);
46 LineMap map = LineMap.create(cr);
56 LineMap map = LineMap.create(cr);
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
H A DPool.java13 protected abstract T create(); method in class:Pool
23 obj = objects.isEmpty() ? create() : objects.remove(0);
25 if (obj == null) obj = create();

Completed in 3482 milliseconds

<<11121314151617181920>>