HomeSort by relevance Sort by last modified time
    Searched refs:Position (Results 176 - 200 of 1062) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Path.h 53 size_t Position; ///< The iterators current position within Path.
55 // An end iterator has Position = Path.size() + 1.
79 size_t Position; ///< The iterators current position within Path.
  /prebuilts/go/darwin-x86/src/go/scanner/
errors.go 15 // The position Pos, if valid, points to the beginning of
20 Pos token.Position
27 // don't print "<unknown position>"
28 // TODO(gri) reconsider the semantics of Position.IsValid
39 // Add adds an Error with given position and error message to an ErrorList.
40 func (p *ErrorList) Add(pos token.Position, msg string) {
69 // Sort sorts an ErrorList. *Error entries are sorted by position,
80 var last token.Position // initial last.Line is != any legal error line
  /prebuilts/go/linux-x86/src/go/scanner/
errors.go 15 // The position Pos, if valid, points to the beginning of
20 Pos token.Position
27 // don't print "<unknown position>"
28 // TODO(gri) reconsider the semantics of Position.IsValid
39 // Add adds an Error with given position and error message to an ErrorList.
40 func (p *ErrorList) Add(pos token.Position, msg string) {
69 // Sort sorts an ErrorList. *Error entries are sorted by position,
80 var last token.Position // initial last.Line is != any legal error line
  /art/compiler/utils/
label.h 80 // Returns the position for bound and linked labels. Cannot be used
82 int Position() const {
103 void BindTo(int position) {
105 position_ = -position - sizeof(void*);
109 void LinkTo(int position) {
111 position_ = position + sizeof(void*);
  /external/eigen/test/
stdlist_overload.cpp 28 template <class Container, class Position>
29 typename Container::iterator get(Container & c, Position position)
32 std::advance(it, position);
36 template <class Container, class Position, class Value>
37 void set(Container & c, Position position, const Value & value)
40 std::advance(it, position);
  /external/flatbuffers/tests/MyGame/Example/
TestSimpleTableWithEnum.cs 14 public static TestSimpleTableWithEnum GetRootAsTestSimpleTableWithEnum(ByteBuffer _bb, TestSimpleTableWithEnum obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
TableInNestedNS.cs 14 public static TableInNestedNS GetRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
  /external/flatbuffers/tests/namespace_test/NamespaceA/
SecondTableInA.cs 14 public static SecondTableInA GetRootAsSecondTableInA(ByteBuffer _bb, SecondTableInA obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
TableInC.cs 11 public static TableInC GetRootAsTableInC(ByteBuffer _bb, TableInC obj) { return (obj.__init(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
TableInFirstNS.cs 14 public static TableInFirstNS GetRootAsTableInFirstNS(ByteBuffer _bb, TableInFirstNS obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
  /external/flatbuffers/tests/namespace_test/NamespaceC/
TableInC.cs 14 public static TableInC GetRootAsTableInC(ByteBuffer _bb, TableInC obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
  /external/llvm/lib/Target/
TargetRecip.cpp 48 static bool parseRefinementStep(StringRef In, size_t &Position,
51 Position = In.find(RefStepToken);
52 if (Position == StringRef::npos)
55 StringRef RefStepString = In.substr(Position + 1);
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.c 47 ctx->Position = ctx->FullHeader.Header.HeaderSize;
62 return ctx->Position >=
88 copy_token(token, &ctx->Tokens[ctx->Position]);
89 ctx->Position++;
  /external/skia/src/sksl/ast/
SkSLASTForStatement.h 19 ASTForStatement(Position position, std::unique_ptr<ASTStatement> initializer,
22 : INHERITED(position, kFor_Kind)
SkSLASTFunction.h 22 ASTFunction(Position position, Modifiers modifiers, std::unique_ptr<ASTType> returnType,
25 : INHERITED(position, kFunction_Kind)
SkSLASTInterfaceBlock.h 26 ASTInterfaceBlock(Position position,
32 : INHERITED(position, kInterfaceBlock_Kind)
  /external/skia/src/sksl/ir/
SkSLForStatement.h 21 ForStatement(Position position, std::unique_ptr<Statement> initializer,
24 : INHERITED(position, kFor_Kind)
SkSLInterfaceBlock.h 28 InterfaceBlock(Position position, const Variable* var, String typeName, String instanceName,
31 : INHERITED(position, kInterfaceBlock_Kind)
SkSLPrefixExpression.h 41 Position(),
SkSLVarDeclarations.h 58 VarDeclarations(Position position, const Type* baseType,
60 : INHERITED(position, kVar_Kind)
  /libcore/ojluni/src/main/java/sun/security/util/
ManifestDigester.java 46 static class Position {
66 private boolean findSection(int offset, Position pos)
117 Position pos = new Position();
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/supl_pos_init/
SUPLPOSINIT.java 35 import android.location.cts.asn1.supl2.ulp_components.Position;
151 private Position position_;
152 public Position getPosition() {
156 * @throws ClassCastException if value is not a Position
159 this.position_ = (Position) value;
161 public Position setPositionToNewInstance() {
162 position_ = new Position();
371 return tag == null ? Position.getPossibleFirstTags() : ImmutableList.of(tag);
385 return "position : "
  /external/clang/lib/Tooling/Core/
Replacement.cpp 142 unsigned shiftedCodePositionInternal(const T &Replaces, unsigned Position) {
145 if (R.getOffset() + R.getLength() <= Position) {
149 if (R.getOffset() < Position &&
150 R.getOffset() + R.getReplacementText().size() <= Position) {
151 Position = R.getOffset() + R.getReplacementText().size() - 1;
155 return Position + Offset;
158 unsigned shiftedCodePosition(const Replacements &Replaces, unsigned Position) {
159 return shiftedCodePositionInternal(Replaces, Position);
165 unsigned Position) {
166 return shiftedCodePositionInternal(Replaces, Position);
    [all...]
  /external/llvm/lib/Target/Lanai/
LanaiInstrInfo.cpp 36 MachineBasicBlock::iterator Position,
45 BuildMI(MBB, Position, DL, get(Lanai::OR_I_LO), DestinationRegister)
51 MachineBasicBlock &MBB, MachineBasicBlock::iterator Position,
56 if (Position != MBB.end()) {
57 DL = Position->getDebugLoc();
63 BuildMI(MBB, Position, DL, get(Lanai::SW_RI))
71 MachineBasicBlock &MBB, MachineBasicBlock::iterator Position,
76 if (Position != MBB.end()) {
77 DL = Position->getDebugLoc();
83 BuildMI(MBB, Position, DL, get(Lanai::LDW_RI), DestinationRegister
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Meshes.cpp 30 struct Position {
50 // Position + Normal
69 // Position
102 positions_.emplace_back(Position{ v[0], v[1], v[2] });
125 const Position &pos = positions_[i];
158 std::vector<Position> positions_;
168 // position normal
208 // position normal
293 const Mesh::Position &pos_a = mesh_.positions_[a];
294 const Mesh::Position &pos_b = mesh_.positions_[b]
    [all...]

Completed in 441 milliseconds

1 2 3 4 5 6 78 91011>>