HomeSort by relevance Sort by last modified time
    Searched full:forward (Results 1 - 25 of 7160) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tcpdump/tests/
spb_bpduv4.out 1 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205
2 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205
3 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205
4 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205
5 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205
6 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205
7 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205
8 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205
9 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 205
10 STP 802.1aq, Rapid STP, CIST Flags [Learn, Forward], length 20
    [all...]
  /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...]
  /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/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...]
Android.mk 17 test_makefile := external/libcxx/test/utilities/utility/forward/Android.mk
19 test_name := utilities/utility/forward/forward
20 test_src := forward.pass.cpp
23 test_name := utilities/utility/forward/move_if_noexcept
27 test_name := utilities/utility/forward/move_only
31 test_name := utilities/utility/forward/move_copy
  /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/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.
  /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/chromium_org/third_party/WebKit/public/web/
WebHistoryCommitType.h 12 // a new history entry to the back/forward list.
15 // back/forward list or session restore. The back/forward list is
23 // nor add entries to the back/forward list.
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p10.cpp 4 template<> class X<int>; // expected-note{{forward}}
  /external/deqp/targets/android/
launch.bat 2 adb %* forward tcp:50016 tcp:50016
  /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!"

Completed in 2008 milliseconds

1 2 3 4 5 6 7 8 91011>>