Home
last modified time | relevance | path

Searched refs:backward (Results 1 – 25 of 195) sorted by relevance

12345678

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
Dcommand_store.js202 'backward': {backward: true, property
210 'left': {backward: true, property
221 'previousCharacter': {backward: true, property
231 'previousWord': {backward: true, property
241 'previousLine': {backward: true, property
249 'previousSentence': {backward: true, property
259 'previousObject': {backward: true, property
269 'previousGroup': {backward: true, property
285 'jumpToBottom': {backward: true, property
291 'moveToEndOfLine': {backward: true, announce: true}, property
[all …]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
Dprint_layout_test_times.py68 if options.forward is None and options.backward is None:
76 by_key = times_by_key(times, options.forward, options.backward)
86 by_key = times_by_key(times, options.forward, options.backward)
91 key = key_for(test_name, options.forward, options.backward)
120 def key_for(path, forward, backward): argument
124 if backward is not None:
125 return sep.join(path.split(sep)[:-backward])
129 def times_by_key(times, forward, backward): argument
132 key = key_for(test_name, forward, backward)
/external/chromium_org/third_party/brotli/src/brotli/enc/
Dhash.h230 const size_t backward = cur_ix - prev_ix; in FindLongestMatch() local
231 if (PREDICT_FALSE(backward > max_backward)) { in FindLongestMatch()
257 best_ix = backward; in FindLongestMatch()
263 *in_dictionary = backward > max_backward; in FindLongestMatch()
273 const size_t backward = cur_ix - prev_ix; in FindLongestMatch() local
274 if (PREDICT_FALSE(backward > max_backward)) { in FindLongestMatch()
283 const double score = start_cost2 - 2.3 * Log2Floor(backward); in FindLongestMatch()
288 best_ix = backward; in FindLongestMatch()
302 const size_t backward = cur_ix - prev_ix; in FindLongestMatch() local
303 if (PREDICT_FALSE(backward > max_backward)) { in FindLongestMatch()
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DAbstractBiMap.java51 AbstractBiMap(Map<K, V> forward, Map<V, K> backward) { in AbstractBiMap() argument
52 setDelegates(forward, backward); in AbstractBiMap()
56 private AbstractBiMap(Map<K, V> backward, AbstractBiMap<V, K> forward) { in AbstractBiMap() argument
57 delegate = backward; in AbstractBiMap()
69 void setDelegates(Map<K, V> forward, Map<V, K> backward) { in setDelegates() argument
73 checkArgument(backward.isEmpty()); in setDelegates()
74 checkArgument(forward != backward); in setDelegates()
76 inverse = new Inverse<V, K>(backward, this); in setDelegates()
369 private Inverse(Map<K, V> backward, AbstractBiMap<V, K> forward) {
370 super(backward, forward);
/external/icu/icu4c/source/data/translit/
DThaiLogical_Latin.txt17 ห | $1 ← h ($notAbove*) \u0304; # backward case, account for reordering
53 ฝ | $1 ← f ($notAbove*) \u0304; # backward case, account for reordering
61 ศ | $1 ← s \u0323 ($notAbove*) \u0304; # backward case, account for reordering
64 ส | $1 ← s ($notAbove*) \u0304; # backward case, account for reordering
72 า | $1 ← a ($notAbove*) \u0304; # backward case, account for reordering
74 ำ | $1 ← a ($notAbove*) \u0309 ; # backward case, account for reordering
77 \u0E35 | $1 ← i ($notAbove*) \u0304 ; # backward case, account for reordering
79 \u0E37 | $1 ← u \u0323 ($notAbove*) \u0304 ; # backward case, account for reordering
82 \u0E39 | $1 ← u ($notAbove*) \u0304 ; # backward case, account for reordering
/external/chromium_org/third_party/icu/source/data/translit/
DThaiLogical_Latin.txt17 ห | $1 ← h ($notAbove*) \u0304; # backward case, account for reordering
53 ฝ | $1 ← f ($notAbove*) \u0304; # backward case, account for reordering
61 ศ | $1 ← s \u0323 ($notAbove*) \u0304; # backward case, account for reordering
64 ส | $1 ← s ($notAbove*) \u0304; # backward case, account for reordering
72 า | $1 ← a ($notAbove*) \u0304; # backward case, account for reordering
74 ำ | $1 ← a ($notAbove*) \u0309 ; # backward case, account for reordering
77 \u0E35 | $1 ← i ($notAbove*) \u0304 ; # backward case, account for reordering
79 \u0E37 | $1 ← u \u0323 ($notAbove*) \u0304 ; # backward case, account for reordering
82 \u0E39 | $1 ← u ($notAbove*) \u0304 ; # backward case, account for reordering
/external/guava/guava/src/com/google/common/collect/
DAbstractBiMap.java55 AbstractBiMap(Map<K, V> forward, Map<V, K> backward) { in AbstractBiMap() argument
56 setDelegates(forward, backward); in AbstractBiMap()
60 private AbstractBiMap(Map<K, V> backward, AbstractBiMap<V, K> forward) { in AbstractBiMap() argument
61 delegate = backward; in AbstractBiMap()
73 void setDelegates(Map<K, V> forward, Map<V, K> backward) { in setDelegates() argument
77 checkArgument(backward.isEmpty()); in setDelegates()
78 checkArgument(forward != backward); in setDelegates()
80 inverse = new Inverse<V, K>(backward, this); in setDelegates()
373 private Inverse(Map<K, V> backward, AbstractBiMap<V, K> forward) {
374 super(backward, forward);
/external/guava/guava-tests/test/com/google/common/collect/
DAbstractBiMapTest.java496 final BiMap<String, Integer> backward; field in AbstractBiMapTest.BiMapPair
500 this.backward = original.inverse(); in BiMapPair()
516 assertEquals(pair.backward, copy.backward); in testSerializationWithInverseEqual()
519 copy.backward.put("five", 5); in testSerializationWithInverseEqual()
520 assertEquals(copy.backward, copy.forward.inverse()); in testSerializationWithInverseEqual()
521 assertEquals(copy.forward, copy.backward.inverse()); in testSerializationWithInverseEqual()
525 assertTrue(copy.backward.containsValue(4)); in testSerializationWithInverseEqual()
526 assertTrue(copy.backward.containsValue(5)); in testSerializationWithInverseEqual()
529 assertTrue(copy.backward.containsKey("four")); in testSerializationWithInverseEqual()
530 assertTrue(copy.backward.containsKey("five")); in testSerializationWithInverseEqual()
[all …]
/external/chromium_org/ui/gfx/
Dselection_model.cc36 const bool backward = caret_affinity() == CURSOR_BACKWARD; in ToString() local
37 return str + (backward ? ",BACKWARD}" : ",FORWARD}"); in ToString()
/external/chromium_org/ui/views/controls/textfield/
Dtextfield_model.cc181 bool backward, in ReplaceEdit() argument
189 backward, in ReplaceEdit()
213 bool backward) in DeleteEdit() argument
216 (backward ? text_start + text.length() : text_start), in DeleteEdit()
219 backward, in DeleteEdit()
683 bool backward = range.is_reversed(); in ExecuteAndRecordDelete() local
684 Edit* edit = new DeleteEdit(mergeable, old_text, old_text_start, backward); in ExecuteAndRecordDelete()
709 bool backward = render_text_->selection().is_reversed(); in ExecuteAndRecordReplace() local
714 backward, in ExecuteAndRecordReplace()
/external/chromium_org/chrome/browser/ui/ash/
Dsession_state_delegate_chromeos_unittest.cc159 const ash::SessionStateDelegate::CycleUser backward = in TEST_F() local
161 session_state_delegate()->CycleActiveUser(backward); in TEST_F()
163 session_state_delegate()->CycleActiveUser(backward); in TEST_F()
165 session_state_delegate()->CycleActiveUser(backward); in TEST_F()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
Dmisc.py4 from coverage.backward import md5, sorted # pylint: disable=W0622
5 from coverage.backward import string_class, to_bytes
/external/guava/guava/src/com/google/common/primitives/
DPrimitives.java63 Map<Class<?>, Class<?>> backward, Class<?> key, Class<?> value) { in add() argument
65 backward.put(value, key); in add()
/external/chromium_org/third_party/icu/source/tools/tzcode/
Dtz.alias5 # Use the file 'icuzones' to specify backward compatibility aliases.
14 # A simple alias list. We use this to retain backward compatibility.
/external/speex/libspeex/
Dfftwrap.c249 kiss_fftr_cfg backward; member
258 table->backward = kiss_fftr_alloc(size,1,NULL,NULL); in spx_fft_init()
267 kiss_fftr_free(t->backward); in spx_fft_destroy()
300 kiss_fftri2(t->backward, in, out); in spx_ifft()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
Dnouveau_video.c288 bool forward, backward; in nouveau_vpe_mb_mv_header() local
300 backward = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_MOTION_BACKWARD; in nouveau_vpe_mb_mv_header()
302 assert(!backward || dec->future < 8); in nouveau_vpe_mb_mv_header()
315 if (backward && forward) { in nouveau_vpe_mb_mv_header()
320 } else assert(!backward); in nouveau_vpe_mb_mv_header()
337 if (backward && forward) in nouveau_vpe_mb_mv_header()
341 else assert(!backward); in nouveau_vpe_mb_mv_header()
357 if (backward) in nouveau_vpe_mb_mv_header()
374 if (backward) { in nouveau_vpe_mb_mv_header()
/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_video.c288 bool forward, backward; in nouveau_vpe_mb_mv_header() local
300 backward = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_MOTION_BACKWARD; in nouveau_vpe_mb_mv_header()
302 assert(!backward || dec->future < 8); in nouveau_vpe_mb_mv_header()
315 if (backward && forward) { in nouveau_vpe_mb_mv_header()
320 } else assert(!backward); in nouveau_vpe_mb_mv_header()
337 if (backward && forward) in nouveau_vpe_mb_mv_header()
341 else assert(!backward); in nouveau_vpe_mb_mv_header()
357 if (backward) in nouveau_vpe_mb_mv_header()
374 if (backward) { in nouveau_vpe_mb_mv_header()
/external/srec/doc/logs/srec/
Drecog4_SHIP_liveaudio.res3 R: backward
/external/elfutils/0.153/m4/
Dgettext.m4303 dnl For backward compatibility. Some packages may be using this.
326 dnl For backward compatibility. Some configure.ins may be using this.
330 dnl For backward compatibility. Some Makefiles may be using this.
334 dnl For backward compatibility. Some Makefiles may be using this.
338 dnl For backward compatibility. Some Makefiles may be using this.
342 dnl For backward compatibility. Some Makefiles may be using this.
354 dnl For backward compatibility. Some Makefiles may be using this.
/external/chromium_org/third_party/yasm/source/patched-yasm/m4/
Dgettext.m4303 dnl For backward compatibility. Some packages may be using this.
326 dnl For backward compatibility. Some configure.ins may be using this.
330 dnl For backward compatibility. Some Makefiles may be using this.
334 dnl For backward compatibility. Some Makefiles may be using this.
338 dnl For backward compatibility. Some Makefiles may be using this.
342 dnl For backward compatibility. Some Makefiles may be using this.
354 dnl For backward compatibility. Some Makefiles may be using this.
/external/bison/m4/
Dgettext.m4323 dnl For backward compatibility. Some packages may be using this.
346 dnl For backward compatibility. Some configure.ins may be using this.
350 dnl For backward compatibility. Some Makefiles may be using this.
354 dnl For backward compatibility. Some Makefiles may be using this.
358 dnl For backward compatibility. Some Makefiles may be using this.
362 dnl For backward compatibility. Some Makefiles may be using this.
374 dnl For backward compatibility. Some Makefiles may be using this.
/external/chromium_org/third_party/WebKit/ManualTests/
Dsvg-modify-deleted-selection.svg11 getSelection().modify('extend','backward','line');
/external/chromium_org/components/policy/resources/
DOWNERS3 # Chrome and Chrome OS). Thus, special attention to forward/backward
/external/llvm/test/Bitcode/
Dflags.ll7 ; forward and backward references.
/external/libexif/auto-m4/
Dgettext.m4283 dnl For backward compatibility. Some packages may be using this.
306 dnl For backward compatibility. Some configure.ins may be using this.
310 dnl For backward compatibility. Some Makefiles may be using this.
314 dnl For backward compatibility. Some Makefiles may be using this.
318 dnl For backward compatibility. Some Makefiles may be using this.
322 dnl For backward compatibility. Some Makefiles may be using this.
333 dnl For backward compatibility. Some Makefiles may be using this.

12345678