HomeSort by relevance Sort by last modified time
    Searched full:forward (Results 26 - 50 of 4710) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingObjectTest.java 32 ForwardingObject forward = new ForwardingObject() { local
37 assertTrue(forward.equals(forward));
42 ForwardingObject forward = new ForwardingObject() { local
47 assertEquals(forward.equals(delegate), delegate.equals(forward));
ForwardingQueueTest.java 106 private Queue<String> forward; field in class:ForwardingQueueTest
138 forward = new ForwardingQueue<String>() {
146 forward.add("asdf");
151 forward.addAll(Collections.singleton("asdf"));
156 forward.clear();
161 forward.contains("asdf");
166 forward.containsAll(Collections.singleton("asdf"));
171 forward.element();
176 forward.iterator();
181 forward.isEmpty()
    [all...]
ForwardingMultisetTest.java 139 protected Multiset<String> forward; field in class:ForwardingMultisetTest
276 forward = new ForwardingMultiset<String>() {
284 forward().add("asdf");
289 forward().addAll(EMPTY_COLLECTION);
294 forward().clear();
299 forward().contains(null);
304 forward().containsAll(EMPTY_COLLECTION);
309 forward().isEmpty();
314 forward().iterator();
319 forward().remove(null)
398 protected Multiset<String> forward() { method in class:ForwardingMultisetTest
    [all...]
ForwardingMapTest.java 115 Map<String, Boolean> forward;
165 forward = new ForwardingMap<String, Boolean>() {
173 forward().size();
178 forward().isEmpty();
183 forward().remove(null);
188 forward().clear();
193 forward().containsKey("asdf");
198 forward().containsValue(false);
203 forward().get("asdf");
208 forward().put("key", false)
    [all...]
ForwardingCollectionTest.java 97 private Collection<String> forward; field in class:ForwardingCollectionTest
138 forward = new ForwardingCollection<String>() {
146 forward.add("asdf");
151 forward.addAll(EMPTY_COLLECTION);
156 forward.clear();
161 forward.contains(null);
166 forward.containsAll(EMPTY_COLLECTION);
171 forward.isEmpty();
176 forward.iterator();
181 forward.remove(null)
    [all...]
ForwardingSetTest.java 105 Set<String> forward; field in class:ForwardingSetTest
145 forward = new ForwardingSet<String>() {
153 forward().add("asdf");
158 forward().addAll(EMPTY_LIST);
163 forward().clear();
168 forward().contains(null);
173 forward().containsAll(EMPTY_LIST);
178 forward().isEmpty();
183 forward().iterator();
188 forward().remove(null)
222 Set<String> forward() { method in class:ForwardingSetTest
    [all...]
ForwardingSortedSetTest.java 137 forward = new ForwardingSortedSet<String>() {
145 forward().comparator();
150 forward().first();
155 forward().headSet("asdf");
160 forward().last();
165 forward().subSet("first", "last");
170 forward().tailSet("last");
174 @Override SortedSet<String> forward() { method in class:ForwardingSortedSetTest
175 return (SortedSet<String>) super.forward();
  /external/llvm/test/Feature/
constpointer.ll 6 ; constant pointer initializers. This is tricky because they can be forward
13 @t3 = global i32* @t1 ;; Forward reference
19 global float * @2 ;; Forward numeric reference
20 global float * @2 ;; Duplicate forward numeric reference
25 @fptr = global void() * @f ;; Forward ref method defn
28 @sptr1 = global [11x i8]* @somestr ;; Forward ref to a constant
  /external/llvm/test/Integer/
constpointer_bt.ll 6 ; constant pointer initializers. This is tricky because they can be forward
13 @t3 = global i40 * @t1 ;; Forward reference
19 global float * @2 ;; Forward numeric reference
20 global float * @2 ;; Duplicate forward numeric reference
25 @fptr = global void() * @f ;; Forward ref method defn
28 @sptr1 = global [11x i8]* @somestr ;; Forward ref to a constant
  /external/guava/guava-tests/test/com/google/common/cache/
ForwardingLoadingCacheTest.java 37 private LoadingCache<String, Boolean> forward; field in class:ForwardingLoadingCacheTest
49 forward = new ForwardingLoadingCache<String, Boolean>() {
59 assertSame(Boolean.TRUE, forward.get("key"));
66 assertSame(Boolean.TRUE, forward.getUnchecked("key"));
73 assertEquals(ImmutableMap.of("key", Boolean.TRUE), forward.getAll(ImmutableList.of("key")));
80 assertSame(Boolean.TRUE, forward.apply("key"));
87 forward.invalidate("key");
94 forward.refresh("key");
101 forward.invalidateAll();
108 forward.size()
    [all...]
ForwardingCacheTest.java 37 private Cache<String, Boolean> forward; field in class:ForwardingCacheTest
49 forward = new ForwardingCache<String, Boolean>() {
59 assertSame(Boolean.TRUE, forward.getIfPresent("key"));
68 forward.getAllPresent(ImmutableList.of("key")));
75 forward.invalidate("key");
82 forward.invalidateAll(ImmutableList.of("key"));
89 forward.invalidateAll();
96 forward.size();
103 assertNull(forward.stats());
110 assertNull(forward.asMap())
    [all...]
  /external/tcpdump/tests/
mpls-ldp-hello.new 4 Common Hello Parameters TLV (0x0400), length: 4, Flags: [ignore and don't forward if unknown]
6 IPv4 Transport Address TLV (0x0401), length: 4, Flags: [ignore and don't forward if unknown]
8 Configuration Sequence Number TLV (0x0402), length: 4, Flags: [ignore and don't forward if unknown]
mpls-ldp-hello.out 4 Common Hello Parameters TLV (0x0400), length: 4, Flags: [ignore and don't forward if unknown]
6 IPv4 Transport Address TLV (0x0401), length: 4, Flags: [ignore and don't forward if unknown]
8 Configuration Sequence Number TLV (0x0402), length: 4, Flags: [ignore and don't forward if unknown]
  /external/clang/test/SemaObjC/
debugger-cast-result-to-id.m 14 @class NSString; // expected-note {{forward declaration of class here}}
17 id s = [NSString stringWithUTF8String:"foo"]; // expected-warning {{receiver 'NSString' is a forward class and corresponding @interface may not exist}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p9.cpp 3 struct S; // expected-note 2{{forward declaration of 'S'}}
  /external/clang/test/Modules/Inputs/System/usr/include/
module.map 12 // In both directories (compiler support version wins, does not forward)
  /external/clang/test/Sema/
variadic-incomplete-arg-type.c 4 typedef struct __CFError * CFErrorRef; // expected-note {{forward declaration of 'struct __CFError'}}
  /external/clang/test/SemaCXX/
PR6618.cpp 2 class bar; // expected-note {{forward declaration of 'bar'}}
compound-literal.cpp 5 struct S; // expected-note {{forward declaration}}
static-cast-complete-type.cpp 6 struct T; // expected-note{{forward declaration of 'T'}}
type-traits-incomplete.cpp 3 struct S; // expected-note 2 {{forward declaration of 'S'}}
  /external/clang/test/SemaTemplate/
instantiate-exception-spec.cpp 6 struct Incomplete; // expected-note{{forward}}
  /external/iptables/extensions/
libxt_mac.man 7 .B FORWARD
  /external/llvm/test/Assembler/
global-addrspace-forwardref.ll 3 ; Make sure the address space of forward decls is preserved
  /external/clang/test/SemaObjCXX/
propert-dot-error.mm 55 class Forward;
65 d.Forward::property = 17; // expected-error{{property access cannot be qualified with 'Forward::'}}
66 d->Forward::ivar = 12; // expected-error{{instance variable access cannot be qualified with 'Forward::'}}

Completed in 308 milliseconds

12 3 4 5 6 7 8 91011>>