Searched refs:side (Results 1 - 25 of 190) sorted by relevance

12345678

/external/guava/guava/src/com/google/common/collect/
H A DBstInOrderPath.java39 public BstInOrderPath<N> extension(BstInOrderPath<N> path, BstSide side) {
40 return BstInOrderPath.extension(path, side);
51 BstInOrderPath<N> path, BstSide side) {
54 return new BstInOrderPath<N>(tip.getChild(side), side, path);
68 private Optional<BstInOrderPath<N>> computeNextInOrder(BstSide side) { argument
69 if (getTip().hasChild(side)) {
70 BstInOrderPath<N> path = extension(this, side);
71 BstSide otherSide = side.other();
78 while (current.sideExtension == side) {
50 extension( BstInOrderPath<N> path, BstSide side) argument
86 nextInOrder(BstSide side) argument
103 hasNext(BstSide side) argument
112 next(BstSide side) argument
[all...]
H A DBstRangeOps.java54 // Returns total value strictly to the specified side of the specified range.
56 BstAggregate<? super N> aggregate, GeneralRange<K> range, BstSide side, @Nullable N root) {
59 if (beyond(range, root.getKey(), side)) {
61 accum += aggregate.treeValue(root.childOrNull(side));
62 root = root.childOrNull(side.other());
64 root = root.childOrNull(side);
92 * specified side of the specified range.
96 BstBalancePolicy<N> balancePolicy, BstNodeFactory<N> nodeFactory, BstSide side,
101 if (beyond(range, root.getKey(), side)) {
104 switch (side) {
55 totalBeyondRangeToSide( BstAggregate<? super N> aggregate, GeneralRange<K> range, BstSide side, @Nullable N root) argument
95 subTreeBeyondRangeToSide(GeneralRange<K> range, BstBalancePolicy<N> balancePolicy, BstNodeFactory<N> nodeFactory, BstSide side, @Nullable N root) argument
126 furthestPath( GeneralRange<K> range, BstSide side, BstPathFactory<N, P> pathFactory, @Nullable N root) argument
138 furthestPath( GeneralRange<K> range, BstSide side, BstPathFactory<N, P> pathFactory, P currentPath) argument
162 beyond(GeneralRange<K> range, @Nullable K key, BstSide side) argument
[all...]
H A DBstNode.java78 * Returns the child on the specified side, or {@code null} if there is no such child.
81 public final N childOrNull(BstSide side) { argument
82 switch (side) {
93 * Returns {@code true} if this node has a child on the specified side.
95 public final boolean hasChild(BstSide side) { argument
96 return childOrNull(side) != null;
100 * Returns this node's child on the specified side.
104 public final N getChild(BstSide side) { argument
105 N child = childOrNull(side);
H A DBstPathFactory.java30 * Returns this path extended by one node to the specified {@code side}.
32 P extension(P path, BstSide side); argument
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DIntersectionUtilities.h11 inline int side(double x) { function
18 return 1 << side(x);
H A DInline_Tests.cpp19 assert_that(side(-1), 0, "side(-1) != 0");
20 assert_that(side(0), 1, "side(0) != 1");
21 assert_that(side(1), 2, "side(1) != 2");
H A DConvexHull.cpp52 int sides = side(rotPath[side1].y - rotPath[yMin].y);
53 sides ^= side(rotPath[side2].y - rotPath[yMin].y);
59 } else if (sides == 0) { // '0' means both to one side or the other
81 // see if mid value is on same side of line (least, most) as yMin
87 int midSides = side(midPath[yMin].y - midPath[least].y);
88 midSides ^= side(midPath[midX].y - midPath[least].y);
/external/skia/experimental/Intersection/
H A DIntersectionUtilities.h11 inline int side(double x) { function
18 return 1 << side(x);
H A DInline_Tests.cpp19 assert_that(side(-1), 0, "side(-1) != 0");
20 assert_that(side(0), 1, "side(0) != 1");
21 assert_that(side(1), 2, "side(1) != 2");
H A DConvexHull.cpp52 int sides = side(rotPath[side1].y - rotPath[yMin].y);
53 sides ^= side(rotPath[side2].y - rotPath[yMin].y);
59 } else if (sides == 0) { // '0' means both to one side or the other
81 // see if mid value is on same side of line (least, most) as yMin
87 int midSides = side(midPath[yMin].y - midPath[least].y);
88 midSides ^= side(midPath[midX].y - midPath[least].y);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DGridResolvedPosition.cpp13 static const NamedGridLinesMap& gridLinesForSide(const RenderStyle& style, GridPositionSide side) argument
15 return (side == ColumnStartSide || side == ColumnEndSide) ? style.namedGridColumnLines() : style.namedGridRowLines();
18 static inline String implicitNamedGridLineForSide(const String& lineName, GridPositionSide side) argument
20 return lineName + ((side == ColumnStartSide || side == RowStartSide) ? "-start" : "-end");
23 static bool isValidNamedLineOrArea(const String& lineName, const RenderStyle& style, GridPositionSide side) argument
25 const NamedGridLinesMap& gridLineNames = gridLinesForSide(style, side);
27 return gridLineNames.contains(implicitNamedGridLineForSide(lineName, side)) || gridLineNames.contains(lineName);
137 size_t GridResolvedPosition::explicitGridSizeForSide(const RenderStyle& gridContainerStyle, GridPositionSide side) argument
142 resolveNamedGridLinePositionFromStyle(const RenderStyle& gridContainerStyle, const GridPosition& position, GridPositionSide side) argument
163 resolveGridPositionFromStyle(const RenderStyle& gridContainerStyle, const GridPosition& position, GridPositionSide side) argument
220 resolveGridPositionAgainstOppositePosition(const RenderStyle& gridContainerStyle, const GridResolvedPosition& resolvedOppositePosition, const GridPosition& position, GridPositionSide side) argument
236 resolveNamedGridLinePositionAgainstOppositePosition(const RenderStyle& gridContainerStyle, const GridResolvedPosition& resolvedOppositePosition, const GridPosition& position, GridPositionSide side) argument
[all...]
H A DGridCoordinate.h50 static PassOwnPtr<GridSpan> createWithSpanAgainstOpposite(const GridResolvedPosition& resolvedOppositePosition, const GridPosition& position, GridPositionSide side) argument
55 if (side == ColumnStartSide || side == RowStartSide) {
63 static PassOwnPtr<GridSpan> createWithNamedSpanAgainstOpposite(const GridResolvedPosition& resolvedOppositePosition, const GridPosition& position, GridPositionSide side, const Vector<size_t>& gridLines) argument
65 if (side == RowStartSide || side == ColumnStartSide)
74 // is already converted to an index in our grid representation (ie one was removed from the grid line to account for the side).
163 GridResolvedPosition positionForSide(GridPositionSide side) const
165 switch (side) {
H A DGridResolvedPosition.h37 static GridResolvedPosition adjustGridPositionForSide(size_t resolvedPosition, GridPositionSide side) argument
40 if (side == ColumnEndSide || side == RowEndSide)
59 GridResolvedPosition(const GridPosition& position, GridPositionSide side) argument
64 m_integerPosition = adjustGridPositionForSide(integerPosition, side).toInt();
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnv20_state_tnl.c35 #define LIGHT_MODEL_AMBIENT_R(side) \
36 ((side) ? NV20_3D_LIGHT_MODEL_BACK_AMBIENT_R : \
38 #define LIGHT_AMBIENT_R(side, i) \
39 ((side) ? NV20_3D_LIGHT_BACK_AMBIENT_R(i) : \
41 #define LIGHT_DIFFUSE_R(side, i) \
42 ((side) ? NV20_3D_LIGHT_BACK_DIFFUSE_R(i) : \
44 #define LIGHT_SPECULAR_R(side, i) \
45 ((side) ? NV20_3D_LIGHT_BACK_SPECULAR_R(i) : \
47 #define MATERIAL_FACTOR_R(side) \
48 ((side)
237 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_AMBIENT; local
279 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_DIFFUSE; local
301 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_SPECULAR; local
319 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_SHININESS; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv20_state_tnl.c35 #define LIGHT_MODEL_AMBIENT_R(side) \
36 ((side) ? NV20_3D_LIGHT_MODEL_BACK_AMBIENT_R : \
38 #define LIGHT_AMBIENT_R(side, i) \
39 ((side) ? NV20_3D_LIGHT_BACK_AMBIENT_R(i) : \
41 #define LIGHT_DIFFUSE_R(side, i) \
42 ((side) ? NV20_3D_LIGHT_BACK_DIFFUSE_R(i) : \
44 #define LIGHT_SPECULAR_R(side, i) \
45 ((side) ? NV20_3D_LIGHT_BACK_SPECULAR_R(i) : \
47 #define MATERIAL_FACTOR_R(side) \
48 ((side)
237 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_AMBIENT; local
279 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_DIFFUSE; local
301 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_SPECULAR; local
319 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_SHININESS; local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DAPITest.h51 void CheckVADStatus(char side);
54 void TestDelay(char side);
57 void TestRegisteration(char side);
64 void TestSendVAD(char side);
66 void CurrentCodec(char side);
68 void ChangeCodec(char side);
122 // keep track of the codec in either side.
126 // Is set to true if there is no encoder in either side
H A DTestRedFec.h34 int16_t RegisterSendCodec(char side, char* codecName,
/external/iptables/include/linux/netfilter/
H A Dxt_recent.h32 __u8 side; member in struct:xt_recent_mtinfo
41 __u8 side; member in struct:xt_recent_mtinfo_v1
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_recent.h32 __u8 side; member in struct:xt_recent_mtinfo
41 __u8 side; member in struct:xt_recent_mtinfo_v1
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DObjectPainter.cpp97 BoxSide side, Color color, EBorderStyle style,
102 if (side == BSTop || side == BSBottom) {
124 drawDashedOrDottedBoxSide(graphicsContext, x1, y1, x2, y2, side,
128 drawDoubleBoxSide(graphicsContext, x1, y1, x2, y2, length, side, color,
133 drawRidgeOrGrooveBoxSide(graphicsContext, x1, y1, x2, y2, side, color,
137 // FIXME: Maybe we should lighten the colors on one side like Firefox.
139 if (side == BSTop || side == BSLeft)
143 if (style == OUTSET && (side
96 drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2, BoxSide side, Color color, EBorderStyle style, int adjacentWidth1, int adjacentWidth2, bool antialias) argument
152 drawDashedOrDottedBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2, BoxSide side, Color color, int thickness, EBorderStyle style, bool antialias) argument
179 drawDoubleBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2, int length, BoxSide side, Color color, int thickness, int adjacentWidth1, int adjacentWidth2, bool antialias) argument
255 drawRidgeOrGrooveBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2, BoxSide side, Color color, EBorderStyle style, int adjacentWidth1, int adjacentWidth2, bool antialias) argument
299 drawSolidBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2, BoxSide side, Color color, int adjacentWidth1, int adjacentWidth2, bool antialias) argument
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DSquaringDrawable.java11 * A wrapper drawable to square the wrapped drawable so that it expands to fill a square with exactly the given side
18 private int side; field in class:SquaringDrawable
20 public SquaringDrawable(Drawable wrapped, int side) { argument
22 this.side = side;
89 return side;
94 return side;
/external/guava/guava-tests/test/com/google/common/collect/
H A DBstNodeTest.java37 private void testLacksChild(SimpleNode node, BstSide side) { argument
38 assertNull(node.childOrNull(side));
39 assertFalse(node.hasChild(side));
41 node.getChild(side);
46 private void testChildIs(SimpleNode node, BstSide side, SimpleNode expectedChild) { argument
47 assertEquals(expectedChild, node.childOrNull(side));
48 assertTrue(node.hasChild(side));
49 assertEquals(expectedChild, node.getChild(side));
/external/chromium_org/third_party/opus/src/silk/
H A Dstereo_LR_to_MS.c39 opus_int16 x2[], /* I/O Right input signal, becomes side signal */
42 opus_int32 mid_side_rates_bps[], /* O Bitrates for mid and side signals */
53 VARDECL( opus_int16, side );
61 ALLOC( side, frame_length + 2, opus_int16 );
62 /* Convert to basic mid/side signals */
67 side[ n ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( diff, 1 ) );
72 silk_memcpy( side, state->sSide, 2 * sizeof( opus_int16 ) );
74 silk_memcpy( state->sSide, &side[ frame_length ], 2 * sizeof( opus_int16 ) );
85 /* LP and HP filter side signal */
89 sum = silk_RSHIFT_ROUND( silk_ADD_LSHIFT( side[
[all...]
/external/libopus/silk/
H A Dstereo_LR_to_MS.c39 opus_int16 x2[], /* I/O Right input signal, becomes side signal */
42 opus_int32 mid_side_rates_bps[], /* O Bitrates for mid and side signals */
53 VARDECL( opus_int16, side );
61 ALLOC( side, frame_length + 2, opus_int16 );
62 /* Convert to basic mid/side signals */
67 side[ n ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( diff, 1 ) );
72 silk_memcpy( side, state->sSide, 2 * sizeof( opus_int16 ) );
74 silk_memcpy( state->sSide, &side[ frame_length ], 2 * sizeof( opus_int16 ) );
85 /* LP and HP filter side signal */
89 sum = silk_RSHIFT_ROUND( silk_ADD_LSHIFT( side[
[all...]
/external/doclava/res/assets/templates/
H A Dhead_tag.cs35 #side-nav{padding:0;}
36 #side-nav .toggle-list ul {display:block;}

Completed in 417 milliseconds

12345678