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

12 3 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
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...]
  /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/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...]
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
BindingCollector.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
39 throw new ConfigurationException(ImmutableSet.of(
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Pair.java 10 * A pair of objects: first and second.
30 public static <F, S> Pair<F, S> of(F first, S second) { method in class:Pair
32 throw new IllegalArgumentException("Pair.of requires non null values.");
  /external/libvorbis/lib/
analysis.c 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
61 op->packetno=vb->sequence; /* for sake of completeness */
72 FILE *of; local
76 of=fopen(buffer,"w");
78 if(!of)perror("failed to open data dump file");
83 fprintf(of,"%f ",b);
86 fprintf(of,"%f ",(double)(j+off)/8000.);
88 fprintf(of,"%f ",(double)j);
96 fprintf(of,"%f\n",val)
    [all...]
  /external/mockito/src/org/mockito/internal/util/collections/
HashCodeAndEqualsMockWrapper.java 3 * This program is made available under the terms of the MIT License.
54 public static HashCodeAndEqualsMockWrapper of(Object mock) { method in class:HashCodeAndEqualsMockWrapper
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableAnnotation.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
66 public static ImmutableAnnotation of(Annotation annotation) { method in class:ImmutableAnnotation
    [all...]
ImmutableAnnotationElement.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
61 public static ImmutableAnnotationElement of(AnnotationElement annotationElement) { method in class:ImmutableAnnotationElement
    [all...]
ImmutableExceptionHandler.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
52 public static ImmutableExceptionHandler of(ExceptionHandler exceptionHandler) { method in class:ImmutableExceptionHandler
    [all...]
ImmutableMethodImplementation.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
75 public static ImmutableMethodImplementation of(@Nullable MethodImplementation methodImplementation) { method in class:ImmutableMethodImplementation
    [all...]
ImmutableMethodParameter.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
67 public static ImmutableMethodParameter of(MethodParameter methodParameter) { method in class:ImmutableMethodParameter
    [all...]
ImmutableTryBlock.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
66 public static ImmutableTryBlock of(TryBlock<? extends ExceptionHandler> tryBlock) { method in class:ImmutableTryBlock
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
ImmutableDebugItem.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
51 public static ImmutableDebugItem of(DebugItem debugItem) { method in class:ImmutableDebugItem
    [all...]

Completed in 816 milliseconds

12 3 4 5 6 7 8 91011>>