| /external/lzma/CS/7zip/Compress/LzmaAlone/ |
| LzmaAlone.cs | 18 public override long Position
341 long compressedSize = inStream.Length - inStream.Position;
|
| LzmaBench.cs | 130 public override Int64 Position { get { return 0; } set { } }
301 long compressedSize = compressedStream.Position;
|
| /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/ |
| GeneralLocation.java | 22 * Calculates coordinate position for general locations. 29 return getCoordinates(view, Position.BEGIN, Position.BEGIN); 35 return getCoordinates(view, Position.BEGIN, Position.MIDDLE); 41 return getCoordinates(view, Position.BEGIN, Position.END); 47 return getCoordinates(view, Position.MIDDLE, Position.BEGIN); 53 return getCoordinates(view, Position.MIDDLE, Position.MIDDLE) [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
| SelectionHandle.java | 42 /** The position of the handle in the selection rectangle */ 43 enum Position { 56 private Position(int swtCursor) { 89 /** The position of the handle in the selection rectangle */ 90 private final Position mPosition; 94 * corresponding to a handle at the given {@link Position}. 98 * @param position the position of the handle in the selection rectangle 100 public SelectionHandle(int centerX, int centerY, Position position) { [all...] |
| ResizeGesture.java | 23 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.SelectionHandle.Position; 136 * For the new mouse position, compute the resized bounds (the bounding rectangle that 138 * cases resizing will change the x/y position of the view as well (for example, in 145 Position direction = mHandle.getPosition(); 171 // The user is dragging the left edge, so the position is anchored on the 183 // The user is dragging the right edge, so the position is anchored on the 192 assert direction == Position.BOTTOM_MIDDLE || direction == Position.TOP_MIDDLE; 196 // The user is dragging the top edge, so the position is anchored on the 208 // The user is dragging the bottom edge, so the position is anchored on th [all...] |
| /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
| ecmalintrules.py | 38 from closure_linter.common import position namespace 54 Position = position.Position 210 Position.AtBeginning()) 274 token, Position(0, space_count)) 288 Position.All(last_code.string)) 301 token, Position.AtEnd(token.string)) 306 token.next, Position.All(token.next.string)) 316 token.next, Position.All(token.next.string) [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| Position.h | 53 class Position { 64 Position() 79 friend Position createLegacyEditingPosition(PassRefPtrWillBeRawPtr<Node>, int offset); 83 Position(PassRefPtrWillBeRawPtr<Node> anchorNode, LegacyEditingOffset); 86 Position(PassRefPtrWillBeRawPtr<Node> anchorNode, AnchorType); 87 Position(PassRefPtrWillBeRawPtr<Text> textNode, unsigned offset); 91 Position(PassRefPtrWillBeRawPtr<Node> anchorNode, int offset, AnchorType); 99 Node* containerNode() const; // NULL for a before/after position anchored to a node with no parent 103 Position parentAnchoredEquivalent() const; // Convenience method for DOM positions that also fixes up some positions for editing 120 // These are convenience methods which are smart about whether the position is neighbor anchored or parent anchore 336 const Position& position() const { return m_position; } function in class:WebCore::PositionWithAffinity [all...] |
| Position.cpp | 27 #include "core/dom/Position.h" 82 Position::Position(PassRefPtrWillBeRawPtr<Node> anchorNode, LegacyEditingOffset offset) 91 Position::Position(PassRefPtrWillBeRawPtr<Node> anchorNode, AnchorType anchorType) 104 Position::Position(PassRefPtrWillBeRawPtr<Node> anchorNode, int offset, AnchorType anchorType) 115 Position::Position(PassRefPtrWillBeRawPtr<Text> textNode, unsigned offset) 124 void Position::moveToPosition(PassRefPtrWillBeRawPtr<Node> node, int offset [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
| VTTCue.h | 82 int position() const { return m_textPosition; } function in class:WebCore::FINAL 166 Position,
|
| /external/chromium_org/third_party/closure_linter/closure_linter/ |
| ecmalintrules.py | 38 from closure_linter.common import position namespace 54 Position = position.Position 210 Position.AtBeginning()) 274 token, Position(0, space_count)) 288 Position.All(last_code.string)) 301 token, Position.AtEnd(token.string)) 306 token.next, Position.All(token.next.string)) 316 token.next, Position.All(token.next.string) [all...] |
| /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
| tgsi_parse.h | 116 unsigned Position;
|
| /external/chromium_org/v8/test/cctest/ |
| test-serialize.cc | 185 virtual int Position() {
|
| /external/clang/lib/Tooling/ |
| JSONCompilationDatabase.cpp | 34 : Input(CommandLine), Position(Input.begin()-1) {} 51 if (*Position == '"') { 53 } else if (*Position == '\'') { 58 } while (*Position != ' '); 64 while (*Position != '"') { 66 String.push_back(*Position); 74 while (*Position != '\'') { 75 String.push_back(*Position); 84 String.push_back(*Position); 86 } while (*Position != ' ' && *Position != '"' && *Position != '\'') [all...] |
| /external/llvm/lib/MC/MCDisassembler/ |
| Disassembler.cpp | 160 size_t Position = Comments.find('\n'); 161 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position); 163 Comments = Comments.substr(Position+1);
|
| /external/mesa3d/src/gallium/auxiliary/tgsi/ |
| tgsi_parse.h | 116 unsigned Position;
|
| /frameworks/native/include/input/ |
| VelocityTracker.h | 33 struct Position { 81 // The positions array contains position information for each pointer in order by 83 void addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions); 88 // Gets the velocity of the specified pointer id in position units per second. 131 const VelocityTracker::Position* positions) = 0; 163 const VelocityTracker::Position* positions); 178 VelocityTracker::Position positions[MAX_POINTERS]; 180 inline const VelocityTracker::Position& getPosition(uint32_t id) const { 206 const VelocityTracker::Position* positions); 240 const VelocityTracker::Position* positions) [all...] |
| /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/ |
| BinaryDictIOUtils.java | 69 private static final class Position { 77 public Position(int address, int length) { 93 Stack<Position> stack = new Stack<>(); 96 Position initPos = new Position(bodyOffset, 0); 100 Position p = stack.peek(); 104 p.mNumOfPtNode + ", position=" + p.mPosition + ", length=" + p.mLength); 110 if (p.mNumOfPtNode == Position.NOT_READ_PTNODE_COUNT) { 141 final Position childrenPos = new Position(ptNodeInfo.mChildrenAddress, index) [all...] |
| /art/compiler/utils/ |
| assembler.h | 83 // Returns the position for bound and linked labels. Cannot be used 85 int Position() const { 106 void BindTo(int position) { 108 position_ = -position - kPointerSize; 112 void LinkTo(int position) { 114 position_ = position + kPointerSize; 134 virtual void Process(const MemoryRegion& region, int position) = 0; 144 int position() const { return position_; } function in class:art::AssemblerFixup 145 void set_position(int position) { position_ = position; } [all...] |
| /external/chromium_org/v8/src/ |
| mksnapshot.cc | 39 virtual int Position() { return data_->length(); }
|
| profile-generator.cc | 290 class Position { 292 explicit Position(ProfileNode* node) 311 List<Position> stack(10); 312 stack.Add(Position(root_)); 314 Position& current = stack.last(); 317 stack.Add(Position(current.current_child())); 321 Position& parent = stack[stack.length() - 2];
|
| /external/clang/include/clang/AST/ |
| ExternalASTSource.h | 484 /// \brief Position within the vector.. 486 /// In a complete iteration, the Position field walks the range [-M, N), 492 /// values (corresponding to loaded entities), so that position -M 493 /// corresponds to element 0 in the loaded entities vector, position -M+1 496 int Position; 507 iterator() : Self(0), Position(0) { } 509 iterator(LazyVector *Self, int Position) 510 : Self(Self), Position(Position) { } 513 if (Position < 0 [all...] |
| /external/clang/lib/Lex/ |
| Preprocessor.cpp | 355 // Find the byte position of the truncation point. 356 const char *Position = Buffer->getBufferStart(); 358 for (; *Position; ++Position) { 359 if (*Position != '\r' && *Position != '\n') 363 if ((Position[1] == '\r' || Position[1] == '\n') && 364 Position[0] != Position[1] [all...] |
| /external/chromium_org/third_party/skia/third_party/harfbuzz/src/ |
| harfbuzz-indic.cpp | 478 enum Position { 914 static inline Position indic_position(unsigned short uc) { 917 return (Position) indicPosition[uc-0x900]; 951 Position position; member in struct:IndicOrdering [all...] |
| /external/clang/include/clang/Lex/ |
| PreprocessingRecord.h | 385 /// \brief Position within the preprocessed entity sequence. 387 /// In a complete iteration, the Position field walks the range [-M, N), 393 /// values (corresponding to loaded entities), so that position -M 394 /// corresponds to element 0 in the loaded entities vector, position -M+1 397 int Position; 406 iterator() : Self(nullptr), Position(0) { } 408 iterator(PreprocessingRecord *Self, int Position) 409 : Self(Self), Position(Position) { } 412 bool isLoaded = Position < 0 [all...] |
| /external/clang/lib/AST/ |
| CommentParser.cpp | 41 /// A position in \c Toks. 42 struct Position { 50 /// Current position in Toks. 51 Position Pos; 158 Position SavedPos = Pos; 191 Position SavedPos = Pos;
|