HomeSort by relevance Sort by last modified time
    Searched refs:Position (Results 51 - 75 of 1188) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
AnyTransliterator.java 28 private Position run;
35 run = new Position();
45 Position offsets, boolean isIncremental) {
105 // should be method on Position
106 public static String toString(Position offsets) {
115 public void reset(Replaceable text, Position expanse);
116 public void getExpanse(Position run);
118 public boolean next(Position run);
119 public void getCurrent(Position run);
139 private Position expanse = new Position()
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 214 StringRef::iterator Position= Range.begin();
218 if ((*Position & 0x80) == 0) {
219 return std::make_pair(*Position, 1);
223 if (Position + 1 != End &&
224 ((*Position & 0xE0) == 0xC0) &&
225 ((*(Position + 1) & 0xC0) == 0x80)) {
226 uint32_t codepoint = ((*Position & 0x1F) << 6) |
227 (*(Position + 1) & 0x3F);
233 if (Position + 2 != End &&
234 ((*Position & 0xF0) == 0xE0) &
    [all...]
  /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...]
  /build/blueprint/parser/
ast.go 24 // Pos returns the position of the first token in the Node
25 Pos() scanner.Position
26 // End returns the position of the character after the last token in the Node
27 End() scanner.Position
41 NamePos scanner.Position
44 EqualsPos scanner.Position
53 func (a *Assignment) Pos() scanner.Position { return a.NamePos }
54 func (a *Assignment) End() scanner.Position { return a.Value.End() }
61 TypePos scanner.Position
86 func (m *Module) Pos() scanner.Position { return m.TypePos
    [all...]
  /prebuilts/go/darwin-x86/src/go/token/
position_test.go 14 func checkPos(t *testing.T, msg string, got, want Position) {
34 checkPos(t, "nil NoPos", fset.Position(NoPos), Position{})
36 checkPos(t, "fset NoPos", fset.Position(NoPos), Position{})
75 checkPos(t, msg, f.Position(f.Pos(offs)), Position{f.Name(), offs, line, col})
76 checkPos(t, msg, fset.Position(p), Position{f.Name(), offs, line, col})
162 checkPos(t, msg, f.Position(f.Pos(offs)), Position{"bar", offs, 42, col}
    [all...]
  /prebuilts/go/linux-x86/src/go/token/
position_test.go 14 func checkPos(t *testing.T, msg string, got, want Position) {
34 checkPos(t, "nil NoPos", fset.Position(NoPos), Position{})
36 checkPos(t, "fset NoPos", fset.Position(NoPos), Position{})
75 checkPos(t, msg, f.Position(f.Pos(offs)), Position{f.Name(), offs, line, col})
76 checkPos(t, msg, fset.Position(p), Position{f.Name(), offs, line, col})
162 checkPos(t, msg, f.Position(f.Pos(offs)), Position{"bar", offs, 42, col}
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 93 Position rootStartTag = toPosition(root.getStart());
94 Position rootEndTag = toPosition(root.content().getStart());
126 Position start1 = toPosition(o1.getContext().getStart());
127 Position start2 = toPosition(o2.getContext().getStart());
138 Position endTagPosition = endTagPosition(element);
170 private static Position toPosition(Token token) {
171 return new Position(token.getLine() - 1, token.getCharPositionInLine());
174 private static Position toEndPosition(Token token) {
175 return new Position(token.getLine() - 1,
215 private static Position endTagPosition(ElementContext context)
225 Position position = toPosition(context.content().getStart()); local
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/FileSystem/BootMonFs/
BootMonFsApi.h 167 @retval EFI_DEVICE_ERROR On entry, the current file position is
186 IN UINT64 Position
193 OUT UINT64 *Position
249 Set a file's current position.
252 the file handle to set the requested position on.
253 @param[in] Position The byte position from the start of the file to set.
255 @retval EFI_SUCCESS The position was set.
263 IN UINT64 Position
267 Return a file's current position.
    [all...]
  /external/llvm/lib/Target/Mips/
MipsHazardSchedule.cpp 94 // Find the next real instruction from the current position.
95 static Iter getNextMachineInstr(Iter Position) {
96 Iter I = Position, E = Position->getParent()->end();
  /test/vts/drivers/hal/libcodecoverage/
GcdaParser.cpp 58 unsigned position; local
67 position = gcda_file_->Position();
73 base = gcda_file_->Position();
111 << gcda_file_->Position() << endl;
  /external/flatbuffers/tests/MyGame/Example2/
Monster.cs 16 public static Monster GetRootAsMonster(ByteBuffer _bb, Monster obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
  /external/flatbuffers/tests/MyGame/
InParentNamespace.cs 16 public static InParentNamespace GetRootAsInParentNamespace(ByteBuffer _bb, InParentNamespace obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UtilityExtensions.java 58 Transliterator.Position pos) {
71 Transliterator.Position pos) {
91 appendTo.append("INVALID Position {cs=" +
103 Transliterator.Position pos) {
112 Transliterator.Position pos) {
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/impl/
UtilityExtensions.java 56 Transliterator.Position pos) {
69 Transliterator.Position pos) {
89 appendTo.append("INVALID Position {cs=" +
101 Transliterator.Position pos) {
110 Transliterator.Position pos) {
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/
PositionRangeSteps.java 24 import com.github.javaparser.Position;
31 import static com.github.javaparser.Position.pos;
38 private Position position; field in class:PositionRangeSteps
39 private Position secondPosition;
45 position = null;
54 @Given("the position $line, $column")
56 this.position = pos(line, column);
68 @When("I compare to position $line, $column")
84 assertTrue(position.equals(secondPosition))
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtils.java 59 private static final class Position {
67 public Position(int address, int length) {
83 Stack<Position> stack = new Stack<>();
86 Position initPos = new Position(bodyOffset, 0);
90 Position p = stack.peek();
94 p.mNumOfPtNode + ", position=" + p.mPosition + ", length=" + p.mLength);
100 if (p.mNumOfPtNode == Position.NOT_READ_PTNODE_COUNT) {
131 final Position childrenPos = new Position(ptNodeInfo.mChildrenAddress, index)
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedOutputStreamTest.cs 299 Assert.AreEqual(1, cout.Position);
301 Assert.AreEqual(3, cout.Position);
304 Assert.AreEqual(4, cout.Position);
306 Assert.AreEqual(115, cout.Position);
309 Assert.AreEqual(116, cout.Position);
311 Assert.AreEqual(120, cout.Position);
320 Assert.AreEqual(1, cout.Position);
322 Assert.AreEqual(3, cout.Position);
325 Assert.AreEqual(4, cout.Position);
327 Assert.AreEqual(125, cout.Position);
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Filesystem/SemihostFs/Arm/
SemihostFs.h 102 @retval EFI_DEVICE_ERROR On entry, the current file position is
142 Return a file's current position.
145 the file handle to get the current position on.
146 @param[out] Position The address to return the file's current position value.
148 @retval EFI_SUCCESS The position was returned.
149 @retval EFI_INVALID_PARAMETER Position is a NULL pointer.
155 OUT UINT64 *Position
159 Set a file's current position.
162 the file handle to set the requested position on.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Smm/SmmScriptLib/
PiSmmS3SaveState.h 60 The opcode is inserted before or after the specified position in the boot script table. If Position is
61 NULL then that position is after the last opcode in the table (BeforeOrAfter is TRUE) or before
62 the first opcode in the table (BeforeOrAfter is FALSE). The position which is pointed to by
63 Position upon return can be used for subsequent insertions.
73 @param[in] BeforeOrAfter Specifies whether the opcode is stored before (TRUE) or after (FALSE) the position
74 in the boot script table specified by Position. If Position is NULL or points to
77 @param[in, out] Position On entry, specifies the position in the boot script table where the opcode will be
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/S3SaveStateDxe/
InternalS3SaveState.h 87 The opcode is inserted before or after the specified position in the boot script table. If Position is
88 NULL then that position is after the last opcode in the table (BeforeOrAfter is FALSE) or before
89 the first opcode in the table (BeforeOrAfter is TRUE). The position which is pointed to by
90 Position upon return can be used for subsequent insertions.
93 @param BeforeOrAfter Specifies whether the opcode is stored before (TRUE) or after (FALSE) the position
94 in the boot script table specified by Position. If Position is NULL or points to
97 @param Position On entry, specifies the position in the boot script table where the opcode will be
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/SmmS3SaveState/
InternalSmmSaveState.h 70 The opcode is inserted before or after the specified position in the boot script table. If Position is
71 NULL then that position is after the last opcode in the table (BeforeOrAfter is FALSE) or before
72 the first opcode in the table (BeforeOrAfter is TRUE). The position which is pointed to by
73 Position upon return can be used for subsequent insertions.
76 @param BeforeOrAfter Specifies whether the opcode is stored before (TRUE) or after (FALSE) the position
77 in the boot script table specified by Position. If Position is NULL or points to
80 @param Position On entry, specifies the position in the boot script table where the opcode will be
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
S3SaveState.h 65 The opcode is inserted before or after the specified position in the boot script table. If Position is
66 NULL then that position is after the last opcode in the table (BeforeOrAfter is TRUE) or before
67 the first opcode in the table (BeforeOrAfter is FALSE). The position which is pointed to by
68 Position upon return can be used for subsequent insertions.
78 @param[in] BeforeOrAfter Specifies whether the opcode is stored before (TRUE) or after (FALSE) the position
79 in the boot script table specified by Position. If Position is NULL or points to
82 @param[in, out] Position On entry, specifies the position in the boot script table where the opcode will be
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvwriter.cc 64 int64 MkvWriter::Position() const {
75 int32 MkvWriter::Position(int64 position) {
80 return _fseeki64(file_, position, SEEK_SET);
82 return fseeko(file_, static_cast<off_t>(position), SEEK_SET);
  /external/swiftshader/third_party/subzero/src/
IceFixups.h 39 intptr_t position() const { return position_; } function in class:Ice::AssemblerFixup
40 void set_position(intptr_t Position) { position_ = Position; }
  /frameworks/base/cmds/statsd/tests/condition/
SimpleConditionTracker_test.cpp 41 bool outputSlicedUid, Position position) {
49 simplePredicate.mutable_dimensions()->mutable_child(0)->set_position(position);
79 const Position position,
86 switch(position) {
87 case Position::FIRST:
90 case Position::LAST:
94 case Position::ANY:
269 for (Position position
    [all...]

Completed in 971 milliseconds

1 23 4 5 6 7 8 91011>>