/external/skia/src/sksl/ir/ |
SkSLProgramElement.h | 28 ProgramElement(Position position, Kind kind) 29 : INHERITED(position)
|
SkSLSymbol.h | 27 Symbol(Position position, Kind kind, String name) 28 : INHERITED(position)
|
SkSLTypeReference.h | 21 TypeReference(const Context& context, Position position, const Type& type) 22 : INHERITED(position, kTypeReference_Kind, *context.fInvalid_Type)
|
SkSLVariableReference.h | 35 VariableReference(Position position, const Variable& variable, RefKind refKind = kRead_RefKind) 36 : INHERITED(position, kVariableReference_Kind, variable.fType) 88 Position(), 93 Position(), 97 Position(), 105 return std::unique_ptr<Expression>(new Constructor(Position(), c->fType, 110 return std::unique_ptr<Expression>(new Setting(Position(), s->fName,
|
SkSLField.h | 25 Field(Position position, const Variable& owner, int fieldIndex) 26 : INHERITED(position, kField_Kind, owner.fType.fields()[fieldIndex].fName)
|
SkSLFunctionDefinition.h | 21 FunctionDefinition(Position position, const FunctionDeclaration& declaration, 23 : INHERITED(position, kFunction_Kind)
|
SkSLFunctionReference.h | 22 FunctionReference(const Context& context, Position position, 24 : INHERITED(position, kFunctionReference_Kind, *context.fInvalid_Type)
|
SkSLReturnStatement.h | 20 ReturnStatement(Position position) 21 : INHERITED(position, kReturn_Kind) {}
|
SkSLStatement.h | 38 Statement(Position position, Kind kind) 39 : INHERITED(position)
|
SkSLUnresolvedFunction.h | 20 : INHERITED(Position(), kUnresolvedFunction_Kind, funcs[0]->fName)
|
/frameworks/base/tools/aapt2/text/ |
Utf8Iterator.h | 32 // Returns the current position of the iterator in bytes of the source UTF8 string. 33 // This position is the start of the codepoint returned by the next call to Next(). 34 size_t Position() const;
|
Utf8Iterator_test.cpp | 71 // Before any character, the position should be 0. 72 EXPECT_THAT(iter.Position(), Eq(0u)); 77 EXPECT_THAT(iter.Position(), Eq(1u)); 82 EXPECT_THAT(iter.Position(), Eq(2u)); 87 EXPECT_THAT(iter.Position(), Eq(6u)); 91 EXPECT_THAT(iter.Position(), Eq(expected.size()));
|
/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...] |
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/ |
init.c | 116 UINTN Index, Position, Length; 145 for (Position=0; Position < Length; Position += ISO_639_2_ENTRY_SIZE) { 151 if (CompareMem (Languages+Position, LangCode, ISO_639_2_ENTRY_SIZE) == 0) {
|
/build/blueprint/parser/ |
ast.go | 24 // Pos returns the position of the first token in the Expression 25 Pos() scanner.Position 26 // End returns the position of the beginning of the last token in the Expression 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...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SelectionHandles.java | 22 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.SelectionHandle.Position; 55 * @param point the mouse position (in layout coordinates) to test 107 mHandles.add(new SelectionHandle(x1, my, Position.LEFT_MIDDLE)); 109 mHandles.add(new SelectionHandle(x1, y1, Position.TOP_LEFT)); 112 mHandles.add(new SelectionHandle(x1, y2, Position.BOTTOM_LEFT)); 116 mHandles.add(new SelectionHandle(x2, my, Position.RIGHT_MIDDLE)); 118 mHandles.add(new SelectionHandle(x2, y1, Position.TOP_RIGHT)); 121 mHandles.add(new SelectionHandle(x2, y2, Position.BOTTOM_RIGHT)); 125 mHandles.add(new SelectionHandle(mx, y1, Position.TOP_MIDDLE)); 128 mHandles.add(new SelectionHandle(mx, y2, Position.BOTTOM_MIDDLE)) [all...] |
/cts/tests/tests/location/src/android/location/cts/asn1/supl2/ulp_components/ |
Position.java | 40 public class Position extends Asn1Sequence { 46 public Position() { 70 * Creates a new Position from encoded stream. 72 public static Position fromPerUnaligned(byte[] encodedBytes) { 73 Position result = new Position(); 79 * Creates a new Position from encoded stream. 81 public static Position fromPerAligned(byte[] encodedBytes) { 82 Position result = new Position(); [all...] |
/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...] |
/external/skia/src/sksl/ast/ |
SkSLASTPrecision.h | 21 ASTPrecision(Position position, Modifiers::Flag precision) 22 : INHERITED(position, kPrecision_Kind)
|
SkSLASTReturnStatement.h | 20 ASTReturnStatement(Position position, std::unique_ptr<ASTExpression> expression) 21 : INHERITED(position, kReturn_Kind)
|
SkSLASTSuffix.h | 29 ASTSuffix(Position position, Kind kind) 30 : INHERITED(position)
|
/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...] |