Searched defs:previous (Results 1 - 25 of 238) sorted by relevance

12345678910

/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Daes_cbc.h54 v128_t previous; /* previous ciphertext block */ member in struct:__anon12807
/external/srtp/crypto/include/
H A Daes_cbc.h19 v128_t previous; /* previous ciphertext block */ member in struct:__anon31187
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DGlideAnimation.java8 public boolean animate(Drawable previous, R current, View view, Target<R> target); argument
H A DNoAnimation.java29 public boolean animate(Drawable previous, Object current, View view, Target target) { argument
H A DViewAnimation.java51 public boolean animate(Drawable previous, Object current, View view, Target target) { argument
H A DViewPropertyAnimation.java41 public boolean animate(Drawable previous, Object current, View view, Target target) { argument
/external/chromium_org/components/policy/core/common/
H A Dpolicy_service.cc29 const PolicyMap& previous,
35 const base::Value* prev = previous.GetValue(it->first);
28 OnPolicyUpdated(const PolicyNamespace& ns, const PolicyMap& previous, const PolicyMap& current) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeChildRemovalTracker.h45 NodeChildRemovalTracker* previous() { return m_previous; } function in class:blink::NodeChildRemovalTracker
68 for (NodeChildRemovalTracker* removal = s_last; removal; removal = removal->previous()) {
H A DNodeTraversal.cpp36 if (Node* previous = current.pseudoAwarePreviousSibling()) {
37 while (previous->pseudoAwareLastChild())
38 previous = previous->pseudoAwareLastChild();
39 return previous;
113 Node* NodeTraversal::previous(const Node& current, const Node* stayWithin) function in class:blink::NodeTraversal
118 Node* previous = current.previousSibling(); local
119 while (Node* child = previous->lastChild())
120 previous = child;
121 return previous;
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableRowsCollection.cpp48 HTMLTableRowElement* HTMLTableRowsCollection::rowAfter(HTMLTableElement& table, HTMLTableRowElement* previous) argument
52 if (previous && previous->parentNode() != table) {
53 if (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::nextSibling(*previous))
59 if (!previous)
61 else if (isInSection(*previous, theadTag))
62 child = Traversal<HTMLElement>::nextSibling(*previous->parentNode());
71 if (!previous || isInSection(*previous, theadTag))
73 else if (previous
[all...]
/external/chromium_org/v8/src/
H A Dvm-state.h32 ExternalCallbackScope* previous() { return previous_scope_; } function in class:v8::internal::BASE_EMBEDDED
/external/guava/guava/src/com/google/common/collect/
H A DAbstractIndexedListIterator.java61 * the element at that index, if available. Calls to {@link #previous()} can
98 public final E previous() { method in class:AbstractIndexedListIterator
H A DAbstractLinkedIterator.java29 * previous element. Null elements are not supported, nor is the
35 * protected Integer computeNext(Integer previous) {
36 * return (previous == 1 << 30) ? null : previous * 2;
58 * Returns the element that follows {@code previous}, or returns {@code null}
63 protected abstract T computeNext(T previous); argument
H A DDiscreteDomain.java27 * operations: {@link #next}, {@link #previous} and {@link #distance}, according
48 * #previous}.
65 public abstract C previous(C value); method in class:DiscreteDomain
69 * #next} (if positive) or {@link #previous} (if negative) are needed to reach
H A DForwardingListIterator.java57 public E previous() { method in class:ForwardingListIterator
58 return delegate().previous();
/external/proguard/src/proguard/gui/
H A DTabbedPane.java195 * Selects the previous tab.
197 public void previous() method in class:TabbedPane
199 cardLayout.previous(cardPanel);
/external/smack/src/org/xbill/DNS/
H A DSIG0.java32 * @param previous If this message is a response, the SIG(0) from the query
36 SIGRecord previous) throws DNSSEC.DNSSECException
47 SIGRecord sig = DNSSEC.signMessage(message, previous, key, privkey,
60 * @param previous If this message is a response, the SIG(0) from the query
63 verifyMessage(Message message, byte [] b, KEYRecord key, SIGRecord previous) argument
76 DNSSEC.verifyMessage(message, b, sig, previous, key);
35 signMessage(Message message, KEYRecord key, PrivateKey privkey, SIGRecord previous) argument
/external/smali/util/src/main/java/org/jf/util/
H A DAbstractListIterator.java53 public T previous() { method in class:AbstractListIterator
/external/chromium_org/base/containers/
H A Dlinked_list.h14 // list, as extending LinkNode (this gives it next/previous pointers).
48 // node = node->previous()) {
74 // "previous" pointers that reference other nodes in the list.
77 // space for the "next" and "previous" pointers (base::LinkNode<T>*).
79 // needs to glue on the "next" and "previous" pointers using
88 LinkNode(LinkNode<T>* previous, LinkNode<T>* next) argument
89 : previous_(previous), next_(next) {}
111 // next() and previous() return non-NULL if and only this node is not in any
117 LinkNode<T>* previous() const { function in class:base::LinkNode
146 // and root_->previous() wrap
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dpreferences_unittest.cc46 MyMockInputMethodManager(StringPrefMember* previous, argument
48 : previous_(previous),
81 StringPrefMember previous; local
82 previous.Init(prefs::kLanguagePreviousInputMethod, &prefs);
83 previous.SetValue("KeyboardA");
88 MyMockInputMethodManager mock_manager(&previous, &current);
95 EXPECT_EQ("KeyboardA", previous.GetValue());
/external/chromium_org/crypto/
H A Dhkdf.cc53 base::StringPiece previous; local
63 memcpy(buf.get(), previous.data(), previous.size());
64 size_t j = previous.size();
73 previous = base::StringPiece(reinterpret_cast<char*>(digest),
/external/chromium_org/device/hid/
H A Dhid_report_descriptor_item.cc26 HidReportDescriptorItem* previous)
27 : previous_(previous), next_(NULL), parent_(NULL), shortData_(0) {
40 if (previous) {
41 DCHECK(!previous->next_);
42 previous->next_ = this;
43 switch (previous->tag()) {
45 parent_ = previous;
53 if (previous->parent()) {
54 parent_ = previous->parent()->parent();
58 parent_ = previous
24 HidReportDescriptorItem( const uint8_t* bytes, HidReportDescriptorItem* previous) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx_context.h70 struct apple_glx_context *previous, *next; member in struct:apple_glx_context
/external/mesa3d/src/glx/apple/
H A Dapple_glx_context.h70 struct apple_glx_context *previous, *next; member in struct:apple_glx_context
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DHeaderIterator.java57 public Object previous() throws NoSuchElementException { method in class:HeaderIterator

Completed in 458 milliseconds

12345678910