/external/chromium_org/chrome/renderer/resources/extensions/ |
tag_watcher.js | 19 $Array.forEach(mutations, function(mutation) { 20 $Array.forEach(mutation.addedNodes, function(addedNode) { 32 // Expose a function to watch the |tagName| introduction via mutation observer. 34 // We employee mutation observer to watch on any introduction of |tagName| 37 // Think carefully about when to call this. On one hand, mutation observer
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
live_regions.js | 43 * mutation. Needed to allow live regions to fade in and have an initial 77 * Tracks nodes handled during mutation processing. 159 mutations.forEach(function(mutation) { 160 if (mutation.target.hasAttribute && 161 mutation.target.hasAttribute('cvoxIgnore')) { 164 if (mutation.addedNodes) { 165 for (var i = 0; i < mutation.addedNodes.length; i++) { 166 if (mutation.addedNodes[i].hasAttribute && 167 mutation.addedNodes[i].hasAttribute('cvoxIgnore')) { 171 mutation.addedNodes[i], mutation.target, false, true, handler) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
MutationObserverInterestGroup.cpp | 68 RefPtrWillBeRawPtr<MutationRecord> mutation = prpMutation; local 73 observer->enqueueMutationRecord(mutation); 77 if (mutation->oldValue().isNull()) 78 mutationWithNullOldValue = mutation; 80 mutationWithNullOldValue = MutationRecord::createWithNullOldValue(mutation).get();
|
ChildListMutationScope.h | 50 // is destructed the accumulator enqueues a mutation record for the recorded 62 // Register and unregister mutation scopes that are using this mutation 107 // the accumulator will enqueue a mutation record for the mutations.
|
ContainerNode.cpp | 183 // If it is, it can be deleted as a side effect of sending mutation events. 221 // We need this extra check because collectChildrenAndRemoveFromOldParent() can fire mutation events. 230 ChildListMutationScope mutation(*this); 235 // Due to arbitrary code running in response to a DOM mutation event it's 261 ASSERT(!newChild.parentNode()); // Use insertBefore if you need to handle reparenting (and want DOM mutation events). 324 // If it is, it can be deleted as a side effect of sending mutation events. 353 ChildListMutationScope mutation(*this); 391 // Due to arbitrary code running in response to a DOM mutation event it's 424 document().nodeWillBeRemoved(child); // e.g. mutation event listener can create a new range. 433 ChildListMutationScope mutation(*this) [all...] |
/external/chromium_org/ui/accessibility/extensions/alt/ |
hide-images.js | 39 mutations.forEach(function(mutation) { 40 if (!mutation.addedNodes || mutation.addedNodes.length == 0) 42 for (var i = 0; i < mutation.addedNodes.length; i++) { 43 var addedNode = mutation.addedNodes[i];
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
leak-observer-nonmain-world.html | 3 <p>Test that using mutation observers from the non-main world doesn't leak the document.</p>
|
/external/guava/guava/src/com/google/common/collect/ |
BstOperations.java | 56 * Returns the result of performing the mutation specified by {@code mutationRule} in {@code 63 * the tree will be rebuilt with the node factory of the mutation rule, but not rebalanced. 65 * the tree will be rebalanced using the balance policy of the mutation rule. 78 BstMutationResult<K, N> mutation = local 80 return mutation.lift( 88 * Perform the local mutation at the tip of the specified path. 110 * Perform the local mutation right here, at the specified node.
|
BstMutationResult.java | 30 * The result of a mutation operation performed at a single location in a binary search tree. 119 * If this mutation was to an immediate child subtree of the specified root on the specified 120 * side, returns the {@code BstMutationResult} of applying the mutation to the appropriate child 121 * of the specified root and rebalancing using the specified mutation rule.
|
/frameworks/av/services/audioflinger/ |
StateQueue.cpp | 78 ALOG_ASSERT(!mInMutation, "begin() called when in a mutation"); 85 ALOG_ASSERT(mInMutation, "end() called when not in a mutation"); 100 ALOG_ASSERT(!mInMutation, "push() called when in a mutation");
|
StateQueue.h | 89 // a mutation is pushed onto the queue. To the observer, the state pointers are 145 // Begin a mutation. Returns a pointer to a read/write state, except the 149 // this new mutation will be squashed together with the previous one. 152 // End the current mutation and indicate whether caller modified the state. 165 // Must not be called in the middle of a mutation. 200 bool mInMutation; // whether we're currently in the middle of a mutation
|
/dalvik/dexgen/src/com/android/dexgen/rop/ |
FieldList.java | 27 * of mutation, but that doesn't mean that there isn't a non-interface
|
AttributeList.java | 26 * of mutation, but that doesn't mean that there isn't a non-interface
|
/dalvik/dx/src/com/android/dx/cf/iface/ |
FieldList.java | 27 * of mutation, but that doesn't mean that there isn't a non-interface
|
MethodList.java | 26 * of mutation, but that doesn't mean that there isn't a non-interface
|
AttributeList.java | 26 * of mutation, but that doesn't mean that there isn't a non-interface
|
/external/chromium_org/tools/telemetry/telemetry/util/ |
path_set.py | 12 All mutation methods can take both directories or individual files, but the
|
/external/chromium_org/ui/base/models/ |
combobox_model.h | 35 // Adds/removes an observer. Override if model supports mutation.
|
/external/chromium_org/chrome/browser/history/ |
web_history_service.h | 99 // a mutation operation (e.g., deleting history). This is used to ensure that 100 // subsequent reads see a version of the data that includes the mutation.
|
/external/chromium_org/content/renderer/dom_storage/ |
dom_storage_cached_area.h | 71 // mutation events from other processes from overwriting local 72 // changes made after the mutation.
|
/external/chromium_org/sync/syncable/ |
syncable_write_transaction.h | 55 // We use a mutation map instead of a kernel set to avoid copying.
|
entry_kernel.cc | 229 const EntryKernelMutation& mutation) { 231 dict->Set("original", mutation.original.ToValue(NULL)); 232 dict->Set("mutated", mutation.mutated.ToValue(NULL));
|
/external/chromium_org/third_party/leveldatabase/src/issues/ |
issue200_test.cc | 7 // mutation has been added just before the current key.
|
/external/iptables/libiptc/ |
linux_list.h | 134 * with another list-mutation primitive, such as list_add_rcu() 155 * with another list-mutation primitive, such as list_add_tail_rcu() 206 * with another list-mutation primitive, such as list_del_rcu() 443 * the _rcu list-mutation primitives such as list_add_rcu() 462 * the _rcu list-mutation primitives such as list_add_rcu() 476 * the _rcu list-mutation primitives such as list_add_rcu() 495 * the _rcu list-mutation primitives such as list_add_rcu() 561 * with another list-mutation primitive, such as hlist_add_head_rcu() 602 * with another list-mutation primitive, such as hlist_add_head_rcu() 714 * the _rcu list-mutation primitives such as hlist_add_rcu( [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/type/ |
TypeList.java | 26 * means of mutation, but that doesn't mean that there isn't an
|