/external/guava/guava-tests/test/com/google/common/collect/ |
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/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/SemaCXX/ |
conversion-incomplete-type.cpp | 5 class StringPiece; // expected-note {{forward declaration of 'StringPiece'}} \ 6 // expected-note {{forward declaration of 'StringPiece'}}
|
PR6618.cpp | 2 class bar; // expected-note {{forward declaration of 'bar'}}
|
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/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}}
|
class-proto-1.m | 26 @class U1, U2; // expected-note {{forward declaration of class here}} 28 @interface E3 : U1 @end // expected-error {{attempting to use the forward class 'U1' as superclass of 'E3'}}
|
/external/chromium_org/ash/wm/ |
window_cycle_controller_unittest.cc | 40 controller->HandleCycleWindow(WindowCycleController::FORWARD, false); 48 controller->HandleCycleWindow(WindowCycleController::FORWARD, false); 65 Shell::GetInstance()->RotateFocus(Shell::FORWARD); 69 controller->HandleCycleWindow(WindowCycleController::FORWARD, false); 86 controller->HandleCycleWindow(WindowCycleController::FORWARD, true); 100 controller->HandleCycleWindow(WindowCycleController::FORWARD, true); 106 controller->HandleCycleWindow(WindowCycleController::FORWARD, true); 110 controller->HandleCycleWindow(WindowCycleController::FORWARD, true); 114 controller->HandleCycleWindow(WindowCycleController::FORWARD, true); 138 controller->HandleCycleWindow(WindowCycleController::FORWARD, false) [all...] |
/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/Sema/ |
variadic-incomplete-arg-type.c | 4 typedef struct __CFError * CFErrorRef; // expected-note {{forward declaration of 'struct __CFError'}}
|
enum.c | 25 enum gccForwardEnumExtension ve; // expected-warning{{ISO C forbids forward references to 'enum' types}} \ 27 // expected-note{{forward declaration of 'enum gccForwardEnumExtension'}} 40 extern enum some_undefined_enum ve2; // expected-warning {{ISO C forbids forward references to 'enum' types}} 66 enum xpto; // expected-warning{{ISO C forbids forward references to 'enum' types}} 67 enum xpto; // expected-warning{{ISO C forbids forward references to 'enum' types}} 80 enum e1 (*bar)(void); // expected-warning{{ISO C forbids forward references to 'enum' types}} 101 extern enum PR7911T PR7911V; // expected-warning{{ISO C forbids forward references to 'enum' types}} 115 // expected-warning {{ISO C forbids forward references to 'enum' types}}
|
/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::'}}
|
/external/chromium_org/third_party/WebKit/Source/core/platform/text/ |
TextBreakIteratorICU.cpp | 124 static inline TextContext textGetContext(const UText* text, int64_t nativeIndex, UBool forward) 129 return forward ? PrimaryContext : PriorContext; 140 static void textLatin1MoveInPrimaryContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) 143 if (forward) { 161 text->chunkOffset = forward ? 0 : text->chunkLength; 165 static void textLatin1SwitchToPrimaryContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) 169 textLatin1MoveInPrimaryContext(text, nativeIndex, nativeLength, forward); 172 static void textLatin1MoveInPriorContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) 175 ASSERT(forward ? nativeIndex < text->b : nativeIndex <= text->b); 176 ASSERT_UNUSED(nativeLength, forward ? nativeIndex < nativeLength : nativeIndex <= nativeLength) [all...] |
/external/dnsmasq/contrib/try-all-ns/ |
dnsmasq-2.35-try-all-ns.patch | 12 diff -Nau dnsmasq-2.35/src/forward.c dnsmasq/src/forward.c 13 --- dnsmasq-2.35/src/forward.c 2006-10-18 16:24:50.000000000 -0400 14 +++ dnsmasq/src/forward.c 2006-11-16 22:08:19.000000000 -0500 17 struct server *server = forward->sentto; 23 if ((header->rcode == SERVFAIL || header->rcode == REFUSED) && forward->forwardall == 0) 40 {"dns-forward-max", 1, 0, '0'}, 56 { "-0, --dns-forward-max=<queries>", gettext_noop("Maximum number of concurrent DNS queries. (defaults to %s)"), "!" },
|