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

<<21222324252627282930>>

  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/dng_sdk/source/
dng_read_image.cpp     [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 313 size_t Position = Comments.find('\n');
314 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
316 Comments = Comments.substr(Position+1);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adoint.h     [all...]
adoint_backcompat.h     [all...]
ksproxy.h 565 KSDDKAPI HRESULT WINAPI KsGetMediaType(int Position,AM_MEDIA_TYPE *AmMediaType,HANDLE FilterHandle,ULONG PinFactoryId);
winspool.h 242 DWORD Position;
258 DWORD Position;
284 DWORD Position;
310 DWORD Position;
    [all...]
  /art/compiler/optimizing/
code_generator_x86.h 373 return GetLabelOf(block)->Position();
code_generator_x86_64.h 355 return GetLabelOf(block)->Position();
  /external/clang/include/clang/Parse/
Parser.h 446 /// matched specific position in the grammar, provide code-completion results
668 /// parsing transaction". It gets instantiated to mark the token position and
671 /// token position. Example:
786 /// be created on the stack to coincide with the position where the
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/
CodedOutputStream.cs 71 private int position; field in class:Google.Protobuf.CodedOutputStream
93 this.position = offset;
102 this.position = 0;
150 /// Returns the current position in the stream, or the position in the output buffer
152 public long Position
158 return output.Position + position;
160 return position;
187 if (limit - position >= 4)
    [all...]
  /external/vulkan-validation-layers/demos/smoke/android/src/main/jni/
Smoke.push_constant.vert.h 51 MemberDecorate 87(gl_PerVertex) 0 BuiltIn Position
Smoke.vert.h 52 MemberDecorate 87(gl_PerVertex) 0 BuiltIn Position
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Parse/
Parser.h 468 /// matched specific position in the grammar, provide code-completion results
691 /// parsing transaction". It gets instantiated to mark the token position and
694 /// token position. Example:
817 /// be created on the stack to coincide with the position where the
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Parse/
Parser.h 468 /// matched specific position in the grammar, provide code-completion results
691 /// parsing transaction". It gets instantiated to mark the token position and
694 /// token position. Example:
817 /// be created on the stack to coincide with the position where the
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Parse/
Parser.h 468 /// matched specific position in the grammar, provide code-completion results
691 /// parsing transaction". It gets instantiated to mark the token position and
694 /// token position. Example:
817 /// be created on the stack to coincide with the position where the
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Parse/
Parser.h 468 /// matched specific position in the grammar, provide code-completion results
691 /// parsing transaction". It gets instantiated to mark the token position and
694 /// token position. Example:
817 /// be created on the stack to coincide with the position where the
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Parse/
Parser.h 468 /// matched specific position in the grammar, provide code-completion results
691 /// parsing transaction". It gets instantiated to mark the token position and
694 /// token position. Example:
817 /// be created on the stack to coincide with the position where the
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Parse/
Parser.h 468 /// matched specific position in the grammar, provide code-completion results
691 /// parsing transaction". It gets instantiated to mark the token position and
694 /// token position. Example:
817 /// be created on the stack to coincide with the position where the
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Parse/
Parser.h 468 /// matched specific position in the grammar, provide code-completion results
691 /// parsing transaction". It gets instantiated to mark the token position and
694 /// token position. Example:
817 /// be created on the stack to coincide with the position where the
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Parse/
Parser.h 468 /// matched specific position in the grammar, provide code-completion results
691 /// parsing transaction". It gets instantiated to mark the token position and
694 /// token position. Example:
817 /// be created on the stack to coincide with the position where the
    [all...]
  /prebuilts/go/darwin-x86/src/go/scanner/
scanner.go 23 // position and an error message. The position points to the beginning of
26 type ErrorHandler func(pos token.Position, msg string)
43 rdOffset int // reading offset (position after current character)
100 // for position information and it adds line information for each line.
139 s.err(s.file.Position(s.file.Pos(offs)), msg)
160 // update scanner position
169 offs := s.offset - 1 // position of initial '/'
571 // Scan scans the next token and returns the token position, the token,
706 // reset position to the beginning of the commen
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
resolver.go 75 check.errorf(s.Pos(), "extra init expr at %s", check.fset.Position(init.Pos()))
143 // explicitly provided. Instead, we extract it from position info of
152 srcDir = dir(check.fset.Position(check.files[0].Name.Pos()).Filename)
260 // they can have correct position information.
261 // (We must not modify their existing position
269 // add position to set of dot-import positions for this file
409 // TODO(gri) dot-imported objects don't have a position; reportAltDecl won't print anything
  /prebuilts/go/darwin-x86/src/text/template/parse/
node.go 28 Position() Pos // byte position of start of node in full original input string
37 // Pos represents a byte position in the original input text from which
41 func (p Pos) Position() Pos {
292 // SetPos sets the position. NewIdentifier is a public method so we can't modify its signature.
  /prebuilts/go/linux-x86/src/go/scanner/
scanner.go 23 // position and an error message. The position points to the beginning of
26 type ErrorHandler func(pos token.Position, msg string)
43 rdOffset int // reading offset (position after current character)
100 // for position information and it adds line information for each line.
139 s.err(s.file.Position(s.file.Pos(offs)), msg)
160 // update scanner position
169 offs := s.offset - 1 // position of initial '/'
571 // Scan scans the next token and returns the token position, the token,
706 // reset position to the beginning of the commen
    [all...]

Completed in 1635 milliseconds

<<21222324252627282930>>