HomeSort by relevance Sort by last modified time
    Searched refs:sequence (Results 1 - 25 of 1361) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/compositor/test/
test_layer_animation_observer.cc 22 LayerAnimationSequence* sequence) {
23 last_ended_sequence_ = sequence;
27 LayerAnimationSequence* sequence) {
28 last_aborted_sequence_ = sequence;
32 LayerAnimationSequence* sequence) {
33 last_scheduled_sequence_ = sequence;
test_layer_animation_observer.h 15 // Listens to animation ended notifications. Remembers the last sequence that
23 LayerAnimationSequence* sequence) OVERRIDE;
26 LayerAnimationSequence* sequence) OVERRIDE;
29 LayerAnimationSequence* sequence) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaDeviceInfoCallback.idl 27 void handleEvent(sequence<MediaDeviceInfo> devices);
MediaStreamTrackSourcesCallback.idl 27 void handleEvent(sequence<SourceInfo> sources);
  /external/chromium_org/ui/compositor/
layer_animation_sequence_unittest.cc 24 // Check that the sequence behaves sanely when it contains no elements.
26 LayerAnimationSequence sequence; local
29 sequence.set_start_time(start_time);
30 EXPECT_TRUE(sequence.IsFinished(start_time));
33 sequence.properties());
34 EXPECT_FALSE(sequence.HasConflictingProperty(LayerAnimationElement::UNKNOWN));
40 LayerAnimationSequence sequence; local
47 sequence.AddElement(
52 sequence.set_start_time(start_time);
54 sequence.Start(&delegate)
74 LayerAnimationSequence sequence; local
117 LayerAnimationSequence sequence; local
206 LayerAnimationSequence sequence; local
242 LayerAnimationSequence sequence; local
264 LayerAnimationSequence sequence; local
    [all...]
layer_animation_observer.cc 26 LayerAnimationSequence* sequence) {
30 LayerAnimationSequence* sequence) {
35 LayerAnimationSequence* sequence = *attached_sequences_.begin(); local
36 sequence->RemoveObserver(this);
41 LayerAnimationSequence* sequence) {
42 DCHECK(attached_sequences_.find(sequence) == attached_sequences_.end());
43 attached_sequences_.insert(sequence);
44 OnAttachedToSequence(sequence);
48 LayerAnimationSequence* sequence, bool send_notification) {
49 if (attached_sequences_.find(sequence) != attached_sequences_.end()
    [all...]
layer_animation_observer.h 25 // Called when the |sequence| ends. Not called if |sequence| is aborted.
27 LayerAnimationSequence* sequence) = 0;
29 // Called if |sequence| is aborted for any reason. Should never do anything
32 LayerAnimationSequence* sequence) = 0;
36 LayerAnimationSequence* sequence) = 0;
51 // Called when |this| is added to |sequence|'s observer list.
52 virtual void OnAttachedToSequence(LayerAnimationSequence* sequence);
54 // Called when |this| is removed to |sequence|'s observer list.
55 virtual void OnDetachedFromSequence(LayerAnimationSequence* sequence);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
Animation.idl 35 Constructor(Element? target, sequence<Dictionary> keyframes),
36 Constructor(Element? target, sequence<Dictionary> keyframes, double timingInput),
37 Constructor(Element? target, sequence<Dictionary> keyframes, Dictionary timingInput),
ElementAnimation.idl 37 // AnimationPlayer animate((AnimationEffect or sequence<Dictionary>)? effect, optional (double or Dictionary) timing);
39 [RuntimeEnabled=WebAnimationsAPI] sequence<AnimationPlayer> getAnimationPlayers();
  /external/chromium_org/third_party/WebKit/Source/modules/vibration/
NavigatorVibration.idl 27 boolean vibrate(sequence<unsigned long> pattern);
  /external/chromium_org/third_party/WebKit/Source/modules/vibration/testing/
