HomeSort by relevance Sort by last modified time
    Searched defs:create (Results 101 - 125 of 4177) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedHashMultiset.java 47 public static <E> LinkedHashMultiset<E> create() { method in class:LinkedHashMultiset
58 public static <E> LinkedHashMultiset<E> create(int distinctElements) { method in class:LinkedHashMultiset
70 public static <E> LinkedHashMultiset<E> create( method in class:LinkedHashMultiset
73 create(Multisets.inferDistinctElements(elements));
TreeMultimap.java 82 TreeMultimap<K, V> create() { method in class:TreeMultimap
94 public static <K, V> TreeMultimap<K, V> create( method in class:TreeMultimap
108 TreeMultimap<K, V> create(Multimap<? extends K, ? extends V> multimap) { method in class:TreeMultimap
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
ReserializingTestSetGenerator.java 41 @Override public Set<E> create(Object... elements) { method in class:ReserializingTestSetGenerator
42 return (Set<E>) super.create(elements);
TestContainerGenerator.java 46 T create(Object ... elements); method in interface:TestContainerGenerator
49 * Helper method to create an array of the appropriate type used by this
TestIntegerSortedSetGenerator.java 26 * Create integer sets for testing collections that are sorted by natural
35 @Override protected abstract SortedSet<Integer> create(Integer[] elements); method in class:TestIntegerSortedSetGenerator
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
TestMultisetGenerator.java 31 Multiset<E> create(Object... elements); method in interface:TestMultisetGenerator
  /external/guava/guava-testlib/src/com/google/common/testing/
ClusterException.java 52 * 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/icu/android_icu4j/src/main/java/android/icu/impl/duration/
PeriodBuilder.java 26 * Create a period of the given duration using the current system
33 Period create(long duration); method in interface:PeriodBuilder
36 * Create a period of the given duration using the provided reference date.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
PeriodBuilder.java 24 * Create a period of the given duration using the current system
31 Period create(long duration); method in interface:PeriodBuilder
34 * Create a period of the given duration using the provided reference date.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
UnlocalizedNumberFormatter.java 63 UnlocalizedNumberFormatter create(int key, Object value) { method in class:UnlocalizedNumberFormatter
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCOFF.cpp 45 llvm::RuntimeDyldCOFF::create(Triple::ArchType Arch, function in class:llvm::llvm::RuntimeDyldCOFF
  /external/llvm/lib/ProfileData/
InstrProfReader.cpp 35 InstrProfReader::create(const Twine &Path) { function in class:InstrProfReader
40 return InstrProfReader::create(std::move(BufferOrError.get()));
44 InstrProfReader::create(std::unique_ptr<MemoryBuffer> Buffer) { function in class:InstrProfReader
50 // Create the reader.
70 IndexedInstrProfReader::create(const Twine &Path) { function in class:IndexedInstrProfReader
75 return IndexedInstrProfReader::create(std::move(BufferOrError.get()));
80 IndexedInstrProfReader::create(std::unique_ptr<MemoryBuffer> Buffer) { function in class:IndexedInstrProfReader
85 // Create the reader.
303 if (Error E = Symtab.create(StringRef(NamesStart, NamesSize)))
560 HashTable.reset(HashTableImpl::Create(
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
RequestBody.java 46 public static RequestBody create(MediaType contentType, String content) { method in class:RequestBody
56 return create(contentType, bytes);
60 public static RequestBody create(final MediaType contentType, final ByteString content) { method in class:RequestBody
77 public static RequestBody create(final MediaType contentType, final byte[] content) {
78 return create(contentType, content, 0, content.length);
82 public static RequestBody create(final MediaType contentType, final byte[] content,
102 public static RequestBody create(final MediaType contentType, final File file) {
  /external/proguard/src/proguard/classfile/instruction/
InstructionFactory.java 24 * This class provides methods to create and reuse Instruction objects.
34 public static Instruction create(byte[] code, int offset) method in class:InstructionFactory
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowSharedMemoryTest.java 20 public void create() throws Exception { method in class:ShadowSharedMemoryTest
21 SharedMemory sharedMemory = SharedMemory.create("foo", 4);
28 SharedMemory sharedMemory = SharedMemory.create("foo", 4);
35 SharedMemory sharedMemory = SharedMemory.create("foo", 4);
  /external/roboto-fonts/
Android.mk 21 # create symlink for given font
24 define create-font-symlink
56 $(eval $(call create-font-symlink,Roboto-Black.ttf,Roboto-Bold.ttf))
57 $(eval $(call create-font-symlink,Roboto-BlackItalic.ttf,Roboto-BoldItalic.ttf))
58 $(eval $(call create-font-symlink,Roboto-Light.ttf,Roboto-Regular.ttf))
59 $(eval $(call create-font-symlink,Roboto-LightItalic.ttf,Roboto-Italic.ttf))
60 $(eval $(call create-font-symlink,Roboto-Medium.ttf,Roboto-Regular.ttf))
61 $(eval $(call create-font-symlink,Roboto-MediumItalic.ttf,Roboto-Italic.ttf))
62 $(eval $(call create-font-symlink,Roboto-Thin.ttf,Roboto-Regular.ttf))
63 $(eval $(call create-font-symlink,Roboto-ThinItalic.ttf,Roboto-Italic.ttf)
    [all...]
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/core/
Constant.java 36 * Create a constant from a Java object.
39 * org.tensorflow.Tensor#create(Object)}, so only Objects supported by this method must be
43 * Constant.create(scope, 7); // returns a constant scalar tensor 7
48 * @see org.tensorflow.Tensor#create(Object) Tensor.create
50 public static <T> Constant<T> create(Scope scope, Object object, Class<T> type) { method in class:Constant
51 try (Tensor<T> value = Tensor.create(object, type)) {
57 * Create a {@link DataType#INT32} constant with data from the given buffer.
69 public static Constant<Integer> create(Scope scope, long[] shape, IntBuffer data) { method in class:Constant
70 try (Tensor<Integer> value = Tensor.create(shape, data))
88 public static Constant<Float> create(Scope scope, long[] shape, FloatBuffer data) { method in class:Constant
107 public static Constant<Double> create(Scope scope, long[] shape, DoubleBuffer data) { method in class:Constant
126 public static Constant<Long> create(Scope scope, long[] shape, LongBuffer data) { method in class:Constant
147 public static <T> Constant<T> create(Scope scope, Class<T> type, long[] shape, ByteBuffer data) { method in class:Constant
    [all...]
  /frameworks/base/core/java/android/util/
Pair.java 79 public static <A, B> Pair <A, B> create(A a, B b) { method in class:Pair
  /frameworks/base/location/lib/java/com/android/location/provider/
ProviderPropertiesUnbundled.java 31 public static ProviderPropertiesUnbundled create(boolean requiresNetwork, method in class:ProviderPropertiesUnbundled
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
WifiTrackerFactory.java 35 public static WifiTracker create( method in class:WifiTrackerFactory
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
AbstractAsset.java 69 public static AbstractAsset create(String assetJson) method in class:AbstractAsset
74 return AssetFactory.create(JsonParser.parse(reader));
AssetFactory.java 22 * Factory to create asset from JSON string.
35 public static AbstractAsset create(JSONObject asset) method in class:AssetFactory
44 return WebAsset.create(asset);
46 return AndroidAppAsset.create(asset);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameBuffer2D.java 29 static FrameBuffer2D create(BackingStore backingStore) { method in class:FrameBuffer2D
  /frameworks/base/tools/aapt2/compile/
XmlIdCollector.cpp 44 bool create = false; variable
45 if (ResourceUtils::ParseReference(attr.value, &name, &create, nullptr)) {
46 if (create && name.type == ResourceType::kId) {
  /frameworks/compile/mclinker/lib/LD/
StubFactory.cpp 39 /// create - create a stub if needed, otherwise return NULL
40 Stub* StubFactory::create(Relocation& pReloc, function in class:mcld::StubFactory
66 // create a stub from the prototype
80 Stub* StubFactory::create(FragmentRef& pFragRef, function in class:mcld::StubFactory
93 // create a stub from the prototype

Completed in 541 milliseconds

1 2 3 45 6 7 8 91011>>