| /external/doclava/src/com/google/doclava/ |
| D | SampleTagInfo.java | 68 SourcePositionInfo position) { in SampleTagInfo() 93 static String getTrimString(String line) { in getTrimString() 109 static String addLineNumber(String line, String num) { in addLineNumber() 121 String end = END_INCLUDE + "(" + id + ")"; in loadInclude() local 134 String line = lines.readLine(); in loadInclude() local 218 String line = lines.readLine(); in readFile() local
|
| /external/chromium_org/third_party/WebKit/Source/core/html/ |
| D | HTMLTextFormControlElement.cpp | 169 void HTMLTextFormControlElement::setSelectionEnd(int end) in setSelectionEnd() 211 …ntrolElement::setRangeText(const String& replacement, unsigned start, unsigned end, const String& … in setRangeText() 267 void HTMLTextFormControlElement::setSelectionRange(int start, int end, const String& directionStrin… in setSelectionRange() 278 void HTMLTextFormControlElement::setSelectionRange(int start, int end, TextFieldSelectionDirection … in setSelectionRange() 435 int end = m_cachedSelectionEnd; in selection() local 550 static void getNextSoftBreak(RootInlineBox*& line, Node*& breakNode, unsigned& breakOffset) in getNextSoftBreak() 581 RootInlineBox* line = renderer->firstRootBox(); in valueWithHardLineBreaks() local 594 unsigned position = 0; in valueWithHardLineBreaks() local 611 HTMLTextFormControlElement* enclosingTextFormControl(const Position& position) in enclosingTextFormControl()
|
| /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
| D | TemplateInterpreter.java | 317 int end = expressionEvaluator.evaluate(node.getExpression()).asNumber(); in caseALoopToCommand() local 324 loop(node.getVariable(), 0, end, 1, node.getCommand()); in caseALoopToCommand() local 334 int end = expressionEvaluator.evaluate(node.getEnd()).asNumber(); in caseALoopCommand() local 341 loop(node.getVariable(), start, end, 1, node.getCommand()); in caseALoopCommand() local 352 int end = expressionEvaluator.evaluate(node.getEnd()).asNumber(); in caseALoopIncCommand() local 365 loop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand() local 540 private void loop(PVariable loopVar, int start, int end, int incr, PCommand command) { in loop() 642 private void setLastPosition(PPosition position) { in setLastPosition() 653 int line = node.getLine(); in caseTCsOpen() local
|
| /external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
| D | TemplateTranslator.java | 377 JavaExpression end = expressionTranslator.translateToNumber(node.getExpression()); in caseALoopToCommand() local 379 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopToCommand() local 390 JavaExpression end = expressionTranslator.translateToNumber(node.getEnd()); in caseALoopCommand() local 392 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopCommand() local 404 JavaExpression end = expressionTranslator.translateToNumber(node.getEnd()); in caseALoopIncCommand() local 406 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand() local 409 private void writeLoop(PVariable itemVariable, JavaExpression start, JavaExpression end, in writeLoop() 809 private void capturePosition(PPosition position) { in capturePosition() 819 int line = node.getLine(); in caseTCsOpen() local
|
| /external/chromium_org/ui/gfx/ |
| D | render_text.cc | 246 SkScalar position) { in SetUnderlineMetrics() 343 const Point end = start_ + Vector2d(total_length_, -height); in Draw() local 389 void StyleIterator::UpdatePosition(size_t position) { in UpdatePosition() 522 void RenderText::SetCursorPosition(size_t position) { in SetCursorPosition() 784 void RenderText::DrawCursor(Canvas* canvas, const SelectionModel& position) { in DrawCursor() 1007 size_t line = 0; in ToViewPoint() local 1027 for (size_t line = 0; line < lines_.size(); ++line) { in TextBoundsToViewBounds() local 1123 void RenderText::MoveCursorTo(size_t position, bool select) { in MoveCursorTo() 1145 size_t end = start; in UpdateLayoutText() local
|
| /external/chromium_org/v8/src/ |
| D | liveedit-debugger.js | 376 position: break_point_position, property 377 line: break_point.line(), property 413 position: updated_position, property 414 line: new_location.line, property 977 function createPositionStruct(script, position) { argument 996 end: createPositionStruct(script, e.endPosition) property
|
| D | messages.js | 358 function ScriptLineFromPosition(position) { argument 397 function ScriptLocationFromPosition(position, argument 629 function SourceLocation(script, position, line, column, start, end) { argument
|
| D | log.cc | 192 Name* source, int line, int column) { in CodeCreateEvent() 505 int32_t position; member 714 int position, in AddCodeLinePosInfoEvent() 1058 uintptr_t end) { in SharedLibraryEvent() 1416 Name* source, int line, int column) { in CodeCreateEvent() 1532 int position) { in CodeLinePosInfoAddPositionEvent() 1542 int position) { in CodeLinePosInfoAddStatementPositionEvent()
|
| D | gdb-jit.cc | 49 uintptr_t position() const { in position() function in v8::internal::BASE_EMBEDDED 177 uintptr_t end = writer->position(); in WriteBody() local 323 uintptr_t end = w->position(); in WriteBody() local 1447 intptr_t line = 1; in WriteBodyInternal() local 2147 void GDBJITInterface::RemoveCodeRange(Address start, Address end) { in RemoveCodeRange()
|
| D | objects.cc | 8906 int position = 0; in CalculateLineEndsImpl() local 10259 int line = 0; in GetLineNumber() local 10767 int position = RelocInfo::kNoPosition; // Initially no position found. in SourcePosition() local 10800 int position = SourcePosition(pc); in SourceStatementPosition() local 11937 int end = starts.at(group + 1); in Insert() local 11980 int end = starts.at(group + 1); in UpdateToFinishedCode() local 12003 int end = starts.at(group + 1); in RemoveCompilationInfo() local 12046 int end = starts.at(group + 1); in Contains() local 12063 int end = starts.at(group + 1); in MarkCodeForDeoptimization() local
|
| /external/chromium_org/third_party/WebKit/Source/core/rendering/ |
| D | RenderBlockLineLayout.cpp | 208 static inline bool endsWithASCIISpaces(const CharacterType* characters, unsigned pos, unsigned end) in endsWithASCIISpaces() 475 … HashSet<const SimpleFontData*>::const_iterator end = wordMeasurement.fallbackFonts.end(); in setLogicalWidthForTextRun() local 819 …romBidiRuns(unsigned bidiLevel, BidiRunList<BidiRun>& bidiRuns, const InlineIterator& end, LineInf… in createLineBoxesFromBidiRuns() 882 …for (RootInlineBox* line = startLine->prevRootBox(); line && line->isHyphenated(); line = line->pr… in layoutRunsAndFloats() local 1051 FloatingObjectSetIterator end = floatingObjectSet.end(); in layoutRunsAndFloatsInRange() local 1144 for (RootInlineBox* line = layoutState.endLine(); line; line = line->nextRootBox()) { in linkToEndLineIfNeeded() local 1155 Vector<RenderBox*>::iterator end = cleanLineFloats->end(); in linkToEndLineIfNeeded() local 1195 FloatingObjectSetIterator end = floatingObjectSet.end(); in linkToEndLineIfNeeded() local 1751 void RenderBlockFlow::checkFloatsInCleanLine(RootInlineBox* line, Vector<FloatWithRect>& floats, si… in checkFloatsInCleanLine() 1757 Vector<RenderBox*>::iterator end = cleanLineFloats->end(); in checkFloatsInCleanLine() local [all …]
|
| D | RenderBlock.cpp | 171 TrackedRendererListHashSet::iterator end = descendantSet->end(); in removeBlockFromDescendantAndContainerMaps() local 376 TrackedRendererListHashSet::iterator end = positionedObjects->end(); in invalidateTreeAfterLayout() local 1379 for (Vector<ImageResource*>::iterator it = images.begin(), end = images.end(); it != end; ++it) in updateImageLoadingPriorities() local 1473 TrackedRendererListHashSet::iterator end = positionedDescendants->end(); in addOverflowFromPositionedObjects() local 1650 TrackedRendererListHashSet::iterator end = positionedDescendants->end(); in layoutPositionedObjects() local 1714 TrackedRendererListHashSet::iterator end = positionedDescendants->end(); in markPositionedObjectsForLayout() local 2185 ListHashSet<RenderInline*>::iterator end = continuations->end(); in paintContinuationOutlines() local 2278 TrackedRendererListHashSet::const_iterator end = positionedObjects->end(); in clipOutPositionedObjects() local 2476 LayoutUnit RenderBlock::logicalLeftSelectionOffset(RenderBlock* rootBlock, LayoutUnit position) in logicalLeftSelectionOffset() 2484 LayoutUnit RenderBlock::logicalRightSelectionOffset(RenderBlock* rootBlock, LayoutUnit position) in logicalRightSelectionOffset() [all …]
|
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
| D | cpp.py | 613 def end(self): member in _FunctionState 731 def is_cpp_string(line): argument 768 def remove_multi_line_comments_from_range(lines, begin, end): argument 792 def cleanse_comments(line): argument 853 def close_expression(elided, position): argument 1267 def process_clean_line(self, line): argument 1486 def check_spacing_for_function_call(line, line_number, error): argument 1546 def is_blank_line(line): argument 2536 def replaceable_check(operator, macro, line): argument 2653 def get_line_width(line): argument [all …]
|
| /external/chromium_org/tools/win/split_link/viz.js/ |
| D | viz.js | 1338 position: 0, property 1350 position: 0, property 1362 position: 0, property 1856 function ___assert_func(filename, line, func, condition) { argument 2510 position: -2, property 2528 position: 0, property 31429 function _storeline($g, $lp, $line, $terminator) { 88090 function _make_polyline($line, $sline) { 145819 function _XML_SetElementHandler($parser, $start, $end) { 145833 function _errorProcessor($parser, $s, $end, $nextPtr) { [all …]
|
| /external/clang/bindings/python/clang/ |
| D | cindex.py | 180 def from_position(tu, file, line, column): argument 203 def line(self): member in SourceLocation 244 def from_locations(start, end): argument 256 def end(self): member in SourceRange 2328 def get_location(self, filename, position): argument 2455 def codeComplete(self, path, line, column, unsaved_files=None, argument
|
| /external/icu/icu4c/source/test/intltest/ |
| D | rbbitst.cpp | 275 int32_t line = fLineNum.elementAti(expectedIdx); in err() local 769 int32_t end = str.length() - 3; in TestBug4153072() local 886 int32_t line = t->srcLine->elementAti(bp); in executeTest() local 939 int line = t->srcLine->elementAti(bp); in executeTest() local 1390 int32_t position; in TestDictRules() local
|
| /external/chromium_org/third_party/icu/source/test/intltest/ |
| D | rbbitst.cpp | 277 int32_t line = fLineNum.elementAti(expectedIdx); in err() local 1564 int32_t end = str.length() - 3; in TestBug4153072() local 1752 int32_t line = t->srcLine->elementAti(bp); in executeTest() local 1805 int line = t->srcLine->elementAti(bp); in executeTest() local 2402 int32_t position; in TestDictRules() local
|
| /external/chromium_org/third_party/d3/src/ |
| D | d3.js | 1118 function dragstart(id, position, subject, move, end) { argument 3523 return function(line) { argument 5150 end: function() { method in d3_geom_voronoiHalfEdge 6287 function position(dimension, size) { function 6450 function position(node, x, dx, dy) { function 7891 function line(data) { function 7934 d3.svg.line = function() { function
|