HomeSort by relevance Sort by last modified time
    Searched defs:of (Results 26 - 50 of 1403) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableFieldEncodedValue.java 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
47 public static ImmutableFieldEncodedValue of(@Nonnull FieldEncodedValue fieldEncodedValue) { method in class:ImmutableFieldEncodedValue
    [all...]
ImmutableFloatEncodedValue.java 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
44 public static ImmutableFloatEncodedValue of(FloatEncodedValue floatEncodedValue) { method in class:ImmutableFloatEncodedValue
    [all...]
ImmutableIntEncodedValue.java 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
44 public static ImmutableIntEncodedValue of(IntEncodedValue intEncodedValue) { method in class:ImmutableIntEncodedValue
    [all...]
ImmutableLongEncodedValue.java 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
44 public static ImmutableLongEncodedValue of(LongEncodedValue longEncodedValue) { method in class:ImmutableLongEncodedValue
    [all...]
ImmutableMethodEncodedValue.java 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
47 public static ImmutableMethodEncodedValue of(@Nonnull MethodEncodedValue methodEncodedValue) { method in class:ImmutableMethodEncodedValue
    [all...]
ImmutableShortEncodedValue.java 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
44 public static ImmutableShortEncodedValue of(ShortEncodedValue shortEncodedValue) { method in class:ImmutableShortEncodedValue
    [all...]
ImmutableStringEncodedValue.java 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
46 public static ImmutableStringEncodedValue of(@Nonnull StringEncodedValue stringEncodedValue) { method in class:ImmutableStringEncodedValue
    [all...]
ImmutableTypeEncodedValue.java 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
46 public static ImmutableTypeEncodedValue of(@Nonnull TypeEncodedValue typeEncodedValue) { method in class:ImmutableTypeEncodedValue
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
IntPair.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 * Utilities for treating a {@code long} as a pair of {@code int}s
27 public static long of(int first, int second) { method in class:IntPair
  /frameworks/support/lifecycle/extensions/src/main/java/androidx/lifecycle/
ViewModelProviders.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
59 * Creates a {@link ViewModelProvider}, which retains ViewModels while a scope of given
69 public static ViewModelProvider of(@NonNull Fragment fragment) { method in class:ViewModelProviders
70 return of(fragment, null);
74 * Creates a {@link ViewModelProvider}, which retains ViewModels while a scope of given Activity
84 public static ViewModelProvider of(@NonNull FragmentActivity activity) { method in class:ViewModelProviders
85 return of(activity, null);
89 * Creates a {@link ViewModelProvider}, which retains ViewModels while a scope of given
100 public static ViewModelProvider of(@NonNull Fragment fragment, @Nullable Factory factory) method in class:ViewModelProviders
120 public static ViewModelProvider of(@NonNull FragmentActivity activity, method in class:ViewModelProviders
    [all...]
  /libcore/ojluni/src/main/java/java/time/chrono/
HijrahEra.java 6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
29 * However, the following notice accompanied the original version of this
39 * * Redistributions of source code must retain the above copyright notice,
40 * this list of conditions and the following disclaimer.
43 * this list of conditions and the following disclaimer in the documentation
46 * * Neither the name of JSR-310 nor the names of its contributors
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FO
104 public static HijrahEra of(int hijrahEra) { method in class:HijrahEra
    [all...]
IsoEra.java 6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
29 * However, the following notice accompanied the original version of this
39 * * Redistributions of source code must retain the above copyright notice,
40 * this list of conditions and the following disclaimer.
43 * this list of conditions and the following disclaimer in the documentation
46 * * Neither the name of JSR-310 nor the names of its contributors
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FO
129 public static IsoEra of(int isoEra) { method in class:IsoEra
    [all...]
MinguoEra.java 6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
29 * However, the following notice accompanied the original version of this
39 * * Redistributions of source code must retain the above copyright notice,
40 * this list of conditions and the following disclaimer.
43 * this list of conditions and the following disclaimer in the documentation
46 * * Neither the name of JSR-310 nor the names of its contributors
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FO
131 public static MinguoEra of(int minguoEra) { method in class:MinguoEra
    [all...]
ThaiBuddhistEra.java 6 * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
29 * However, the following notice accompanied the original version of this
39 * * Redistributions of source code must retain the above copyright notice,
40 * this list of conditions and the following disclaimer.
43 * this list of conditions and the following disclaimer in the documentation
46 * * Neither the name of JSR-310 nor the names of its contributors
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FO
131 public static ThaiBuddhistEra of(int thaiBuddhistEra) { method in class:ThaiBuddhistEra
    [all...]
  /libcore/ojluni/src/test/java/time/tck/java/time/chrono/
CopticEra.java 5 * under the terms of the GNU General Public License version 2 only, as
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * You should have received a copy of the GNU General Public License version
33 * * Redistributions of source code must retain the above copyright notice,
34 * this list of conditions and the following disclaimer.
37 * this list of conditions and the following disclaimer in the documentation
40 * * Neither the name of JSR-310 nor the names of its contributors
46 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
50 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, O
98 public static CopticEra of(int era) { method in class:CopticEra
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheManualTest.java 5 * in compliance with the License. You may obtain a copy of the License at
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
113 assertEquals(ImmutableMap.of(), cache.getAllPresent(ImmutableList.<Integer>of())); method
120 assertEquals(ImmutableMap.of(), cache.getAllPresent(asList(1, 2, 3)));
129 assertEquals(ImmutableMap.of(2, 22), cache.getAllPresent(asList(1, 2, 3)));
138 assertEquals(ImmutableMap.of(2, 22, 3, 33), cache.getAllPresent(asList(1, 2, 3)));
147 assertEquals(ImmutableMap.of(1, 11, 2, 22, 3, 33), cache.getAllPresent(asList(1, 2, 3)));
  /external/guava/guava-testlib/test/com/google/common/testing/
FreshValueGeneratorTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
174 assertValueAndTypeEquals(ImmutableList.of(new FreshValueGenerator().generate(String.class)),
176 assertValueAndTypeEquals(ImmutableList.of(new FreshValueGenerator().generate(int.class)),
178 assertValueAndTypeEquals(ImmutableList.of(new FreshValueGenerator().generate(String.class)),
184 assertValueAndTypeEquals(ImmutableSet.of(new FreshValueGenerator().generate(String.class)),
186 assertValueAndTypeEquals(ImmutableSet.of(new FreshValueGenerator().generate(Number.class)),
188 assertValueAndTypeEquals(ImmutableSet.of(new FreshValueGenerator().generate(Number.class)),
195 ImmutableSortedSet.of(new FreshValueGenerator().generate(String.class)),
201 assertValueAndTypeEquals(ImmutableMultiset.of(new FreshValueGenerator().generate(String.class))
    [all...]
ArbitraryInstancesTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
171 assertEquals(ImmutableSet.of().iterator(), ArbitraryInstances.get(Iterator.class));
174 assertEquals(ImmutableSet.of(), ArbitraryInstances.get(Iterable.class));
175 assertEquals(ImmutableSet.of(), ArbitraryInstances.get(Set.class));
176 assertEquals(ImmutableSet.of(), ArbitraryInstances.get(ImmutableSet.class));
177 assertEquals(ImmutableSortedSet.of(), ArbitraryInstances.get(SortedSet.class));
178 assertEquals(ImmutableSortedSet.of(), ArbitraryInstances.get(ImmutableSortedSet.class));
179 assertEquals(ImmutableList.of(), ArbitraryInstances.get(Collection.class));
180 assertEquals(ImmutableList.of(), ArbitraryInstances.get(ImmutableCollection.class))
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
ImmutableTypeToInstanceMap.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
37 public static <B> ImmutableTypeToInstanceMap<B> of() { method in class:ImmutableTypeToInstanceMap
38 return new ImmutableTypeToInstanceMap<B>(ImmutableMap.<TypeToken<? extends B>, B>of());
58 * of any map generated before it.
74 mapBuilder.put(TypeToken.of(key), value);
118 return trustedGet(TypeToken.of(type));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BitSet.as 9 1. Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
14 3. The name of the author may not be used to endorse or promote products
19 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
61 public static function of(... args):BitSet { function
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
BitSet.pm 42 sub of : Tests(2) { subroutine
44 my $bs = $self->class->of(0x10);
75 my $bs = $self->class->of(4);
76 $bs |= $self->class->of(5);
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
BenchmarkMethods.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
42 static Type of(Method benchmarkMethod) { method in class:BenchmarkMethods.Type
60 * <p>This method does not check the correctness of the argument types.
  /external/conscrypt/testing/src/main/java/tests/util/
Pair.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * Pair of typed values.
20 * <p>Pairs are obtained using {@link #of(Object, Object) of}.
22 * @param <F> type of the first value.
23 * @param <S> type of the second value.
33 * Gets the pair consisting of the two provided values.
38 public static <F, S> Pair<F, S> of(F first, S second) { method in class:Pair
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalSet.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
38 public static <E> MinimalSet<E> of(E... contents) { method in class:MinimalSet
  /external/guava/guava-tests/test/com/google/common/net/
MediaTypeTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
80 assertEquals(Optional.of(UTF_8), charset);
175 ImmutableListMultimap.of("a", "1", "a", "2", "b", "3");
178 assertEquals(ImmutableListMultimap.of(), MediaType.parse("text/plain").parameters());
179 assertEquals(ImmutableListMultimap.of("charset", "utf-8"),
202 ImmutableListMultimap.of("a", "1", "@", "2", "b", "3");
337 assertEquals(Optional.of(UTF_8),
342 assertEquals(Optional.of(UTF_16),
383 ImmutableMultimap.of("charset", "utf-8"))
    [all...]

Completed in 617 milliseconds

12 3 4 5 6 7 8 91011>>