/external/icu4c/samples/layout/ |
D | pflow.c | 110 pf_object *flow; in pf_create() local 123 flow = NEW_ARRAY(pf_object, 1); in pf_create() 125 flow->fParagraphLayout = NULL; in pf_create() 126 flow->fParagraphCount = 0; in pf_create() 127 flow->fParagraphMax = PARA_GROW; in pf_create() 128 flow->fParagraphGrow = PARA_GROW; in pf_create() 129 flow->fLineCount = 0; in pf_create() 130 flow->fLinesMax = LINE_GROW; in pf_create() 131 flow->fLinesGrow = LINE_GROW; in pf_create() 132 flow->fLines = NULL; in pf_create() [all …]
|
D | pflow.h | 23 void pf_close(pf_flow *flow); 25 le_int32 pf_getAscent(pf_flow *flow); 26 le_int32 pf_getLineHeight(pf_flow *flow); 27 le_int32 pf_getLineCount(pf_flow *flow); 28 void pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height); 29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
|
/external/tcpdump/ |
D | print-ip6.c | 60 u_int flow; in ip6_print() local 80 flow = EXTRACT_32BITS(&ip6->ip6_flow); in ip6_print() 84 if (flow & 0x0f000000) in ip6_print() 85 (void)printf("pri 0x%02x, ", (flow & 0x0f000000) >> 24); in ip6_print() 86 if (flow & 0x00ffffff) in ip6_print() 87 (void)printf("flowlabel 0x%06x, ", flow & 0x00ffffff); in ip6_print() 90 if (flow & 0x0ff00000) in ip6_print() 91 (void)printf("class 0x%02x, ", (flow & 0x0ff00000) >> 20); in ip6_print() 92 if (flow & 0x000fffff) in ip6_print() 93 (void)printf("flowlabel 0x%05x, ", flow & 0x000fffff); in ip6_print()
|
/external/qemu/distrib/sdl-1.2.12/src/audio/nas/ |
D | SDL_nasaudio.c | 128 …AuWriteElement(this->hidden->aud, this->hidden->flow, 0, this->hidden->mixlen, this->hidden->mixbu… in NAS_PlayAudio() 257 …if ((this->hidden->dev == AuNone) || (!(this->hidden->flow = AuCreateFlow(this->hidden->aud, NULL)… in NAS_OpenAudio() 280 AuSetElements(this->hidden->aud, this->hidden->flow, AuTrue, 2, elms, NULL); in NAS_OpenAudio() 281 AuRegisterEventHandler(this->hidden->aud, AuEventHandlerIDMask, 0, this->hidden->flow, in NAS_OpenAudio() 284 AuStartFlow(this->hidden->aud, this->hidden->flow, NULL); in NAS_OpenAudio()
|
D | SDL_nasaudio.h | 45 AuFlowID flow; member
|
/external/webkit/WebCore/rendering/ |
D | RenderFlow.cpp | 98 RenderFlow* flow = continuationBefore(beforeChild); in addChildWithContinuation() local 102 (flow->continuation() ? flow->continuation() : flow); in addChildWithContinuation() 111 bool flowInline = flow->isInline(); in addChildWithContinuation() 113 if (flow == beforeChildParent) in addChildWithContinuation() 114 return flow->addChildToFlow(newChild, beforeChild); in addChildWithContinuation() 121 return flow->addChildToFlow(newChild, 0); // Just treat like an append. in addChildWithContinuation() 440 RenderFlow* flow = *it; in paintLines() local 441 flow->paintOutline(info.context, tx, ty); in paintLines()
|
D | InlineFlowBox.cpp | 226 RenderFlow* flow = static_cast<RenderFlow*>(object()); in determineSpacingForFlowBoxes() local 228 if (!flow->firstChild()) in determineSpacingForFlowBoxes() 231 bool ltr = flow->style()->direction() == LTR; in determineSpacingForFlowBoxes() 235 if (!flow->firstLineBox()->isConstructed()) { in determineSpacingForFlowBoxes() 236 if (ltr && flow->firstLineBox() == this) in determineSpacingForFlowBoxes() 238 else if (!ltr && flow->lastLineBox() == this) in determineSpacingForFlowBoxes() 249 if (!flow->lastLineBox()->isConstructed()) { in determineSpacingForFlowBoxes() 252 … ((lastLine && !flow->continuation()) || nextOnLineExists() || onEndChain(endObject))) in determineSpacingForFlowBoxes() 256 … ((lastLine && !flow->continuation()) || prevOnLineExists() || onEndChain(endObject))) in determineSpacingForFlowBoxes() 332 InlineFlowBox* flow = static_cast<InlineFlowBox*>(curr); in placeBoxesHorizontally() local [all …]
|
D | RenderBox.cpp | 1373 RenderFlow* flow = static_cast<RenderFlow*>(container); in offsetForPositionedInContainer() local 1376 if (flow->firstLineBox()) { in offsetForPositionedInContainer() 1377 sx = flow->firstLineBox()->xPos(); in offsetForPositionedInContainer() 1378 sy = flow->firstLineBox()->yPos(); in offsetForPositionedInContainer() 1380 sx = flow->staticX(); in offsetForPositionedInContainer() 1381 sy = flow->staticY(); in offsetForPositionedInContainer() 2257 const RenderFlow* flow = static_cast<const RenderFlow*>(containingBlock); in containingBlockWidthForPositioned() local 2258 InlineFlowBox* first = flow->firstLineBox(); in containingBlockWidthForPositioned() 2259 InlineFlowBox* last = flow->lastLineBox(); in containingBlockWidthForPositioned() 2610 const RenderFlow* flow = static_cast<const RenderFlow*>(containerBlock); in calcAbsoluteHorizontalValues() local [all …]
|
D | bidi.cpp | 475 RenderFlow* flow = static_cast<RenderFlow*>(obj); in createLineBoxes() local 478 parentBox = flow->lastLineBox(); in createLineBoxes() 1473 static bool inlineFlowRequiresLineBox(RenderBox* flow) in inlineFlowRequiresLineBox() argument 1478 …return flow->isRenderInline() && !flow->firstChild() && flow->hasHorizontalBordersPaddingOrMargin(… in inlineFlowRequiresLineBox()
|
D | RenderBlock.cpp | 1793 void RenderBlock::addContinuationWithOutline(RenderFlow* flow) in addContinuationWithOutline() argument 1797 ASSERT(!flow->layer()); in addContinuationWithOutline() 1806 continuations->add(flow); in addContinuationWithOutline() 1823 RenderFlow* flow = *it; in paintContinuationOutlines() local 1824 RenderBlock* block = flow->containingBlock(); in paintContinuationOutlines() 1830 flow->paintOutline(info.context, tx, ty); in paintContinuationOutlines()
|
/external/bluez/hcidump/src/ |
D | bpasniff.c | 180 uint8_t flow, arqn, seqn, hec, llid, pflow; in decode() local 227 flow = (temp & 0x04) >> 2; in decode() 242 type2str(type), addr, flow, arqn, seqn, hec, llid, pflow, plen); in decode()
|
/external/bluez/hcidump/ |
D | ChangeLog | 48 Add decoding for host controller to host flow control setting. 157 Add L2CAP retransmission and flow control decoding. 224 Decode RFCOMM credit based flow control.
|
/external/freetype/src/raster/ |
D | ftraster.c | 335 int flow; /* Profile orientation: Asc/Descending */ member 650 ras.cProfile->flow = Flow_Up; in New_Profile() 655 ras.cProfile->flow = Flow_Down; in New_Profile() 825 switch ( p->flow ) in Finalize_Profile_Table() 1922 if ( ras.gProfile && ras.gProfile->flow == ras.cProfile->flow ) in Convert_Glyph() 2048 current->offset += current->flow; in Sort() 2827 switch ( P->flow ) in Draw_Sweep()
|
/external/webkit/WebKitTools/iExploder/htdocs/ |
D | cssproperties.in | 221 -khtml-flow-mode 236 layout-flow
|
/external/opencore/ |
D | README | 36 | processing units that can be connected in a flow graph]
|
/external/webkit/SunSpider/ |
D | TODO | 15 - control flow
|
D | ChangeLog | 459 Already balanced. Added date, regexp, control flow, and a few
|
/external/bluez/libs/ |
D | ChangeLog | 14 Add OCF constants for synchronous flow control enabling. 110 Add host controller to host flow control defines.
|
/external/icu4c/samples/ufortune/resources/ |
D | root.txt | 168 "A continuing flow of paper is sufficient to continue the flow of paper.
|
/external/grub/docs/ |
D | internals.texi | 320 Stage 2 (or Stage 1.5) and Stage 2 itself loads the rest. The flow of 337 The flow of Stage 2 (and Stage 1.5) is:
|
/external/blktrace/btreplay/doc/ |
D | btreplay.tex | 66 The basic operating work-flow to replay IOs would be something like:
|
/external/jpeg/ |
D | structure.doc | 327 This sketch also describes the flow of control (subroutine calls) during 430 As before, this diagram also represents typical control flow. The objects
|
/external/dosfstools/ |
D | NOTICE | 144 such as by intimate data communication or control flow between those
|
D | COPYING | 144 such as by intimate data communication or control flow between those
|
/external/bison/data/m4sugar/ |
D | m4sugar.m4 | 854 # GROW into the regular flow, BODY.
|