Searched refs:sequence (Results 1 - 25 of 1302) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-931.js30 var sequence = ''; variable
35 function first() { sequence += "1"; return o; }
36 function second() { sequence += "2"; return "f"; }
37 function third() { sequence += "3"; return 3; }
38 function fourth() { sequence += "4"; return 4; }
42 assertEquals("1234", sequence);
44 function second_prime() { sequence += "2'"; return 2; }
48 assertEquals("123412'34", sequence);
H A Dregress-1114040.js29 var sequence = "";
36 sequence += a;
38 return sequence;
43 var sequence = "";
50 sequence += a;
52 return sequence;
/external/chromium_org/ui/compositor/test/
H A Dtest_layer_animation_observer.cc22 LayerAnimationSequence* sequence) {
23 last_ended_sequence_ = sequence;
27 LayerAnimationSequence* sequence) {
28 last_aborted_sequence_ = sequence;
32 LayerAnimationSequence* sequence) {
33 last_scheduled_sequence_ = sequence;
21 OnLayerAnimationEnded( LayerAnimationSequence* sequence) argument
26 OnLayerAnimationAborted( LayerAnimationSequence* sequence) argument
31 OnLayerAnimationScheduled( LayerAnimationSequence* sequence) argument
H A Dtest_layer_animation_observer.h15 // 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/
H A DMediaDeviceInfoCallback.idl27 void handleEvent(sequence<MediaDeviceInfo> devices);
H A DMediaStreamTrackSourcesCallback.idl27 void handleEvent(sequence<SourceInfo> sources);
/external/chromium_org/ui/compositor/
H A Dlayer_animation_sequence_unittest.cc24 // 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
74 LayerAnimationSequence sequence; local
117 LayerAnimationSequence sequence; local
206 LayerAnimationSequence sequence; local
242 LayerAnimationSequence sequence; local
264 LayerAnimationSequence sequence; local
[all...]
H A Dlayer_animation_observer.cc26 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) !
25 OnAttachedToSequence( LayerAnimationSequence* sequence) argument
29 OnDetachedFromSequence( LayerAnimationSequence* sequence) argument
40 AttachedToSequence( LayerAnimationSequence* sequence) argument
47 DetachedFromSequence( LayerAnimationSequence* sequence, bool send_notification) argument
89 OnLayerAnimationEnded( LayerAnimationSequence* sequence) argument
102 OnLayerAnimationAborted( LayerAnimationSequence* sequence) argument
115 OnLayerAnimationScheduled( LayerAnimationSequence* sequence) argument
123 OnAttachedToSequence( LayerAnimationSequence* sequence) argument
127 OnDetachedFromSequence( LayerAnimationSequence* sequence) argument
140 UpdatePropertyAnimationStatus( LayerAnimationSequence* sequence, AnimationStatus status) argument
[all...]
H A Dlayer_animation_observer.h25 // 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/
H A DAnimation.idl35 Constructor(Element? target, sequence<Dictionary> keyframes),
36 Constructor(Element? target, sequence<Dictionary> keyframes, double timingInput),
37 Constructor(Element? target, sequence<Dictionary> keyframes, Dictionary timingInput),
H A DElementAnimation.idl37 // 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/
H A DNavigatorVibration.idl27 boolean vibrate(sequence<unsigned long> pattern);
/external/chromium_org/third_party/WebKit/Source/modules/vibration/testing/
H A DInternalsVibration.idl33 sequence<unsigned long> pendingVibrationPattern(Document document);
/external/chromium_org/content/common/
H A Dgamepad_hardware_buffer.h28 OneWriterSeqLock sequence; member in struct:content::GamepadHardwareBuffer
/external/guava/guava/src/com/google/common/base/
H A DCharMatcher.java223 @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
440 anyOf(final CharSequence sequence) argument
485 noneOf(CharSequence sequence) argument
738 matchesAnyOf(CharSequence sequence) argument
752 matchesAllOf(CharSequence sequence) argument
772 matchesNoneOf(CharSequence sequence) argument
788 indexIn(CharSequence sequence) argument
813 indexIn(CharSequence sequence, int start) argument
834 lastIndexIn(CharSequence sequence) argument
846 countIn(CharSequence sequence) argument
865 removeFrom(CharSequence sequence) argument
902 retainFrom(CharSequence sequence) argument
924 replaceFrom(CharSequence sequence, char replacement) argument
957 replaceFrom(CharSequence sequence, CharSequence replacement) argument
1002 trimFrom(CharSequence sequence) argument
1030 trimLeadingFrom(CharSequence sequence) argument
1052 trimTrailingFrom(CharSequence sequence) argument
1084 collapseFrom(CharSequence sequence, char replacement) argument
1116 trimAndCollapseFrom(CharSequence sequence, char replacement) argument
[all...]
/external/llvm/bindings/python/llvm/tests/
H A Dtest_disassembler.py10 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)
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecUTF8.cpp93 static inline int decodeNonASCIISequence(const uint8_t* sequence, unsigned length) argument
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[
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
H A DTestCallbackInterface.idl33 void voidMethodSequenceArg(sequence<TestInterfaceEmpty> sequenceArg);
40 void voidMethodWillBeGarbageCollectedSequenceArg(sequence<TestInterfaceWillBeGarbageCollected> sequenceArg);
H A DTestInterfaceConstructor2.idl43 Constructor(sequence<sequence<DOMString>> stringSequenceSequenceArg),
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_iter.h17 // "*internal_iter") that were live at the specified "sequence" number
23 SequenceNumber sequence,
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DInitializeVariables.cpp54 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) argument
90 sequence->insert(sequence->begin(), assign);
107 sequence
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMessagePort.idl32 [Custom, RaisesException] void postMessage(any message, optional sequence<Transferable> transfer);
H A DMutationObserver.idl37 sequence<MutationRecord> takeRecords();
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DDedicatedWorkerGlobalScope.idl35 [Custom, RaisesException] void postMessage(any message, optional sequence<Transferable> transfer);
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIOutput.idl39 [RaisesException] void send(sequence<unsigned long> data, optional double timestamp);

Completed in 318 milliseconds

1234567891011>>