Searched defs:of (Results 51 - 75 of 164) sorted by relevance

1234567

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstruction30t.java9 * * 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
51 public static ImmutableInstruction30t of(Instruction30t instruction) { method in class:ImmutableInstruction30t
H A DImmutableInstruction31c.java9 * * 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
55 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference);
58 public static ImmutableInstruction31c of(Instruction31c instruction) { method in class:ImmutableInstruction31c
H A DImmutableInstruction31i.java9 * * 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
55 public static ImmutableInstruction31i of(Instruction31i instruction) { method in class:ImmutableInstruction31i
H A DImmutableInstruction31t.java9 * * 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
55 public static ImmutableInstruction31t of(Instruction31t instruction) { method in class:ImmutableInstruction31t
H A DImmutableInstruction32x.java9 * * 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
55 public static ImmutableInstruction32x of(Instruction32x instruction) { method in class:ImmutableInstruction32x
H A DImmutableInstruction51l.java9 * * 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
55 public static ImmutableInstruction51l of(Instruction51l instruction) { method in class:ImmutableInstruction51l
H A DImmutablePackedSwitchPayload.java9 * * 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
63 public static ImmutablePackedSwitchPayload of(PackedSwitchPayload instruction) { method in class:ImmutablePackedSwitchPayload
H A DImmutableSparseSwitchPayload.java9 * * 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
62 public static ImmutableSparseSwitchPayload of(SparseSwitchPayload instruction) { method in class:ImmutableSparseSwitchPayload
H A DImmutableSwitchElement.java9 * * 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
53 public static ImmutableSwitchElement of(SwitchElement switchElement) { method in class:ImmutableSwitchElement
80 return ImmutableSwitchElement.of(item);
H A DImmutableUnknownInstruction.java9 * * 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
48 public static ImmutableUnknownInstruction of(UnknownInstruction instruction) { method in class:ImmutableUnknownInstruction
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
H A DImmutableFieldReference.java9 * * 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
53 public static ImmutableFieldReference of(@Nonnull FieldReference fieldReference) { method in class:ImmutableFieldReference
H A DImmutableMethodReference.java9 * * 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
70 public static ImmutableMethodReference of(@Nonnull MethodReference methodReference) { method in class:ImmutableMethodReference
H A DImmutableTypeReference.java9 * * 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
51 public static ImmutableTypeReference of(@Nonnull TypeReference typeReference) { method in class:ImmutableTypeReference
75 return ImmutableTypeReference.of(item);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableAnnotationEncodedValue.java9 * * 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
61 public static ImmutableAnnotationEncodedValue of(AnnotationEncodedValue annotationEncodedValue) { method in class:ImmutableAnnotationEncodedValue
H A DImmutableBooleanEncodedValue.java9 * * 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
51 public static ImmutableBooleanEncodedValue of(BooleanEncodedValue booleanEncodedValue) { method in class:ImmutableBooleanEncodedValue
H A DImmutableEncodedValueFactory.java9 * * 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
46 public static ImmutableEncodedValue of(@Nonnull EncodedValue encodedValue) { method in class:ImmutableEncodedValueFactory
49 return ImmutableByteEncodedValue.of((ByteEncodedValue)encodedValue);
51 return ImmutableShortEncodedValue.of((ShortEncodedValue)encodedValue);
53 return ImmutableCharEncodedValue.of((CharEncodedValue)encodedValue);
55 return ImmutableIntEncodedValue.of((IntEncodedValu
[all...]
/external/valgrind/main/none/tests/x86/
H A Daad_aam.c22 int of __attribute__((unused)); local
44 of=!!(flags&0x800);
48 // flags,cf,pf,af,zf,sf,of);
91 of=!!(flags&0x800);
95 // flags,cf,pf,af,zf,sf,of);
/external/chromium_org/third_party/npapi/npspy/common/
H A Dutils.cpp5 * The contents of this file are subject to the Mozilla Public License Version
7 * the License. You may obtain a copy of the License at
17 * The Initial Developer of the Original Code is
24 * Alternatively, the contents of this file may be used under the terms of
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of eithe
45 OFSTRUCT of; local
69 OFSTRUCT of; local
80 OFSTRUCT of; local
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMapFauxverideShim.java6 * You may obtain a copy of the License at
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 {@link
78 * ImmutableSortedMap#of(Comparabl
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...]
H A DImmutableSortedMultisetFauxverideShim.java5 * in compliance with the License. You may obtain a copy of the License at
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 use
83 * {@link ImmutableSortedMultiset#of(Comparabl
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...]
H A DImmutableSortedSetFauxverideShim.java6 * You may obtain a copy of the License at
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 {@link
85 * ImmutableSortedSet#of(Comparabl
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/libvorbis/lib/
H A Danalysis.c61 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);
98 fprintf(of,"%f\n",v[j]);
101 fclose(of);
[all...]
/external/qemu/target-i386/
H A Dcc_helper_template.h7 * 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/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableMethodParameter.java9 * * 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
67 public static ImmutableMethodParameter of(MethodParameter methodParameter) { method in class:ImmutableMethodParameter
100 return ImmutableMethodParameter.of(item);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
H A DImmutableEndLocal.java9 * * 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
68 public static ImmutableEndLocal of(@Nonnull EndLocal endLocal) { method in class:ImmutableEndLocal

Completed in 1341 milliseconds

1234567