/external/guava/guava/src/com/google/common/collect/ |
DescendingImmutableSortedMultiset.java | 25 private final transient ImmutableSortedMultiset<E> forward; field in class:DescendingImmutableSortedMultiset 27 DescendingImmutableSortedMultiset(ImmutableSortedMultiset<E> forward) { 28 super(forward.reverseComparator()); 29 this.forward = forward; 34 return forward.count(element); 39 return forward.lastEntry(); 44 return forward.firstEntry(); 49 return forward.size(); 54 return forward.createDescendingElementSet() [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingMultimapTest.java | 29 Multimap<String, Boolean> forward; field in class:ForwardingMultimapTest 41 forward = new ForwardingMultimap<String, Boolean>() { 49 forward.size(); 54 forward.isEmpty(); 59 forward.containsKey("asdf"); 64 forward.containsValue("asdf"); 69 forward.containsEntry("asdf", false); 74 forward.put("asdf", true); 79 forward.remove("asdf", false); 84 forward.remove("asfd", Collections.<Boolean>emptyList()) [all...] |
ForwardingTableTest.java | 26 private Table<String, Integer, Boolean> forward; field in class:ForwardingTableTest 38 forward = new ForwardingTable<String, Integer, Boolean>() { 46 forward.hashCode(); 51 forward.cellSet(); 56 forward.clear(); 61 forward.column(1); 66 forward.columnKeySet(); 71 forward.columnMap(); 76 forward.contains("blah", 1); 81 forward.containsColumn(1) [all...] |
ForwardingListIteratorTest.java | 28 private ForwardingListIterator<String> forward; field in class:ForwardingListIteratorTest 39 forward = new ForwardingListIterator<String>() { 47 forward.add("asdf"); 52 forward.hasNext(); 57 forward.hasPrevious(); 62 forward.next(); 67 forward.nextIndex(); 72 forward.previous(); 77 forward.previousIndex(); 82 forward.remove() [all...] |
ForwardingListTest.java | 138 private List<String> forward; field in class:ForwardingListTest 175 forward = new ForwardingList<String>() { 183 forward.add("asdf"); 188 forward.add(0, "asdf"); 193 forward.addAll(EMPTY_LIST); 198 forward.addAll(0, Collections.singleton("asdf")); 203 forward.clear(); 208 forward.contains(null); 213 forward.containsAll(EMPTY_LIST); 218 forward.get(0) [all...] |
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...] |
/external/clang/test/SemaObjC/ |
forward-class-receiver.m | 4 + new; // expected-note {{method 'new' is used for the forward class}} 8 @class NotKnown; // expected-note{{forward declaration of class here}} 12 [NotKnown new]; /* expected-warning {{receiver 'NotKnown' is a forward class and corresponding}} */
|
receiver-forward-class.m | 1 // RUN: %clang_cc1 -fsyntax-only -Wreceiver-forward-class -verify %s 2 // RUN: %clang_cc1 -x objective-c++ -fsyntax-only -Wreceiver-forward-class -verify %s 5 @class A; // expected-note {{forward declaration of class here}} 15 return [x width]; // expected-warning {{receiver type 'A' for instance message is a forward declaration}} \
|
forward-class-1.m | 3 @class FOO, BAR; // expected-note {{forward declaration of class here}} 6 @interface INTF : FOO // expected-error {{attempting to use the forward class 'FOO' as superclass of 'INTF'}} 26 // 2nd test of a forward class declaration matching a typedef name 41 @class XCElement; // expected-warning {{redefinition of forward class 'XCElement' of a typedef name of an object type is ignored}} 49 @class B; // expected-note {{forward declaration of class here}} 50 @interface A : B {} // expected-error {{attempting to use the forward class 'B' as superclass of 'A'}}
|
/external/dnsmasq/contrib/try-all-ns/ |
dnsmasq-2.47_no_nxdomain_until_end.patch | 1 diff -ur dnsmasq-2.47/src/forward.c dnsmasq-2.47-patched/src/forward.c 2 --- dnsmasq-2.47/src/forward.c 2009-02-01 17:59:48.000000000 +0200 3 +++ dnsmasq-2.47-patched/src/forward.c 2009-03-18 19:10:22.000000000 +0200 7 server = forward->sentto; 15 forward->forwardall == 0)
|
/external/clang/test/Sema/ |
cast-incomplete.c | 4 enum x; // expected-note {{forward declaration}} 5 extern struct y a; // expected-note {{forward declaration}} 6 extern union z b; // expected-note 2 {{forward declaration}}
|
/external/clang/test/SemaCXX/ |
MicrosoftCompatibility-cxx98.cpp | 4 //MSVC allows forward enum declaration 5 enum ENUM; // expected-warning {{forward references to 'enum' types are a Microsoft extension}} 8 enum ENUM1* var3 = 0;// expected-warning {{forward references to 'enum' types are a Microsoft extension}}
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
back-forward-during-alert-1.html | 2 View this page, then click <a href="back-forward-during-alert-2.html">here.</a>
|
bad-clearTimeout-crash.html | 1 If the back/forward cache is enabled, this test will crash instead of going to the next page that says PASS. 3 It cannot be automated because DumpRenderTree doesn't support the back/forward cache.
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/ |
forward.pass.cpp | 10 // test forward 43 static_assert(sizeof(test(std::forward<A&>(a))) == 1, ""); 44 static_assert(sizeof(test(std::forward<A>(a))) == 4, ""); 45 static_assert(sizeof(test(std::forward<A>(source()))) == 4, ""); 47 static_assert(sizeof(test(std::forward<const A&>(a))) == 2, ""); 48 // static_assert(sizeof(test(std::forward<const A&>(source()))) == 2, ""); 49 static_assert(sizeof(test(std::forward<const A>(a))) == 8, ""); 50 static_assert(sizeof(test(std::forward<const A>(source()))) == 8, ""); 52 static_assert(sizeof(test(std::forward<const A&>(ca))) == 2, ""); 53 // static_assert(sizeof(test(std::forward<const A&>(csource()))) == 2, "") [all...] |
/external/srec/doc/logs/srec/ |
recog4_SHIP_liveaudio.res | 1 R: forward 19 R: forward
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/ |
FwdLockFile.h | 27 * Attaches to an open Forward Lock file. The file position is assumed to be at the beginning of the 30 * @param[in] fileDesc The file descriptor of an open Forward Lock file. 39 * Reads the specified number of bytes from an open Forward Lock file. 41 * @param[in] fileDesc The file descriptor of an open Forward Lock file. 51 * Updates the file position within an open Forward Lock file. 53 * @param[in] fileDesc The file descriptor of an open Forward Lock file. 63 * Detaches from an open Forward Lock file. 65 * @param[in] fileDesc The file descriptor of an open Forward Lock file. 74 * Closes an open Forward Lock file. 76 * @param[in] fileDesc The file descriptor of an open Forward Lock file [all...] |
/external/clang/test/CodeGen/ |
2002-08-19-RecursiveLocals.c | 4 * figuring out the syntax for forward declaring a static variable. */ 10 static struct list B; /* Forward declare static */ 14 extern struct list D; /* forward declare normal var */
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p10.cpp | 4 template<> class X<int>; // expected-note{{forward}}
|
/external/llvm/test/Assembler/ |
2002-05-02-InvalidForwardRef.ll | 2 ; It looks like the assembler is not forward resolving the function declaraion
|
invalid-fwdref1.ll | 1 ; RUN: not llvm-as %s -disable-output 2>&1 | grep "invalid forward reference to function as global value!"
|
/external/dnsmasq/contrib/port-forward/ |
portforward | 3 # first column of this file, then a DNAT port-forward will be set up 5 # is port number(s). If there is only one, then the port-forward goes to 10 # To forward both TCP and UDP, two lines are required. 14 # will set up a port forward from port 80 on this host to port 80 18 # will set up a port forward from port 8080 on this host to port 80 23 # will port forward port 53 UDP and TCP from this host to port 53 on dnsserver.
|
/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
|