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

1 2 3 4 5 6

  /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) {
file_util_proxy.h 131 static bool Move(
  /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 38 TYPE (Move, LIBELFBITS)
abstract.h 256 /* Move information. */
257 #define Move(Bits, Ext) \
258 START (Bits, Move, Ext##Move) \
264 END (Bits, Ext##Move)
267 Move (32, Ext)
269 Move (64, Ext)
  /external/skia/src/animator/
SkDisplayAdd.h 58 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/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...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_model.h 91 void Move(int count);
  /frameworks/base/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/llvm/include/llvm/MC/
MCDwarf.h 232 enum OpType { SameValue, Remember, Restore, Move, RelMove };
236 // Move to & from location.
250 : Operation(Move), Label(L), Destination(D), Source(S) {
  /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/v8/src/
profile-generator-inl.h 91 tree_.Move(from, to);
splay-tree.h 91 // Move the node from one key to another.
92 bool Move(const Key& old_key, const Key& new_key);
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 210 void AsmPrinter::EmitCFIFrameMove(const MachineMove &Move) const {
213 const MachineLocation &Dst = Move.getDestination();
214 const MachineLocation &Src = Move.getSource();
226 assert(Dst.isReg() && "Machine move not supported yet.");
229 assert(!Dst.isReg() && "Machine move not supported yet.");
  /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/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);
  /external/v8/src/x64/
builtins-x64.cc     [all...]
full-codegen-x64.cc 210 Move(arguments_shadow->AsSlot(), rcx, rbx, rdx);
212 Move(arguments->AsSlot(), rax, rbx, rdx);
352 codegen()->Move(result_register(), slot);
398 __ Move(result_register(), lit);
431 __ Move(result_register(), lit);
449 __ Move(result_register(), reg);
466 __ Move(result_register(), reg);
484 __ Move(result_register(), isolate()->factory()->true_value());
487 __ Move(result_register(), isolate()->factory()->false_value());
604 void FullCodeGenerator::Move(Register destination, Slot* source)
    [all...]

Completed in 528 milliseconds

1 2 3 4 5 6