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

1 2 3 4 5 6 7

  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/equations/
Back.java 10 public abstract class Back extends TweenEquation {
11 public static final Back IN = new Back() {
20 return "Back.IN";
24 public static final Back OUT = new Back() {
33 return "Back.OUT";
37 public static final Back INOUT = new Back() {
47 return "Back.INOUT"
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
TempFiles.cpp 16 NDir::DeleteFileAlways(Paths.Back());
ArchiveName.cpp 38 if (!dirPrefix.IsEmpty() && IsPathSepar(dirPrefix.Back()))
SetProperties.cpp 53 wchar_t c = name.Back();
OpenArchive.h 268 // parts.Back() can contain alt stream name "nams:AltName"
395 const CArc *GetArc() const { return &Arcs.Back(); }
396 IInArchive *GetArchive() const { return Arcs.Back().Archive; }
397 IArchiveGetRawProps *GetArchiveGetRawProps() const { return Arcs.Back().GetRawProps; }
398 IArchiveGetRootProps *GetArchiveGetRootProps() const { return Arcs.Back().GetRootProps; }
Extract.cpp 34 const CArc &arc = arcLink.Arcs.Back();
66 if (IsPathSepar(elimPrefix.Back()))
430 CArc &arc = arcLink.Arcs.Back();
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
TweenEquations.java 3 import aurelienribon.tweenengine.equations.Back;
43 public static final Back easeInBack = Back.IN;
44 public static final Back easeOutBack = Back.OUT;
45 public static final Back easeInOutBack = Back.INOUT;
TweenUtils.java 3 import aurelienribon.tweenengine.equations.Back;
40 Back.IN, Back.OUT, Back.INOUT,
  /external/lzma/CPP/7zip/Archive/Common/
ItemNameUtils.cpp 47 if (newName.Back() == kOSDirDelimiter)
57 if (name.Back() == kOSDirDelimiter)
  /external/swiftshader/third_party/subzero/src/
IceThreading.h 48 /// MaxStaticSize, where the queue boundaries are denoted by the Front and Back
49 /// fields. Front==Back indicates an empty queue.
102 /// Lock guards access to WorkItems, Front, Back, and IsEnded.
110 /// Back is the index into WorkItems[] of where the next element will be
111 /// pushed. (More precisely, Back&MaxStaticSize is the index.) It is written
113 size_t Back = 0;
134 bool empty() const { return Front == Back; }
135 size_t size() const { return Back - Front; }
137 WorkItems[Back++ & MaxStaticSizeMask] = std::move(Item);
  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
ring_buffer.h 58 const T& Back() const { return Get(size_ - 1); }
60 T& Back() { return Get(size_ - 1); }
  /build/make/tools/droiddoc/templates-pdk/
sampleindex.cs 20 <p><a href="../index.html">&larr; Back</a></p>
  /external/doclava/res/assets/templates/
docpage.cs 28 <p><a href="<?cs var:parent.link ?>">&larr; Back to <?cs var:parent.title ?></a></p>
sample.cs 18 <p><a href="index.html">&larr; Back</a></p>
  /external/clang/lib/Sema/
SemaAttr.cpp 236 CurrentValue = Stack.back().Value;
237 CurrentPragmaLocation = Stack.back().PragmaLocation;
324 // see the default section, reset our current section back to null so we stop
410 unsigned rawType = Stack->back().first;
415 SourceLocation loc = Stack->back().second;
482 const std::pair<unsigned, SourceLocation> *Back = &Stack->back();
483 bool StartsWithPragma = Back->first != NoVisibility;
485 Diag(Back->second, diag::err_pragma_push_visibility_mismatch);
491 Back = &Stack->back()
    [all...]
  /external/lzma/CPP/Common/
ListFileUtils.cpp 19 if (s.Len() >= 2 && s[0] == kQuoteChar && s.Back() == kQuoteChar)
MyVector.h 233 const T& Back() const { return _items[_size - 1]; }
234 T& Back() { return _items[_size - 1]; }
456 const T& Back() const { return operator[](_v.Size() - 1); }
457 T& Back() { return operator[](_v.Size() - 1); }
  /external/swiftshader/third_party/LLVM/lib/Analysis/
BranchProbabilityInfo.cpp 290 BasicBlock *Back = *EI;
291 BP->setEdgeWeight(BB, Back, backWeight);
302 BasicBlock *Back = *EI;
303 BP->setEdgeWeight(BB, Back, inWeight);
  /compatibility/cdd/2_device-types/
2_4_watch-reqs.md 24 to the user, and the Back function except for when it is in `UI_MODE_TYPE_WATCH`.
  /external/ImageMagick/www/api/
deprecate.php 64 <p><a href="deprecate.php#">Back to top</a> ?
magick-deprecate.php 64 <p><a href="magick-deprecate.php#">Back to top</a> ?
magick.php 64 <p><a href="magick.php#">Back to top</a> ?
  /external/lzma/CPP/7zip/UI/FileManager/
ExtractCallback.h 116 MaxTotalAllocSize -= Files.Back().Data.Size();
126 CVirtFile &file = Files.Back();
  /external/vixl/src/aarch32/
location-aarch32.h 166 using ForwardRefListBase::Back;
199 return forward_.Back();
  /prebuilts/go/darwin-x86/src/container/list/
list.go 19 // list element (l.Back()) and the previous element of the first list
76 // Back returns the last element of list l or nil if the list is empty.
77 func (l *List) Back() *Element {
137 // PushBack inserts a new element e with value v at the back of list l and returns e.
176 // MoveToBack moves element e to the back of list l.
207 // PushBackList inserts a copy of an other list at the back of list l.
220 for i, e := other.Len(), other.Back(); i > 0; i, e = i-1, e.Prev() {

Completed in 376 milliseconds

1 2 3 4 5 6 7