HomeSort by relevance Sort by last modified time
    Searched defs:Position (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/chromium_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/
tree.jquery.js 20 var $, BorderDropHint, DragAndDropHandler, DragElement, FolderElement, GhostDropHint, JqTreeWidget, KeyHandler, MouseWidget, Node, NodeElement, Position, SaveStateHandler, ScrollHandler, SelectNodeHandler, SimpleWidget, html_escape, indexOf, json_escapable, json_meta, json_quote, json_str, _indexOf, _ref, _ref1, _ref2,
305 Position = {
306 getName: function(position) {
307 return Position.strings[position - 1];
311 for (i = _i = 1, _ref1 = Position.strings.length; 1 <= _ref1 ? _i <= _ref1 : _i >= _ref1; i = 1 <= _ref1 ? ++_i : --_i) {
312 if (Position.strings[i - 1] === name) {
320 Position.BEFORE = 1;
322 Position.AFTER = 2;
324 Position.INSIDE = 3
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
matcher.py 22 from closure_linter.common import position namespace
27 Position = position.Position
position.py 23 class Position(object):
32 """Initialize the position object.
65 """Create a Position representing the end of the given string.
71 The created Position object.
73 return Position(len(string), 0)
77 """Returns whether this position is at the end of the given string.
83 Whether this position is at the end of the given string.
88 """Create a Position representing the beginning of any string.
91 The created Position object.
93 return Position(0, 0
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
matcher.py 22 from closure_linter.common import position namespace
27 Position = position.Position
position.py 23 class Position(object):
32 """Initialize the position object.
65 """Create a Position representing the end of the given string.
71 The created Position object.
73 return Position(len(string), 0)
77 """Returns whether this position is at the end of the given string.
83 Whether this position is at the end of the given string.
88 """Create a Position representing the beginning of any string.
91 The created Position object.
93 return Position(0, 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PositionIterator.cpp 38 PositionIterator::operator Position() const
65 m_offsetInAnchor = Position::uncheckedNextOffset(m_anchorNode, m_offsetInAnchor);
97 m_offsetInAnchor = Position::uncheckedPreviousOffset(m_anchorNode, m_offsetInAnchor);
154 return !m_offsetInAnchor && !Position::nodeIsUserSelectNone(m_anchorNode->parentNode());
157 return !Position::nodeIsUserSelectNone(m_anchorNode) && Position(*this).inRenderedText();
160 return (atStartOfNode() || atEndOfNode()) && !Position::nodeIsUserSelectNone(m_anchorNode->parentNode());
164 if (!Position::hasRenderedNonAnonymousDescendantsWithHeight(renderer))
165 return atStartOfNode() && !Position::nodeIsUserSelectNone(m_anchorNode);
166 return m_anchorNode->rendererIsEditable() && !Position::nodeIsUserSelectNone(m_anchorNode) && Position(*this).atEditingBoundary()
    [all...]
Position.h 53 class Position {
63 Position()
78 friend Position createLegacyEditingPosition(PassRefPtr<Node>, int offset);
82 Position(PassRefPtr<Node> anchorNode, LegacyEditingOffset);
85 Position(PassRefPtr<Node> anchorNode, AnchorType);
86 Position(PassRefPtr<Text> textNode, unsigned offset);
90 Position(PassRefPtr<Node> anchorNode, int offset, AnchorType);
98 Node* containerNode() const; // NULL for a before/after position anchored to a node with no parent
102 Position parentAnchoredEquivalent() const; // Convenience method for DOM positions that also fixes up some positions for editing
119 // These are convenience methods which are smart about whether the position is neighbor anchored or parent anchore
334 const Position& position() const { return m_position; } function in class:WebCore::PositionWithAffinity
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
ListenerParam.java 36 Position,
AudioParam.java 7 Position,
  /external/chromium_org/ash/display/
display_layout.h 26 enum Position {
36 static DisplayLayout FromInts(int position, int offsets);
39 DisplayLayout(Position position, int offset);
53 Position position; member in struct:ash::DisplayLayout
55 // The offset of the position of the secondary display. The offset is
  /external/chromium_org/chrome/browser/ui/views/location_bar/
location_bar_layout.h 24 enum Position {
29 LocationBarLayout(Position position, int item_edit_padding);
33 // - The |y| position inside its parent;
79 Position position_;
  /external/chromium_org/ui/base/models/
tree_node_iterator.h 35 // Position at the top of the _positions list must point to a node the
42 positions_.push(Position<NodeType>(node, index));
47 positions_.push(Position<NodeType>(node, 0));
60 // There must always be a valid node in the current Position index.
67 positions_.push(Position<NodeType>(result, 0));
71 // - the current index of the top() Position points to a valid node
75 positions_.pop(); // This Position is all processed, move to the next.
88 struct Position {
89 Position(PositionNodeType* node, int index) : node(node), index(index) {}
90 Position() : node(NULL), index(-1) {
    [all...]
  /external/llvm/include/llvm/Support/
FormattedStream.h 24 /// of line and column position, allowing padding out to specific column
49 /// Position - The current output column and line of the data that's
53 std::pair<unsigned, unsigned> Position;
62 /// current_pos - Return the current position within the stream,
65 // Our current position in the stream is all the contents which have been
66 // written to the underlying stream (*not* the current position of the
72 /// position after output.
88 : raw_ostream(), TheStream(0), DeleteStream(false), Position(0, 0) {
92 : raw_ostream(), TheStream(0), DeleteStream(false), Position(0, 0) {
128 unsigned getColumn() { return Position.first;
    [all...]
Path.h 53 size_t Position; ///< The iterators current position within Path.
55 // An end iterator has Position = Path.size() + 1.
  /external/clang/tools/clang-check/
ClangCheck.cpp 138 enum Position { BEGIN, END };
140 InsertAdjuster(const CommandLineArguments &Extra, Position Pos)
144 InsertAdjuster(const char *Extra, Position Pos)
166 const Position Pos;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js     [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascriptlintrules.py 37 from closure_linter.common import position namespace
41 Position = position.Position
179 Position.All(token.string))
253 block_start, Position.AtBeginning(),
272 function.doc.end_token, Position.AtBeginning())
286 return_flag.flag_token, Position.AtBeginning())
302 function.doc.end_token, Position.AtBeginning())
311 Position.AtBeginning()
    [all...]
indentation.py 26 from closure_linter.common import position namespace
37 Position = position.Position
170 Position(token.start_index, token.length)])
179 Position(token.start_index, token.length)])
228 Position(actual, expected[0])])
324 Hard stops are indentations defined by the position of another token as in
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/closure_linter/closure_linter/
javascriptlintrules.py 37 from closure_linter.common import position namespace
41 Position = position.Position
179 Position.All(token.string))
253 block_start, Position.AtBeginning(),
272 function.doc.end_token, Position.AtBeginning())
286 return_flag.flag_token, Position.AtBeginning())
302 function.doc.end_token, Position.AtBeginning())
311 Position.AtBeginning()
    [all...]
indentation.py 26 from closure_linter.common import position namespace
37 Position = position.Position
170 Position(token.start_index, token.length)])
179 Position(token.start_index, token.length)])
228 Position(actual, expected[0])])
324 Hard stops are indentations defined by the position of another token as in
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
Position.java 8 * This class represents the position of an entity in the world.
14 public class Position {
22 /* An optional time to associate with this position - for historical tracking */
25 /* Degree position */
29 * A new position expressed in decimal format
34 public Position(double dblLat, double dblLng) throws InvalidPositionException {
40 * A new position expressed in decimal format and degrees
46 // public Position(double dblLat, double dblLng, double degree) throws InvalidPositionException {
52 * A new position expressed in DegMin format
59 public Position(int latDeg, float latMin, int latQuad, int lngDeg
    [all...]
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 18 public override long Position
341 long compressedSize = inStream.Length - inStream.Position;
  /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...]

Completed in 1419 milliseconds

1 2 3 4