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

1 23 4 5 6 7 8 91011>>

  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 41 void setPosition(const char *position) {
42 assert(position);
44 this->position = position;
47 assert(position);
48 return position;
60 const char *position; member in class:clang::analyze_format_string::OptionalFlag
88 : Position(nullptr), kind(None) {}
90 : Position(pos), kind(k) {}
93 return Position;
    [all...]
  /build/blueprint/parser/
printer.go 25 var noPos = scanner.Position{}
33 pos scanner.Position
55 pos: scanner.Position{
131 func (p *printer) printList(list []Value, pos, endPos scanner.Position) {
151 func (p *printer) printMap(list []*Property, pos, endPos scanner.Position) {
188 func (p *printer) printToken(s string, pos scanner.Position) {
210 func (p *printer) printInLineCommentsBefore(pos scanner.Position) {
226 func (p *printer) printEndOfLineCommentsBefore(pos scanner.Position) {
248 func (p *printer) requestNewlinesForPos(pos scanner.Position) bool {
358 func (p *printer) unindent(pos scanner.Position) {
    [all...]
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
javascriptlintrules.py 36 from closure_linter.common import position
40 Position = position.Position
183 position=Position.All(token.string))
267 block_start, position=Position.AtBeginning(),
286 function.doc.end_token, position=Position.AtBeginning()
    [all...]
  /external/clang/lib/Lex/
Preprocessor.cpp 384 // Find the byte position of the truncation point.
385 const char *Position = Buffer->getBufferStart();
387 for (; *Position; ++Position) {
388 if (*Position != '\r' && *Position != '\n')
392 if ((Position[1] == '\r' || Position[1] == '\n') &&
393 Position[0] != Position[1]
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Transliterator.java 99 * accomplished by maintaining a cursor position (independent of the insertion point, and invisible in the GUI) across
106 * they are passed in and out via a Position object. The <code>start</code> index marks the beginning of the substring
246 * Position structure for incremental transliteration. This data
265 public static class Position {
281 * text, but points to the same logical position in the text.
297 * logical position in the text.
302 * Constructs a Position object with start, limit,
305 public Position() {
310 * Constructs a Position object with the given start,
314 public Position(int contextStart, int contextLimit, int start)
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
Transliterator.java 98 * accomplished by maintaining a cursor position (independent of the insertion point, and invisible in the GUI) across
105 * they are passed in and out via a Position object. The <code>start</code> index marks the beginning of the substring
247 * Position structure for incremental transliteration. This data
267 public static class Position {
284 * text, but points to the same logical position in the text.
302 * logical position in the text.
308 * Constructs a Position object with start, limit,
312 public Position() {
317 * Constructs a Position object with the given start,
322 public Position(int contextStart, int contextLimit, int start)
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
resolver_test.go 148 t.Errorf("%s: unresolved qualified identifier %s", fset.Position(x.Pos()), x.Name)
152 t.Errorf("%s: unresolved selector %s", fset.Position(s.Sel.Pos()), s.Sel.Name)
165 t.Errorf("%s: Uses[%s] == nil", fset.Position(id.Pos()), id.Name)
184 t.Errorf("%s: unresolved identifier %s", fset.Position(x.Pos()), x.Name)
202 t.Errorf("%s: identifier %s not present in source", fset.Position(x.Pos()), x.Name)
205 t.Errorf("%s: identifier %s not present in source", fset.Position(x.Pos()), x.Name)
  /prebuilts/go/linux-x86/src/go/types/
resolver_test.go 148 t.Errorf("%s: unresolved qualified identifier %s", fset.Position(x.Pos()), x.Name)
152 t.Errorf("%s: unresolved selector %s", fset.Position(s.Sel.Pos()), s.Sel.Name)
165 t.Errorf("%s: Uses[%s] == nil", fset.Position(id.Pos()), id.Name)
184 t.Errorf("%s: unresolved identifier %s", fset.Position(x.Pos()), x.Name)
202 t.Errorf("%s: identifier %s not present in source", fset.Position(x.Pos()), x.Name)
205 t.Errorf("%s: identifier %s not present in source", fset.Position(x.Pos()), x.Name)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
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/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TestBNF.java 115 Pick.Position pp = new Pick.Position();
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
TransliteratingTextComponent.java 120 Transliterator.Position index = new Transliterator.Position();
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
TestBNF.java 114 Pick.Position pp = new Pick.Position();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
VertexAttribute.java 81 public static VertexAttribute Position () {
82 return new VertexAttribute(Usage.Position, 3, ShaderProgram.POSITION_ATTRIBUTE);
  /external/llvm/include/llvm/Support/
Path.h 54 size_t Position; ///< The iterators current position within Path.
56 // An end iterator has Position = Path.size() + 1.
80 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 85 // Returns the position for bound and linked labels. Cannot be used
87 int Position() const {
108 void BindTo(int position) {
110 position_ = -position - sizeof(void*);
114 void LinkTo(int position) {
116 position_ = position + sizeof(void*);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/gles2/
HelloTriangle.java 40 mesh = new Mesh(true, 3, 0, new VertexAttribute(Usage.Position, 3, "vPosition"));
  /external/llvm/lib/Target/
TargetRecip.cpp 49 static bool parseRefinementStep(StringRef In, size_t &Position,
52 Position = In.find(RefStepToken);
53 if (Position == StringRef::npos)
56 StringRef RefStepString = In.substr(Position + 1);
  /libcore/ojluni/src/main/java/sun/security/util/
ManifestDigester.java 46 static class Position {
65 private boolean findSection(int offset, Position pos)
115 Position pos = new Position();
  /prebuilts/go/darwin-x86/src/cmd/cgo/
util.go 34 return fset.Position(pos).String()
52 fmt.Fprintf(os.Stderr, "%s: ", fset.Position(pos).String())
  /prebuilts/go/linux-x86/src/cmd/cgo/
util.go 34 return fset.Position(pos).String()
52 fmt.Fprintf(os.Stderr, "%s: ", fset.Position(pos).String())
  /external/vulkan-validation-layers/demos/smoke/
Meshes.cpp 36 struct Position {
56 // Position + Normal
75 // Position
108 positions_.emplace_back(Position{ v[0], v[1], v[2] });
131 const Position &pos = positions_[i];
164 std::vector<Position> positions_;
174 // position normal
214 // position normal
299 const Mesh::Position &pos_a = mesh_.positions_[a];
300 const Mesh::Position &pos_b = mesh_.positions_[b]
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/joints/
ConstantVolumeJoint.java 32 import org.jbox2d.dynamics.contacts.Position;
122 private float getSolverArea(Position[] positions) {
134 private boolean constrainEdges(Position[] positions) {
181 Position[] positions = step.positions;
218 Position[] positions = step.positions;
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
MeshBuilderTest.java 57 meshBuilder.begin(Usage.Position | Usage.Normal | Usage.ColorPacked | Usage.TextureCoordinates, GL20.GL_TRIANGLES);
67 MeshPartBuilder mpb = modelBuilder.part("box", GL20.GL_TRIANGLES, Usage.Position | Usage.Normal | Usage.TextureCoordinates
73 mpb = modelBuilder.part("sphere", GL20.GL_TRIANGLES, Usage.Position | Usage.Normal | Usage.TextureCoordinates
78 mpb = modelBuilder.part("cone", GL20.GL_TRIANGLES, Usage.Position | Usage.Normal | Usage.TextureCoordinates
84 mpb = modelBuilder.part("cylinder", GL20.GL_TRIANGLES, Usage.Position | Usage.Normal | Usage.TextureCoordinates

Completed in 747 milliseconds

1 23 4 5 6 7 8 91011>>