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

1 2 3 4 5 6 7

  /external/chromium/base/
file_descriptor_shuffle.h 36 // Destructively move |src| to |dest|, overwriting |dest|. Returns true iff
38 virtual bool Move(int src, int dest) = 0;
50 virtual bool Move(int src, int dest);
file_descriptor_shuffle.cc 62 if (!delegate->Move(i->source, i->dest))
87 bool FileDescriptorTableInjection::Move(int src, int dest) {
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
README 12 * Move ant-contrib-1.0b3.jar from the unzipped directory to runtime/JavaScript/third/
16 * Move compiler.jar from the unzipped directory to runtime/JavaScript/third/
20 * Move the unzipped folder to runtime/JavaScript/third/jsdoc-toolkit
24 * Move the unzipped folder to runtime/JavaScript/tests/jsunit
  /external/chromium/net/disk_cache/
cache_util_posix.cc 19 // filesystem, so we just move each item in the cache to a new
33 if (!file_util::Move(name, destination)) {
34 LOG(ERROR) << "Unable to move cache item.";
40 return file_util::Move(from_path, to_path);
  /external/chromium/chrome/browser/tabs/
tab_strip_selection_model.h 83 // three tabs 'A B C', to move A to the end of the list, this should be
85 void Move(int from, int to);
tab_strip_selection_model_unittest.cc 117 model.Move(4, 0);
128 model.Move(0, 3);
  /external/elfutils/libelf/
gelf_xlate.h 71 TYPE (Move, LIBELFBITS)
abstract.h 289 /* Move information. */
290 #define Move(Bits, Ext) \
291 START (Bits, Move, Ext##Move) \
297 END (Bits, Ext##Move)
300 Move (32, Ext)
302 Move (64, Ext)
  /external/skia/legacy/src/animator/
SkDisplayAdd.h 50 DECLARE_MEMBER_INFO(Move);
  /external/skia/src/animator/
SkDisplayAdd.h 50 DECLARE_MEMBER_INFO(Move);
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 189 MoveRef Move(int);
191 Value x = Move(0);
192 Value y(Move(0));
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 173 void AsmPrinter::EmitCFIFrameMove(const MachineMove &Move) const {
176 const MachineLocation &Dst = Move.getDestination();
177 const MachineLocation &Src = Move.getSource();
189 assert(Dst.isReg() && "Machine move not supported yet.");
192 assert(!Dst.isReg() && "Machine move not supported yet.");
  /external/opencv/otherlibs/highgui/
bitstrm.h 131 void Move( int shift );
151 void Move( int shift );
bitstrm.cpp 435 void RLBitStream::Move( int shift )
457 Move( table_bits );
460 Move( code_bits );
472 Move( bytes*8 );
559 Move( table_bits );
562 Move( code_bits );
573 void RMBitStream::Move( int shift )
583 Move( bytes*8 );
  /external/v8/test/cctest/
test-macro-assembler-x64.cc 107 __ Move(rdx, Smi::FromInt(1));
144 __ Move(rcx, Smi::FromInt(0));
151 // Test that we can move a Smi value literally into a register.
196 __ Move(rcx, Smi::FromInt(x));
198 __ Move(rdx, Smi::FromInt(y));
406 __ Move(r8, Smi::FromInt(static_cast<int>(result)));
674 __ Move(rcx, Smi::FromInt(x));
695 __ Move(r8, Smi::FromInt(result));
856 __ Move(rcx, Smi::FromInt(first));
857 __ Move(rdx, Smi::FromInt(second))
    [all...]
  /dalvik/vm/mterp/mips/
entry.S 44 addu fp, sp, STACK_SIZE # Move Frame Pointer to the base of frame
49 move rSELF, a0 # set rSELF
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_model.h 91 void Move(int count);
  /frameworks/av/media/libstagefright/codecs/common/include/
voMem.h 49 VO_U32 (VO_API * Move) (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
  /external/opencv/cvaux/src/
_cvvectrack.h 116 void Move(CvRect& r, int dx, int dy)
123 void Move(CvPoint& p, int dx, int dy)
  /external/chromium/chrome/browser/history/
starred_url_database.h 175 bool Move(StarredNode* source, StarredNode* new_parent);
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
sdlexe.cpp 80 void Move(TInt aX, TInt aY);
102 void TVirtualCursor::Move(TInt aX, TInt aY)
640 iCursor.Move(0, -1);
643 iCursor.Move(0, 1);
646 iCursor.Move(-1, 0);
649 iCursor.Move(1, 0);
  /external/webkit/Source/WebCore/platform/
Cursor.cpp 110 case Cursor::Move:
205 case Cursor::Move:
206 return "Move";
286 DEFINE_STATIC_LOCAL(Cursor, c, (Cursor::Move));
  /external/v8/src/
splay-tree.h 93 // Move the node from one key to another.
94 bool Move(const Key& old_key, const Key& new_key);
  /external/openfst/src/include/fst/
partition.h 106 // use the Move() method move an element from once class to another.
120 // Move and element_id to class_id. Disconnects (removes) element
122 void Move(T element_id, T class_id) {
152 // move to head of chain in same class
153 Move(element_id, class_id);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
partition.h 101 // use the Move() method move an element from once class to another.
115 // Move and element_id to class_id. Disconnects (removes) element
117 void Move(T element_id, T class_id) {
147 // move to head of chain in same class
148 Move(element_id, class_id);

Completed in 604 milliseconds

1 2 3 4 5 6 7