HomeSort by relevance Sort by last modified time
    Searched full:forward (Results 76 - 100 of 6234) sorted by null

1 2 34 5 6 7 8 91011>>

  /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}}
  /external/guava/guava-tests/test/com/google/common/collect/
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...]
ForwardingNavigableMapTest.java 266 forward = new ForwardingNavigableMap<String, Boolean>() {
289 forward().lowerEntry("key");
294 forward().lowerKey("key");
299 forward().floorEntry("key");
304 forward().floorKey("key");
309 forward().ceilingEntry("key");
314 forward().ceilingKey("key");
319 forward().higherEntry("key");
324 forward().higherKey("key");
329 forward().pollFirstEntry()
    [all...]
ForwardingMapTest.java 116 Map<String, Boolean> forward;
169 forward = new ForwardingMap<String, Boolean>() {
177 forward().size();
182 forward().isEmpty();
187 forward().remove(null);
192 forward().clear();
197 forward().containsKey("asdf");
202 forward().containsValue(false);
207 forward().get("asdf");
212 forward().put("key", false)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
thumb-b-bad.s 5 b . - 0xfffffe @ gas mis-assembles as a forward branch
15 g: b f @ gas mis-assembles as a forward branch
  /external/guava/guava-tests/test/com/google/common/cache/
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...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
X509CertificatePair.java 46 * Authorities. The ASN.1 structure is listed below. The forward certificate
49 * issued by this CA to another CA. When both the forward and the reverse
60 * forward [0] Certificate OPTIONAL,
78 private X509Certificate forward; field in class:X509CertificatePair
94 * @param forward The forward component of the certificate pair
100 public X509CertificatePair(X509Certificate forward, X509Certificate reverse)
102 if (forward == null && reverse == null) {
107 this.forward = forward;
    [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'}}
  /external/iptables/extensions/
libxt_mac.man 7 .B FORWARD
  /external/llvm/test/Assembler/
2002-05-02-InvalidForwardRef.ll 3 ; It looks like the assembler is not forward resolving the function declaraion
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug480.go 7 // Gccgo mishandled an import of a forward declared type.
issue8076.go 7 // Issue 8076. nilwalkfwd walked forward forever
  /prebuilts/go/linux-x86/test/fixedbugs/
bug480.go 7 // Gccgo mishandled an import of a forward declared type.
issue8076.go 7 // Issue 8076. nilwalkfwd walked forward forever
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
forward.d 2 #name: forward references
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
loc-3.s 1 # Check that a little bit of LOC:ing back and forward between code and
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/z8k/
jr-forw.d 3 #name: jr forward
  /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/droiddriver/src/io/appium/droiddriver/scroll/
Direction.java 29 FORWARD {
38 return FORWARD;
162 LogicalDirection forward = LogicalDirection.FORWARD; local
163 if (toPhysicalDirection(physicalDirection.axis(), forward) == physicalDirection) {
164 return forward;
166 return forward.reverse();
176 case FORWARD:
184 case FORWARD:

Completed in 502 milliseconds

1 2 34 5 6 7 8 91011>>