HomeSort by relevance Sort by last modified time
    Searched defs:of (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /external/openssl/crypto/des/times/
usparc.cc 4 gives a speed of 475,000 des/s while 'speed' gives 417,000 des/s. variable
14 actual 'speed' numbers look better which is a realistic version of
  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableListMultimap.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * Implementation of {@link ImmutableListMultimap} with no entries.
32 super(ImmutableMap.<Object, ImmutableList<Object>>of(), 0); method
EmptyImmutableSetMultimap.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * Implementation of {@link ImmutableListMultimap} with no entries.
32 super(ImmutableMap.<Object, ImmutableSet<Object>>of(), 0, null); method
ImmutableSortedMapFauxverideShim.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34 * {@link ImmutableMap#builder} from consumers of {@code ImmutableSortedMap}.
50 * @deprecated <b>Pass a key of type {@code Comparable} to use {@link
51 * ImmutableSortedMap#of(Comparable, Object)}.</b>
53 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of(K k1, V v1) { method in class:ImmutableSortedMapFauxverideShim
63 * @deprecated <b>Pass keys of type {@code Comparable} to use {@link
64 * ImmutableSortedMap#of(Comparable, Object, Comparable, Object)}.</b>
66 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of( method in class:ImmutableSortedMapFauxverideShim
77 * @deprecated <b>Pass keys of type {@code Comparable} to use {@lin
81 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of( method in class:ImmutableSortedMapFauxverideShim
96 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of( method in class:ImmutableSortedMapFauxverideShim
111 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of( method in class:ImmutableSortedMapFauxverideShim
    [all...]
ImmutableSortedMultisetFauxverideShim.java 5 * in compliance with the License. You may obtain a copy of the License at
10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
38 * consumers of {@code ImmutableSortedMultiset}.
54 * @deprecated <b>Pass a parameter of type {@code Comparable} to use
55 * {@link ImmutableSortedMultiset#of(Comparable)}.</b>
58 public static <E> ImmutableSortedMultiset<E> of(E element) { method in class:ImmutableSortedMultisetFauxverideShim
68 * @deprecated <b>Pass the parameters of type {@code Comparable} to use
69 * {@link ImmutableSortedMultiset#of(Comparable, Comparable)}.</b>
72 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2) { method in class:ImmutableSortedMultisetFauxverideShim
82 * @deprecated <b>Pass the parameters of type {@code Comparable} to us
86 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3) { method in class:ImmutableSortedMultisetFauxverideShim
100 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4) { method in class:ImmutableSortedMultisetFauxverideShim
115 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { method in class:ImmutableSortedMultisetFauxverideShim
130 public static <E> ImmutableSortedMultiset<E> of( method in class:ImmutableSortedMultisetFauxverideShim
    [all...]
ImmutableSortedSetFauxverideShim.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
42 * {@link ImmutableSet#builder} from consumers of {@code ImmutableSortedSet}.
58 * @deprecated <b>Pass a parameter of type {@code Comparable} to use {@link
59 * ImmutableSortedSet#of(Comparable)}.</b>
61 @Deprecated public static <E> ImmutableSortedSet<E> of(E element) { method in class:ImmutableSortedSetFauxverideShim
71 * @deprecated <b>Pass the parameters of type {@code Comparable} to use {@link
72 * ImmutableSortedSet#of(Comparable, Comparable)}.</b>
74 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2) { method in class:ImmutableSortedSetFauxverideShim
84 * @deprecated <b>Pass the parameters of type {@code Comparable} to use {@lin
87 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2, E e3) { method in class:ImmutableSortedSetFauxverideShim
101 @Deprecated public static <E> ImmutableSortedSet<E> of( method in class:ImmutableSortedSetFauxverideShim
116 @Deprecated public static <E> ImmutableSortedSet<E> of( method in class:ImmutableSortedSetFauxverideShim
131 @Deprecated public static <E> ImmutableSortedSet<E> of( method in class:ImmutableSortedSetFauxverideShim
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalIterable.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24 * An implementation of {@code Iterable} which throws an exception on all
25 * invocations of the {@link #iterator()} method after the first, and whose
34 * <li>throwing an exception of some kind
36 * implementations have, of returning a new, independent iterator
39 * Because of this situation, any public method accepting an iterable should
45 * ones of the robust variety.
55 public static <E> MinimalIterable<E> of(E... elements) { method in class:MinimalIterable
62 * The elements are copied out of the source collection at the time thi
    [all...]
MinimalSet.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 <E> MinimalSet<E> of(E... contents) { method in class:MinimalSet
MinimalCollection.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 public static <E> MinimalCollection<E> of(E... contents) { method in class:MinimalCollection
  /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)));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestContentAssist.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
83 choices.add(Pair.<String, String>of(codeName, null)); method
88 choices.add(Pair.of(Integer.toString(i), version));
  /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/guava/guava-tests/test/com/google/common/collect/
RangesTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49 Ranges.encloseAll(ImmutableSet.<Integer>of()); method
  /external/valgrind/main/none/tests/x86/
aad_aam.c 22 int of __attribute__((unused)); local
44 of=!!(flags&0x800);
47 // printf("%x CF=%d PF=%d AF=%d ZF=%d SF=%d OF=%d\n",
48 // flags,cf,pf,af,zf,sf,of);
91 of=!!(flags&0x800);
94 // printf("%x CF=%d PF=%d AF=%d ZF=%d SF=%d OF=%d\n",
95 // flags,cf,pf,af,zf,sf,of);
  /frameworks/base/core/java/android/util/
Property.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * methods can be implemented in terms of the private fields of the host object, or via "setter" and
38 * optional public <code>setName()</code> method which takes a value of the same type
41 * optional public <code>setName()</code> method which takes a value of the same type
46 * <p>If either of the get/is method alternatives is found on the class, but an appropriate
54 public static <T, V> Property<T, V> of(Class<T> hostType, Class<V> valueType, String name) { method in class:Property
70 * allows querying the underlying value but not setting it. For example, the {@link #of(Class,
  /frameworks/base/graphics/java/android/graphics/
Insets.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * edges of a Rectangle. By convention, positive values move edges towards the
22 * centre of the rectangle.
55 public static Insets of(int left, int top, int right, int bottom) { method in class:Insets
69 public static Insets of(Rect r) { method in class:Insets
70 return (r == null) ? NONE : of(r.left, r.top, r.right, r.bottom);
  /sdk/common/src/com/android/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.
25 * construction is helped a bit by the {@link #of} factory method.
27 * @param <S> The type of the first value
28 * @param <T> The type of the second value
34 // Use {@link Pair#of} factory instead since it infers generic types
59 * Constructs a new pair of the given two objects, inferring generic types.
63 * @param <S> the type of the first item
64 * @param <T> the type of the second item
67 public static <S,T> Pair<S,T> of(S first, T second) method in class:Pair
    [all...]
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/detector/api/
ScopeTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29 assertEquals(EnumSet.of(Scope.RESOURCE_FILE),
31 EnumSet.of(Scope.RESOURCE_FILE),
32 EnumSet.of(Scope.RESOURCE_FILE)));
34 assertEquals(EnumSet.of(Scope.RESOURCE_FILE),
36 EnumSet.of(Scope.RESOURCE_FILE, Scope.JAVA_FILE),
37 EnumSet.of(Scope.RESOURCE_FILE)));
39 assertEquals(EnumSet.of(Scope.JAVA_FILE),
41 EnumSet.of(Scope.RESOURCE_FILE, Scope.JAVA_FILE)
    [all...]
  /external/guava/guava/src/com/google/common/base/
Optional.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 * instance of this type either contains a non-null reference, or contains nothing (in
42 * <p>Some uses of this class include
59 * <p>This class is not intended as a direct analogue of any existing "option" or "maybe"
62 * @param <T> the type of instance that can be contained. {@code Optional} is naturally
64 * Optional<S>} for any supertype {@code S} of {@code T}.
83 public static <T> Optional<T> of(T reference) { method in class:Optional
116 * {@link #get()} instead. For a default value of {@code null}, use {@link #orNull}.
152 * are absent. Note that {@code Optional} instances of differing parameterized types ca
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
EquivalenceTester.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 * Tester for {@link Equivalence} relationships between groups of objects.
38 * other. Objects of different groups are expected to be unequal. For example:
42 * EquivalenceTester.of(someStringEquivalence)
51 * the {@link EqualsTester}. It includes an extra test against an instance of an
75 assertEquals("the hash (" + itemHash + ") of $ITEM must be equal to the hash ("
76 + relatedHash + ") of $RELATED", itemHash, relatedHash);
86 public static <T> EquivalenceTester<T> of(Equivalence<? super T> equivalence) { method in class:EquivalenceTester
91 * Adds a group of objects that are supposed to be equivalent to each othe
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
PrimitivesTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
52 ImmutableSet.<Object>of( method
67 ImmutableSet.<Object>of( method
  /external/qemu/target-i386/
helper_template.h 7 * modify it under the terms of the GNU Lesser General Public
9 * version 2 of the License, or (at your option) any later version.
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * You should have received a copy of the GNU Lesser General Public
57 int cf, pf, af, zf, sf, of; local
66 of = lshift((src1 ^ src2 ^ -1) & (src1 ^ CC_DST), 12 - DATA_BITS) & CC_O;
67 return cf | pf | af | zf | sf | of;
81 int cf, pf, af, zf, sf, of;
90 of = lshift((src1 ^ src2 ^ -1) & (src1 ^ CC_DST), 12 - DATA_BITS) & CC_O;
91 return cf | pf | af | zf | sf | of;
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BitSet.pm 14 # number of bits / long
23 # turns out that, for powers of two, this mod operation is
48 # Construct a bitset of size one word (64 bits)
58 # Construction from a static array of longs
72 # Construction from a list of integers
86 sub of { subroutine
266 A stripped-down version of org.antlr.misc.BitSet that is just good enough to
274 =item C<of>
288 Grows the set to a larger number of bits.
292 Sets the size of a set
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableBiMap.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 * GWT emulation of {@link ImmutableBiMap}.
35 public static <K, V> ImmutableBiMap<K, V> of() { method in class:ImmutableBiMap
39 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { method in class:ImmutableBiMap
40 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1));
43 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { method in class:ImmutableBiMap
44 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2));
47 public static <K, V> ImmutableBiMap<K, V> of( method in class:ImmutableBiMap
49 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(
53 public static <K, V> ImmutableBiMap<K, V> of( method in class:ImmutableBiMap
59 public static <K, V> ImmutableBiMap<K, V> of( method in class:ImmutableBiMap
    [all...]

Completed in 1231 milliseconds

1 2 3 4 5 6