Home
last modified time | relevance | path

Searched refs:E (Results 1 – 25 of 2754) sorted by relevance

12345678910>>...111

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DImmutableList.java40 public abstract class ImmutableList<E> extends ForwardingImmutableCollection<E>
41 implements List<E>, RandomAccess {
43 private transient final List<E> delegate;
45 ImmutableList(List<E> delegate) { in ImmutableList()
51 this(Collections.<E>emptyList()); in ImmutableList()
56 public static <E> ImmutableList<E> of() { in of()
57 return (ImmutableList<E>) EmptyImmutableList.INSTANCE; in of()
60 public static <E> ImmutableList<E> of(E element) { in of()
61 return new SingletonImmutableList<E>(element); in of()
64 public static <E> ImmutableList<E> of(E e1, E e2) { in of()
[all …]
DImmutableSortedSet.java38 public abstract class ImmutableSortedSet<E>
39 extends ImmutableSet<E> implements SortedSet<E>, SortedIterable<E> {
45 @Deprecated public static <E> ImmutableSortedSet.Builder<E> builder() { in builder()
58 private static <E> ImmutableSortedSet<E> emptySet() { in emptySet()
59 return (ImmutableSortedSet<E>) NATURAL_EMPTY_SET; in emptySet()
62 static <E> ImmutableSortedSet<E> emptySet( in emptySet()
63 Comparator<? super E> comparator) { in emptySet()
68 return new EmptyImmutableSortedSet<E>(comparator); in emptySet()
72 public static <E> ImmutableSortedSet<E> of() { in of()
76 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of( in of()
[all …]
DImmutableSet.java40 public abstract class ImmutableSet<E> extends ForwardingImmutableCollection<E>
41 implements Set<E> {
43 ImmutableSet(Set<E> delegate) { in ImmutableSet()
48 this(Collections.<E>emptySet()); in ImmutableSet()
53 public static <E> ImmutableSet<E> of() { in of()
54 return (ImmutableSet<E>) EmptyImmutableSet.INSTANCE; in of()
57 public static <E> ImmutableSet<E> of(E element) { in of()
58 return new SingletonImmutableSet<E>(element); in of()
62 public static <E> ImmutableSet<E> of(E e1, E e2) { in of()
67 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) { in of()
[all …]
DSets.java77 public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet( in immutableEnumSet()
78 E anElement, E... otherElements) { in immutableEnumSet()
79 return new ImmutableEnumSet<E>(EnumSet.of(anElement, otherElements)); in immutableEnumSet()
95 public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet( in immutableEnumSet()
96 Iterable<E> elements) { in immutableEnumSet()
97 Iterator<E> iterator = elements.iterator(); in immutableEnumSet()
102 EnumSet<E> enumSetClone = EnumSet.copyOf((EnumSet<E>) elements); in immutableEnumSet()
103 return new ImmutableEnumSet<E>(enumSetClone); in immutableEnumSet()
105 E first = iterator.next(); in immutableEnumSet()
106 EnumSet<E> set = EnumSet.of(first); in immutableEnumSet()
[all …]
/external/guava/guava/src/com/google/common/collect/
DImmutableSortedSet.java89 public abstract class ImmutableSortedSet<E> extends ImmutableSortedSetFauxverideShim<E>
90 implements SortedSet<E>, SortedIterable<E> {
99 private static <E> ImmutableSortedSet<E> emptySet() { in emptySet()
100 return (ImmutableSortedSet<E>) NATURAL_EMPTY_SET; in emptySet()
103 static <E> ImmutableSortedSet<E> emptySet( in emptySet()
104 Comparator<? super E> comparator) { in emptySet()
108 return new EmptyImmutableSortedSet<E>(comparator); in emptySet()
115 public static <E> ImmutableSortedSet<E> of() { in of()
122 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of( in of()
123 E element) { in of()
[all …]
DImmutableList.java58 public abstract class ImmutableList<E> extends ImmutableCollection<E>
59 implements List<E>, RandomAccess {
67 public static <E> ImmutableList<E> of() { in of()
68 return (ImmutableList<E>) EmptyImmutableList.INSTANCE; in of()
79 public static <E> ImmutableList<E> of(E element) { in of()
80 return new SingletonImmutableList<E>(element); in of()
88 public static <E> ImmutableList<E> of(E e1, E e2) { in of()
97 public static <E> ImmutableList<E> of(E e1, E e2, E e3) { in of()
106 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) { in of()
115 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) { in of()
[all …]
DImmutableSortedMultiset.java75 abstract class ImmutableSortedMultiset<E> extends ImmutableSortedMultisetFauxverideShim<E>
76 implements SortedMultiset<E> {
88 public static <E> ImmutableSortedMultiset<E> of() { in of()
95 public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> of(E element) { in of()
107 public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> of(E e1, E e2) { in of()
118 public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> of(E e1, E e2, E e3) { in of()
129 public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> of( in of()
130 E e1, E e2, E e3, E e4) { in of()
141 public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> of( in of()
142 E e1, E e2, E e3, E e4, E e5) { in of()
[all …]
DConstraints.java64 public static <E> Constraint<E> notNull() { in notNull()
65 return (Constraint<E>) NotNullConstraint.INSTANCE; in notNull()
80 public static <E> Collection<E> constrainedCollection( in constrainedCollection()
81 Collection<E> collection, Constraint<? super E> constraint) { in constrainedCollection()
82 return new ConstrainedCollection<E>(collection, constraint); in constrainedCollection()
86 static class ConstrainedCollection<E> extends ForwardingCollection<E> {
87 private final Collection<E> delegate;
88 private final Constraint<? super E> constraint;
91 Collection<E> delegate, Constraint<? super E> constraint) { in ConstrainedCollection()
95 @Override protected Collection<E> delegate() { in delegate()
[all …]
DImmutableSortedMultisetFauxverideShim.java34 abstract class ImmutableSortedMultisetFauxverideShim<E> extends ImmutableMultiset<E> {
44 public static <E> ImmutableSortedMultiset.Builder<E> builder() { in builder()
58 public static <E> ImmutableSortedMultiset<E> of(E element) { in of()
72 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2) { in of()
86 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3) { in of()
100 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4) { in of()
115 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { in of()
130 public static <E> ImmutableSortedMultiset<E> of( in of()
131 E e1, in of()
132 E e2, in of()
[all …]
DImmutableSortedSetFauxverideShim.java38 abstract class ImmutableSortedSetFauxverideShim<E> extends ImmutableSet<E> {
48 @Deprecated public static <E> ImmutableSortedSet.Builder<E> builder() { in builder()
61 @Deprecated public static <E> ImmutableSortedSet<E> of(E element) { in of()
74 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2) { in of()
87 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2, E e3) { in of()
101 @Deprecated public static <E> ImmutableSortedSet<E> of( in of()
102 E e1, E e2, E e3, E e4) { in of()
116 @Deprecated public static <E> ImmutableSortedSet<E> of( in of()
117 E e1, E e2, E e3, E e4, E e5) { in of()
131 @Deprecated public static <E> ImmutableSortedSet<E> of( in of()
[all …]
DImmutableMultiset.java51 public abstract class ImmutableMultiset<E> extends ImmutableCollection<E>
52 implements Multiset<E> {
58 public static <E> ImmutableMultiset<E> of() { in of()
59 return (ImmutableMultiset<E>) EmptyImmutableMultiset.INSTANCE; in of()
69 public static <E> ImmutableMultiset<E> of(E element) { in of()
80 public static <E> ImmutableMultiset<E> of(E e1, E e2) { in of()
91 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3) { in of()
102 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4) { in of()
113 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { in of()
124 public static <E> ImmutableMultiset<E> of( in of()
[all …]
DSets.java80 public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet( in immutableEnumSet()
81 E anElement, E... otherElements) { in immutableEnumSet()
82 return new ImmutableEnumSet<E>(EnumSet.of(anElement, otherElements)); in immutableEnumSet()
98 public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet( in immutableEnumSet()
99 Iterable<E> elements) { in immutableEnumSet()
100 Iterator<E> iterator = elements.iterator(); in immutableEnumSet()
105 EnumSet<E> enumSetClone = EnumSet.copyOf((EnumSet<E>) elements); in immutableEnumSet()
106 return new ImmutableEnumSet<E>(enumSetClone); in immutableEnumSet()
108 E first = iterator.next(); in immutableEnumSet()
109 EnumSet<E> set = EnumSet.of(first); in immutableEnumSet()
[all …]
DQueues.java52 public static <E> ArrayBlockingQueue<E> newArrayBlockingQueue(int capacity) { in newArrayBlockingQueue()
53 return new ArrayBlockingQueue<E>(capacity); in newArrayBlockingQueue()
65 public static <E> ConcurrentLinkedQueue<E> newConcurrentLinkedQueue() { in newConcurrentLinkedQueue()
66 return new ConcurrentLinkedQueue<E>(); in newConcurrentLinkedQueue()
75 public static <E> ConcurrentLinkedQueue<E> newConcurrentLinkedQueue( in newConcurrentLinkedQueue()
76 Iterable<? extends E> elements) { in newConcurrentLinkedQueue()
78 return new ConcurrentLinkedQueue<E>(Collections2.cast(elements)); in newConcurrentLinkedQueue()
80 ConcurrentLinkedQueue<E> queue = new ConcurrentLinkedQueue<E>(); in newConcurrentLinkedQueue()
94 public static <E> LinkedBlockingQueue<E> newLinkedBlockingQueue() { in newLinkedBlockingQueue()
95 return new LinkedBlockingQueue<E>(); in newLinkedBlockingQueue()
[all …]
DImmutableSet.java68 public abstract class ImmutableSet<E> extends ImmutableCollection<E>
69 implements Set<E> {
77 public static <E> ImmutableSet<E> of() { in of()
78 return (ImmutableSet<E>) EmptyImmutableSet.INSTANCE; in of()
87 public static <E> ImmutableSet<E> of(E element) { in of()
88 return new SingletonImmutableSet<E>(element); in of()
98 public static <E> ImmutableSet<E> of(E e1, E e2) { in of()
109 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) { in of()
120 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { in of()
131 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { in of()
[all …]
DMultisets.java69 public static <E> Multiset<E> unmodifiableMultiset( in unmodifiableMultiset()
70 Multiset<? extends E> multiset) { in unmodifiableMultiset()
75 Multiset<E> result = (Multiset<E>) multiset; in unmodifiableMultiset()
78 return new UnmodifiableMultiset<E>(checkNotNull(multiset)); in unmodifiableMultiset()
87 @Deprecated public static <E> Multiset<E> unmodifiableMultiset( in unmodifiableMultiset()
88 ImmutableMultiset<E> multiset) { in unmodifiableMultiset()
92 static class UnmodifiableMultiset<E>
93 extends ForwardingMultiset<E> implements Serializable {
94 final Multiset<? extends E> delegate;
96 UnmodifiableMultiset(Multiset<? extends E> delegate) { in UnmodifiableMultiset()
[all …]
DSortedMultisets.java42 static abstract class ElementSet<E> extends Multisets.ElementSet<E> implements
43 SortedSet<E> {
44 @Override abstract SortedMultiset<E> multiset(); in multiset()
46 @Override public Comparator<? super E> comparator() { in comparator()
50 @Override public SortedSet<E> subSet(E fromElement, E toElement) { in subSet()
55 @Override public SortedSet<E> headSet(E toElement) { in headSet()
59 @Override public SortedSet<E> tailSet(E fromElement) { in tailSet()
64 @Override public E first() { in first()
68 @Override public E last() { in last()
73 private static <E> E getElementOrThrow(Entry<E> entry) { in getElementOrThrow()
[all …]
/external/clang/lib/Serialization/
DASTWriterStmt.cpp260 void ASTStmtWriter::VisitExpr(Expr *E) { in VisitExpr() argument
261 VisitStmt(E); in VisitExpr()
262 Writer.AddTypeRef(E->getType(), Record); in VisitExpr()
263 Record.push_back(E->isTypeDependent()); in VisitExpr()
264 Record.push_back(E->isValueDependent()); in VisitExpr()
265 Record.push_back(E->isInstantiationDependent()); in VisitExpr()
266 Record.push_back(E->containsUnexpandedParameterPack()); in VisitExpr()
267 Record.push_back(E->getValueKind()); in VisitExpr()
268 Record.push_back(E->getObjectKind()); in VisitExpr()
271 void ASTStmtWriter::VisitPredefinedExpr(PredefinedExpr *E) { in VisitPredefinedExpr() argument
[all …]
DASTReaderStmt.cpp329 void ASTStmtReader::VisitExpr(Expr *E) { in VisitExpr() argument
330 VisitStmt(E); in VisitExpr()
331 E->setType(Reader.readType(F, Record, Idx)); in VisitExpr()
332 E->setTypeDependent(Record[Idx++]); in VisitExpr()
333 E->setValueDependent(Record[Idx++]); in VisitExpr()
334 E->setInstantiationDependent(Record[Idx++]); in VisitExpr()
335 E->ExprBits.ContainsUnexpandedParameterPack = Record[Idx++]; in VisitExpr()
336 E->setValueKind(static_cast<ExprValueKind>(Record[Idx++])); in VisitExpr()
337 E->setObjectKind(static_cast<ExprObjectKind>(Record[Idx++])); in VisitExpr()
341 void ASTStmtReader::VisitPredefinedExpr(PredefinedExpr *E) { in VisitPredefinedExpr() argument
[all …]
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
Dp1.cpp4 enum E : T; // expected-note {{here}} member
5 E v;
6 E f() { return A::e1; } // expected-error {{no member named 'e1' in 'A<T>'}} in f()
7 E g() { return E::e1; } in g()
8 E h();
12 A<int>::E a0 = A<int>().v;
13 int n = A<int>::E::e1; // expected-error {{implicit instantiation of undefined member}}
15 template<typename T> enum A<T>::E : T { e1, e2 }; enum
23 A<int>::E a1 = A<int>::e1; // expected-error {{no member named 'e1' in 'A<int>'}}
25 A<char>::E a2 = A<char>::e2;
[all …]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
DSHA1.java255 int E = H4; in perform() local
350 E += ((A << 5) | (A >>> 27)) + ((B & C) | ((~B) & D)) + w[0] + 0x5A827999; in perform()
353 D += ((E << 5) | (E >>> 27)) + ((A & B) | ((~A) & C)) + w[1] + 0x5A827999; in perform()
356 C += ((D << 5) | (D >>> 27)) + ((E & A) | ((~E) & B)) + w[2] + 0x5A827999; in perform()
357 E = ((E << 30) | (E >>> 2)); in perform()
359 B += ((C << 5) | (C >>> 27)) + ((D & E) | ((~D) & A)) + w[3] + 0x5A827999; in perform()
362 A += ((B << 5) | (B >>> 27)) + ((C & D) | ((~C) & E)) + w[4] + 0x5A827999; in perform()
365 E += ((A << 5) | (A >>> 27)) + ((B & C) | ((~B) & D)) + w[5] + 0x5A827999; in perform()
368 D += ((E << 5) | (E >>> 27)) + ((A & B) | ((~A) & C)) + w[6] + 0x5A827999; in perform()
371 C += ((D << 5) | (D >>> 27)) + ((E & A) | ((~E) & B)) + w[7] + 0x5A827999; in perform()
[all …]
/external/clang/tools/libclang/
DIndexBody.cpp42 bool VisitDeclRefExpr(DeclRefExpr *E) { in VisitDeclRefExpr() argument
43 IndexCtx.handleReference(E->getDecl(), E->getLocation(), in VisitDeclRefExpr()
44 Parent, ParentDC, E); in VisitDeclRefExpr()
48 bool VisitMemberExpr(MemberExpr *E) { in VisitMemberExpr() argument
49 IndexCtx.handleReference(E->getMemberDecl(), E->getMemberLoc(), in VisitMemberExpr()
50 Parent, ParentDC, E); in VisitMemberExpr()
54 bool VisitDesignatedInitExpr(DesignatedInitExpr *E) { in VisitDesignatedInitExpr() argument
56 D = E->designators_rbegin(), DEnd = E->designators_rend(); in VisitDesignatedInitExpr()
60 Parent, ParentDC, E); in VisitDesignatedInitExpr()
65 bool VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { in VisitObjCIvarRefExpr() argument
[all …]
/external/openssl/crypto/ripemd/
Drmd_dgst.c80 c->E=RIPEMD160_E; in fips_md_init()
91 register unsigned MD32_REG_T A,B,C,D,E; in ripemd160_block_data_order() local
106 A=ctx->A; B=ctx->B; C=ctx->C; D=ctx->D; E=ctx->E; in ripemd160_block_data_order()
109 RIP1(A,B,C,D,E,WL00,SL00); HOST_c2l(data,l); X( 2)=l; in ripemd160_block_data_order()
110 RIP1(E,A,B,C,D,WL01,SL01); HOST_c2l(data,l); X( 3)=l; in ripemd160_block_data_order()
111 RIP1(D,E,A,B,C,WL02,SL02); HOST_c2l(data,l); X( 4)=l; in ripemd160_block_data_order()
112 RIP1(C,D,E,A,B,WL03,SL03); HOST_c2l(data,l); X( 5)=l; in ripemd160_block_data_order()
113 RIP1(B,C,D,E,A,WL04,SL04); HOST_c2l(data,l); X( 6)=l; in ripemd160_block_data_order()
114 RIP1(A,B,C,D,E,WL05,SL05); HOST_c2l(data,l); X( 7)=l; in ripemd160_block_data_order()
115 RIP1(E,A,B,C,D,WL06,SL06); HOST_c2l(data,l); X( 8)=l; in ripemd160_block_data_order()
[all …]
/external/clang/lib/AST/
DExprConstant.cpp71 APValue::BaseOrMemberType getAsBaseOrMember(APValue::LValuePathEntry E) { in getAsBaseOrMember() argument
73 Value.setFromOpaqueValue(E.BaseOrMember); in getAsBaseOrMember()
79 static const FieldDecl *getAsField(APValue::LValuePathEntry E) { in getAsField() argument
80 return dyn_cast<FieldDecl>(getAsBaseOrMember(E).getPointer()); in getAsField()
84 static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) { in getAsBaseClass() argument
85 return dyn_cast<CXXRecordDecl>(getAsBaseOrMember(E).getPointer()); in getAsBaseClass()
89 static bool isVirtualBaseClass(APValue::LValuePathEntry E) { in isVirtualBaseClass() argument
90 return getAsBaseOrMember(E).getInt(); in isVirtualBaseClass()
201 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
241 void diagnosePointerArithmetic(EvalInfo &Info, const Expr *E, uint64_t N);
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DSafeTreeSet.java34 public final class SafeTreeSet<E> implements Serializable, NavigableSet<E> {
41 private final NavigableSet<E> delegate;
44 this(new TreeSet<E>()); in SafeTreeSet()
47 public SafeTreeSet(Collection<? extends E> collection) { in SafeTreeSet()
48 this(new TreeSet<E>(collection)); in SafeTreeSet()
51 public SafeTreeSet(Comparator<? super E> comparator) { in SafeTreeSet()
52 this(new TreeSet<E>(comparator)); in SafeTreeSet()
55 public SafeTreeSet(SortedSet<E> set) { in SafeTreeSet()
56 this(new TreeSet<E>(set)); in SafeTreeSet()
59 private SafeTreeSet(NavigableSet<E> delegate) { in SafeTreeSet()
[all …]
DAbstractIteratorTester.java48 abstract class AbstractIteratorTester<E, I extends Iterator<E>> {
97 private Stimulus<E, ? super I>[] stimuli;
98 private final Iterator<E> elementsToInsert;
100 private final List<E> expectedElements;
176 protected final class MultiExceptionListIterator implements ListIterator<E> {
185 final Stack<E> nextElements = new Stack<E>();
190 final Stack<E> previousElements = new Stack<E>();
199 Stack<E> stackWithLastReturnedElementAtTop = null;
201 MultiExceptionListIterator(List<E> expectedElements) { in MultiExceptionListIterator()
209 public void add(E e) { in add()
[all …]

12345678910>>...111