/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
VTTCue.h | 78 int position() const { return m_textPosition; } function in class:WebCore::FINAL 160 Position,
|
/external/chromium_org/third_party/closure_linter/closure_linter/ |
ecmalintrules.py | 38 from closure_linter.common import position namespace 54 Position = position.Position 210 Position.AtBeginning()) 274 token, Position(0, space_count)) 288 Position.All(last_code.string)) 301 token, Position.AtEnd(token.string)) 306 token.next, Position.All(token.next.string)) 316 token.next, Position.All(token.next.string) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_parse.h | 116 unsigned Position;
|
/external/chromium_org/v8/src/ |
mksnapshot.cc | 62 virtual int Position() { return data_.length(); } 64 int length = Position(); 109 fprintf(fp_, "const int Snapshot::size_ = %d;\n", Position()); 165 int length = partial_sink_.Position();
|
profile-generator.cc | 313 class Position { 315 explicit Position(ProfileNode* node) 334 List<Position> stack(10); 335 stack.Add(Position(root_)); 337 Position& current = stack.last(); 340 stack.Add(Position(current.current_child())); 344 Position& parent = stack[stack.length() - 2];
|
/external/chromium_org/v8/test/cctest/ |
test-serialize.cc | 189 virtual int Position() {
|
/external/clang/lib/Tooling/ |
JSONCompilationDatabase.cpp | 34 : Input(CommandLine), Position(Input.begin()-1) {} 51 if (*Position == '"') { 53 } else if (*Position == '\'') { 58 } while (*Position != ' '); 64 while (*Position != '"') { 66 String.push_back(*Position); 74 while (*Position != '\'') { 75 String.push_back(*Position); 84 String.push_back(*Position); 86 } while (*Position != ' ' && *Position != '"' && *Position != '\'') [all...] |
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
LzmaBench.cs | 130 public override Int64 Position { get { return 0; } set { } }
301 long compressedSize = compressedStream.Position;
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_parse.h | 116 unsigned Position;
|
/external/openfst/src/include/fst/ |
complement.h | 274 size_t Position() const { 308 virtual size_t Position_() const { return Position(); }
|
mutable-fst.h | 201 size_t Position() const { return data_.base->Position(); }
|
const-fst.h | 472 size_t Position() const { return i_; }
|
/external/v8/src/ |
mksnapshot.cc | 102 virtual int Position() { return data_.length(); } 104 int length = Position(); 149 fprintf(fp_, "const int Snapshot::size_ = %d;\n", Position()); 193 int length = partial_sink_.Position();
|
/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...] |
/art/compiler/utils/ |
assembler.h | 57 // Returns the position for bound and linked labels. Cannot be used 59 int Position() const { 80 void BindTo(int position) { 82 position_ = -position - kPointerSize; 86 void LinkTo(int position) { 88 position_ = position + kPointerSize; 105 virtual void Process(const MemoryRegion& region, int position) = 0; 115 int position() const { return position_; } function in class:art::AssemblerFixup 116 void set_position(int position) { position_ = position; } [all...] |
/external/clang/include/clang/AST/ |
ExternalASTSource.h | 375 /// \brief Position within the vector.. 377 /// In a complete iteration, the Position field walks the range [-M, N), 383 /// values (corresponding to loaded entities), so that position -M 384 /// corresponds to element 0 in the loaded entities vector, position -M+1 387 int Position; 398 iterator() : Self(0), Position(0) { } 400 iterator(LazyVector *Self, int Position) 401 : Self(Self), Position(Position) { } 404 if (Position < 0 [all...] |
/external/clang/lib/Lex/ |
Preprocessor.cpp | 357 // Find the byte position of the truncation point. 358 const char *Position = Buffer->getBufferStart(); 360 for (; *Position; ++Position) { 361 if (*Position != '\r' && *Position != '\n') 365 if ((Position[1] == '\r' || Position[1] == '\n') && 366 Position[0] != Position[1] [all...] |
/external/v8/test/cctest/ |
test-serialize.cc | 190 virtual int Position() {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
BinaryDictIOUtils.java | 46 private static final class Position { 54 public Position(int address, int length) { 71 Stack<Position> stack = new Stack<Position>(); 74 Position initPos = new Position(headerSize, 0); 78 Position p = stack.peek(); 82 p.mNumOfPtNode + ", position=" + p.mPosition + ", length=" + p.mLength); 88 if (p.mNumOfPtNode == Position.NOT_READ_PTNODE_COUNT) { 120 p.mNumOfPtNode = Position.NOT_READ_PTNODE_COUNT [all...] |
/external/chromium_org/crypto/ |
openpgp_symmetric_encryption.cc | 68 typedef base::StringPiece Position; 70 Position tell() const { 74 void Seek(Position p) { 285 const Reader::Position beginning_of_stream = reader->tell();
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Position.cpp | 27 #include "core/dom/Position.h" 83 Position::Position(PassRefPtr<Node> anchorNode, LegacyEditingOffset offset) 92 Position::Position(PassRefPtr<Node> anchorNode, AnchorType anchorType) 105 Position::Position(PassRefPtr<Node> anchorNode, int offset, AnchorType anchorType) 116 Position::Position(PassRefPtr<Text> textNode, unsigned offset) 125 void Position::moveToPosition(PassRefPtr<Node> node, int offset [all...] |
/external/clang/include/clang/Lex/ |
PreprocessingRecord.h | 382 /// \brief Position within the preprocessed entity sequence. 384 /// In a complete iteration, the Position field walks the range [-M, N), 390 /// values (corresponding to loaded entities), so that position -M 391 /// corresponds to element 0 in the loaded entities vector, position -M+1 394 int Position; 403 iterator() : Self(0), Position(0) { } 405 iterator(PreprocessingRecord *Self, int Position) 406 : Self(Self), Position(Position) { } 409 bool isLoaded = Position < 0 [all...] |
/external/clang/lib/AST/ |
CommentParser.cpp | 32 /// A position in \c Toks. 33 struct Position { 41 /// Current position in Toks. 42 Position Pos; 149 Position SavedPos = Pos; 182 Position SavedPos = Pos;
|
/external/clang/lib/Format/ |
UnwrappedLineParser.cpp | 30 virtual FormatToken *setPosition(unsigned Position) = 0; 89 virtual FormatToken *setPosition(unsigned Position) { 90 Token = PreviousTokenSource->setPosition(Position); 157 : Tokens(Tokens), Position(-1) {} 160 ++Position; 161 return Tokens[Position]; 165 assert(Position >= 0); 166 return Position; 170 Position = P; 171 return Tokens[Position]; [all...] |
/external/harfbuzz/src/ |
harfbuzz-indic.cpp | 478 enum Position { 914 static inline Position indic_position(unsigned short uc) { 917 return (Position) indicPosition[uc-0x900]; 951 Position position; member in struct:IndicOrdering [all...] |