InternalsVibration.idl 33 sequence<unsigned long> pendingVibrationPattern(Document document);
  /external/chromium_org/content/common/
gamepad_hardware_buffer.h 28 OneWriterSeqLock sequence; member in struct:content::GamepadHardwareBuffer
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 223 @Override public int indexIn(CharSequence sequence) {
224 return (sequence.length() == 0) ? -1 : 0;
227 @Override public int indexIn(CharSequence sequence, int start) {
228 int length = sequence.length();
233 @Override public int lastIndexIn(CharSequence sequence) {
234 return sequence.length() - 1;
237 @Override public boolean matchesAllOf(CharSequence sequence) {
238 checkNotNull(sequence);
242 @Override public boolean matchesNoneOf(CharSequence sequence) {
243 return sequence.length() == 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecUTF8.cpp 93 static inline int decodeNonASCIISequence(const uint8_t* sequence, unsigned length)
95 ASSERT(!isASCII(sequence[0]));
97 ASSERT(sequence[0] <= 0xDF);
98 if (sequence[0] < 0xC2)
100 if (sequence[1] < 0x80 || sequence[1] > 0xBF)
102 return ((sequence[0] << 6) + sequence[1]) - 0x00003080;
105 ASSERT(sequence[0] >= 0xE0 && sequence[0] <= 0xEF)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
TestCallbackInterface.idl 33 void voidMethodSequenceArg(sequence<TestInterfaceEmpty> sequenceArg);
40 void voidMethodWillBeGarbageCollectedSequenceArg(sequence<TestInterfaceWillBeGarbageCollected> sequenceArg);
TestInterfaceConstructor2.idl 43 Constructor(sequence<sequence<DOMString>> stringSequenceSequenceArg),
  /external/chromium_org/third_party/leveldatabase/src/db/
db_iter.h 17 // "*internal_iter") that were live at the specified "sequence" number
23 SequenceNumber sequence,
  /external/chromium_org/third_party/skia/src/animator/
SkSnapshot.h 25 SkBool sequence; member in class:SkSnapshot
  /external/chromium_org/third_party/angle/src/compiler/translator/
InitializeVariables.cpp 54 TIntermSequence *sequence = node->getSequence(); local
55 ASSERT((sequence->size() == 1) || (sequence->size() == 2));
57 if (sequence->size() == 1)
60 sequence->push_back(body);
64 body = (*sequence)[1]->getAsAggregate();
79 void InitializeVariables::insertInitCode(TIntermSequence *sequence)
90 sequence->insert(sequence->begin(), assign);
107 sequence->insert(sequence->begin(), assign)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MessagePort.idl 32 [Custom, RaisesException] void postMessage(any message, optional sequence<Transferable> transfer);
MutationObserver.idl 37 sequence<MutationRecord> takeRecords();
  /external/chromium_org/third_party/WebKit/Source/core/workers/
DedicatedWorkerGlobalScope.idl 35 [Custom, RaisesException] void postMessage(any message, optional sequence<Transferable> transfer);
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIOutput.idl 39 [RaisesException] void send(sequence<unsigned long> data, optional double timestamp);
  /external/libcxx/test/containers/container.requirements/sequence.reqmts/
Android.mk 17 test_makefile := external/libcxx/test/containers/container.requirements/sequence.reqmts/Android.mk
19 test_name := containers/container.requirements/sequence.reqmts/nothing_to_do
  /external/llvm/bindings/python/llvm/tests/
test_disassembler.py 10 sequence = '\x67\xe3\x81' # jcxz -127
15 count, s = disassembler.get_instruction(sequence)
24 sequence = '\x67\xe3\x81\x01\xc7' # jcxz -127; addl %eax, %edi
28 instructions = list(disassembler.get_instructions(sequence))
35 sequence = '\x10\x40\x2d\xe9'
40 count, s = disassembler.get_instruction(sequence)

Completed in 723 milliseconds

1 2 3 4 5 6 7 8 91011>>