HomeSort by relevance Sort by last modified time
    Searched defs:move (Results 201 - 225 of 636) sorted by null

1 2 3 4 5 6 7 891011>>

  /toolchain/binutils/binutils-2.27/binutils/
ar.c 117 print_files, extract, move, quick_append
291 fprintf (s, _(" m[ab] - move file(s) in the archive\n"));
506 operation = move;
827 case move:
115 print_files, extract, move, quick_append enumerator in enum:operations
    [all...]
  /frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
AdapterHelperTest.java 360 // TODO test MOVE then remove items in between.
361 // TODO test MOVE then remove it, make sure it is not dispatched
1021 mTestAdapter.move(from, to);
1079 public void move(int from, int to) { method in class:AdapterHelperTest.TestAdapter
1082 AdapterHelper.UpdateOp.MOVE, from, to, null
1133 case AdapterHelper.UpdateOp.MOVE:
    [all...]
  /art/compiler/optimizing/
code_generator_mips64.cc 131 // move resolver.
208 // Move the class to the desired location.
360 // move resolver.
602 __ Move(temp1_, ref_reg);
678 __ Move(tmp, value);
791 __ Move(free_reg, index_reg);
1021 MoveOperands* move = moves_[index]; local
1026 MoveOperands* move = moves_[index]; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
FilesTest.java 462 Files.move(from, to);
  /external/icu/icu4c/source/test/intltest/
tstnorm.cpp 652 // move around and compare the iteration code points with
654 const char *move=moves; local
655 while((m=*move++)!=0) {
669 // copy the moves until the current (m) move, and terminate
672 history[move-moves]=0;
681 // copy the moves until the current (m) move, and terminate
684 history[move-moves]=0;
    [all...]
  /external/llvm/lib/Linker/
IRMover.cpp 375 /// See IRMover::move().
410 FoundError = std::move(E);
486 : DstM(DstM), SrcM(std::move(SrcM)), AddLazyFor(std::move(AddLazyFor)),
493 ValueMap.getMDMap() = std::move(SharedMDs);
497 ~IRLinker() { SharedMDs = std::move(*ValueMap.getMDMap()); }
751 // old form is deprecated, we should move this upgrade to
1348 Error IRMover::move( function in class:IRMover
    [all...]
  /external/python/cpython2/Lib/lib-tk/
ttk.py 1356 def move(self, item, parent, index): member in class:Treeview
    [all...]
  /external/python/cpython3/Lib/tkinter/
ttk.py 1360 def move(self, item, parent, index): member in class:Treeview
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
PlayerComponent.java 55 MOVE,
100 mState = State.MOVE;
118 protected void move(float time, float timeDelta, GameObject parentObject) { method in class:PlayerComponent
173 // Don't let our jets move us past specific speed thresholds.
293 case MOVE:
327 parentObject.setCurrentAction(GameObject.ActionType.MOVE);
328 mState = State.MOVE;
333 move(time, timeDelta, parentObject); method
509 if (parentObject.getCurrentAction() == ActionType.MOVE) {
  /external/skia/src/core/
SkStream.cpp 162 : fFILE(std::move(file))
169 : SkFILEStream(std::move(file), size, offset, offset)
234 bool SkFILEStream::move(long offset) { function in class:SkFILEStream
286 SkMemoryStream::SkMemoryStream(sk_sp<SkData> data) : fData(std::move(data)) {
302 return skstd::make_unique<SkMemoryStream>(std::move(data));
376 bool SkMemoryStream::move(long offset) { function in class:SkMemoryStream
691 : fBlockMemory(std::move(headRef)), fCurrent(fBlockMemory->fHead)
766 // If possible, move backward within the current block.
773 // Otherwise rewind and move forward.
777 bool move(long offset) override
    [all...]
  /external/skqp/src/core/
SkStream.cpp 158 : fFILE(std::move(file))
165 : SkFILEStream(std::move(file), size, offset, offset)
231 bool SkFILEStream::move(long offset) { function in class:SkFILEStream
268 SkMemoryStream::SkMemoryStream(sk_sp<SkData> data) : fData(std::move(data)) {
284 return skstd::make_unique<SkMemoryStream>(std::move(data));
358 bool SkMemoryStream::move(long offset) { function in class:SkMemoryStream
673 : fBlockMemory(std::move(headRef)), fCurrent(fBlockMemory->fHead)
748 // If possible, move backward within the current block.
755 // Otherwise rewind and move forward.
759 bool move(long offset) override
    [all...]
  /external/sonic/
Sonic.java 61 // Move samples from one array to another. May move samples down within an array, but not up.
62 private void move( method in class:Sonic
285 move(inputBuffer, numInputSamples, samples, 0, numSamples); method
328 move(inputBuffer, 0, inputBuffer, position, remainingSamples); method
339 move(outputBuffer, numOutputSamples, samples, position, numSamples); method
376 move(outputBuffer, 0, outputBuffer, numSamples, remainingSamples); method
397 move(samples, 0, outputBuffer, 0, numSamples); method
398 move(outputBuffer, 0, outputBuffer, numSamples, remainingSamples); method
422 move(outputBuffer, 0, outputBuffer, numSamples, remainingSamples) method
449 move(outputBuffer, 0, outputBuffer, numSamples, remainingSamples); method
697 move(pitchBuffer, numPitchSamples, outputBuffer, originalNumOutputSamples, numSamples); method
709 move(pitchBuffer, 0, pitchBuffer, numSamples, numPitchSamples - numSamples); method
842 move(outputBuffer, numOutputSamples, samples, position, period); method
    [all...]
  /external/tensorflow/tensorflow/core/lib/gtl/
optional_test.cc 57 int move = 0; member in struct:tensorflow::__anon39994::StructorListener
71 Listenable(Listenable&& /*unused*/) { ++listener->move; } // NOLINT
162 optional<int> empty_move(std::move(empty));
164 optional<int> opt42_move(std::move(opt42));
246 // this invokes the move constructor with a default constructed optional
258 : implicit(true), move(false) {}
260 : implicit(true), move(true) {}
261 explicit Convert(const Explicit&) : implicit(false), move(false) {}
262 explicit Convert(Explicit&&) : implicit(false), move(true) {}
265 bool move; member in struct:tensorflow::__anon39994::Convert
287 bool move; member in struct:tensorflow::__anon39994::ConvertFromOptional
    [all...]
  /external/webp/src/dsp/
lossless_enc_sse2.c 450 const uint32_t move = _mm_movemask_epi8(shift); local
451 dst[0] = 0xff000000 | ((move & 0xff) << 8);
452 dst[1] = 0xff000000 | (move & 0xff00);
  /libcore/luni/src/test/java/libcore/java/nio/file/
DefaultFileSystemProvider2Test.java 94 provider.move(filesSetup.getDataFilePath(), filesSetup.getTestPath());
102 provider.move(filesSetup.getDataFilePath(), filesSetup.getTestPath());
106 // Move to existing target file with REPLACE_EXISTING copy option.
110 provider.move(filesSetup.getDataFilePath(), filesSetup.getTestPath(), REPLACE_EXISTING);
116 provider.move(filesSetup.getTestPath(), filesSetup.getDataFilePath(), REPLACE_EXISTING);
125 provider.move(filesSetup.getDataFilePath(), filesSetup.getTestPath());
133 provider.move(filesSetup.getDataFilePath(), filesSetup.getTestPath(), ATOMIC_MOVE);
138 provider.move(filesSetup.getDataFilePath(), filesSetup.getTestPath(),
147 provider.move(null, filesSetup.getTestPath());
152 provider.move(filesSetup.getDataFilePath(), null)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/
ContactFilterCursor.java 346 public boolean move(int offset) { method in class:ContactFilterCursor
  /packages/apps/Email/provider_src/com/android/email/provider/
ContentCache.java 332 * We'll be happy to move to position 0 or -1
364 public final boolean move(int offset) { method in class:ContentCache.CachedCursor
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 46 /** Indicates the drag is a move. */
464 * Sets the view that should handle move events.
485 mDragObject.dragView.move(x, y);
594 // Ensure that we've processed a move event at the current pointer location.
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DragController.java 454 * Sets the view that should handle move events.
465 mDragObject.dragView.move(x, y);
574 // Move dragging to the final target.
DragView.java 565 move(touchX, touchY); method
582 * Move the window containing this view.
587 public void move(int touchX, int touchY) { method in class:DragView
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ConversationData.java 154 public boolean move(final int offset) { method in class:ConversationData.ReversedCursor
155 return super.move(-offset);
340 cursor.move(position);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
regex.h 419 * @brief Move-constructs a basic regular expression.
425 _M_automaton(std::move(__rhs._M_automaton)) function in class:basic_regex
496 * @brief Move-assigns one regular expression to another.
500 { return this->assign(std::move(__rhs)); }
539 * @brief The move-assignment operator.
546 basic_regex __tmp(std::move(__rhs));
1493 : _Base_type(std::move(__rhs)) function in class:match_results
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex.h 419 * @brief Move-constructs a basic regular expression.
425 _M_automaton(std::move(__rhs._M_automaton)) function in class:basic_regex
496 * @brief Move-assigns one regular expression to another.
500 { return this->assign(std::move(__rhs)); }
539 * @brief The move-assignment operator.
546 basic_regex __tmp(std::move(__rhs));
1493 : _Base_type(std::move(__rhs)) function in class:match_results
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 60 * returns the index that has been given to <code>move()</code>.
67 public void move(int index) { method in class:CodeIterator
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_ra.cpp 1100 // if this is a contraint-move there will only be a single use
1274 bool move = b->degree >= b->degreeLimit; local
    [all...]

Completed in 1071 milliseconds

1 2 3 4 5 6 7 891011>>