Searched defs:right (Results 226 - 250 of 879) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/i18n/
H A Dcollationcompare.cpp27 CollationCompare::compareUpToQuaternary(CollationIterator &left, CollationIterator &right, argument
73 int64_t ce = right.nextCE(errorCode);
81 right.setCurrentCE(ce & INT64_C(0xffffffff00000000));
83 ce = right.nextCE(errorCode);
86 right.setCurrentCE(0);
124 rightSecondary = ((uint32_t)right.getCE(rightIndex++)) >> 16;
148 while((rightLower32 = (uint32_t)right.getCE(rightLimit)) >
165 rightSecondary = ((uint32_t)right.getCE(--rightIndex)) >> 16;
177 U_ASSERT(left.getCE(leftLimit) == right.getCE(rightLimit));
207 ce = right
[all...]
H A Dtaiwncal.cpp48 TaiwanCalendar& TaiwanCalendar::operator= ( const TaiwanCalendar& right) argument
50 GregorianCalendar::operator=(right);
/external/icu/icu4c/source/test/cintltst/
H A Dsorttest.c126 linesComparator(const void *context, const void *left, const void *right) { argument
129 const Line *rightLine=(const Line *)right;
/external/javassist/src/main/javassist/compiler/
H A DJvstTypeChecker.java68 protected void atFieldAssign(Expr expr, int op, ASTree left, ASTree right) argument
73 right.accept(this);
83 super.atFieldAssign(expr, op, left, right);
/external/javassist/src/main/javassist/compiler/ast/
H A DASTList.java22 * The right subtree must be an ASTList object or null.
26 private ASTList right; field in class:ASTList
30 right = _tail;
35 right = null;
44 public ASTree getRight() { return right; }
49 right = (ASTList)_right;
64 public ASTList tail() { return right; }
67 right = _tail;
82 list = list.right;
102 list = list.right;
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/autoescape/
H A DEscapeMode.java26 // subsequent template contents to determine the right escaping command to use.
92 * values are provided by {@code left} and {@code right} respectively. For now, if either of the
99 public static EscapeMode combineModes(EscapeMode left, EscapeMode right) { argument
100 if (left.equals(ESCAPE_NONE) || right.equals(ESCAPE_NONE)) {
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DDefaultHdfParser.java57 output.setValue(createFullPath(context, split.left), split.right);
63 output.setValue(createFullPath(context, split.left), readToToken(lineReader, split.right));
74 output.setSymlink(createFullPath(context, split.left), split.right);
125 result.right = line.substring(position + delimiter.length()).trim();
134 String right; field in class:DefaultHdfParser.Split
/external/libvpx/libvpx/vp8/encoder/
H A Dmr_dissim.c108 const MODE_INFO *right = NULL; local
124 right = here + 1;
126 GET_MV_SIGN(right)
153 right = here + 1;
155 GET_MV(right)
/external/lldb/examples/synthetic/
H A Dgnu_libstdcpp.py8 # before relying on these formatters to do the right thing for your setup
375 def right(self,node): member in class:StdMapSynthProvider
391 if self.node_ptr_value(self.right(node)) != 0:
392 x = self.right(node);
406 while(self.node_ptr_value(x) == self.node_ptr_value(self.right(y))):
414 if self.node_ptr_value(self.right(x)) != self.node_ptr_value(y):
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dbreakpoint.c74 unsigned char left, right; local
77 right =
82 c |= right | left;
/external/pixman/demos/
H A Dradial-test.c29 * to right:
96 double x0, x1, radius0, radius1, left, right, center; local
105 right = MAX (x0 + radius0, x1 + radius1);
106 center = (left + right) * 0.5;
/external/qemu/distrib/sdl-1.2.15/src/audio/dc/
H A DSDL_dcaudio.c112 uint32 *right = (uint32*)(rightpos+SPU_RAM_BASE); local
125 g2_write_32(right++,rval);
134 uint32 *right = (uint32*)(rightpos+SPU_RAM_BASE); local
143 g2_write_32(right++,rval);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowRect.java14 public void __constructor__(int left, int top, int right, int bottom) { argument
17 realRect.right = right;
24 realRect.right = otherRect.right;
30 set(rect.left, rect.top, rect.right, rect.bottom);
34 public void set(int left, int top, int right, int bottom) { argument
37 realRect.right = right;
43 return realRect.right
104 intersect(int left, int top, int right, int bottom) argument
[all...]
/external/skia/src/core/
H A DSkRasterClip.h56 bool quickContains(int left, int top, int right, int bottom) const { argument
57 return quickContains(SkIRect::MakeLTRB(left, top, right, bottom));
83 // these 2 are caches based on querying the right obj based on fIsBW
H A DSkTSort.h121 template <typename T, typename C> static void SkTInsertionSort(T* left, T* right, C lessThan) { argument
122 for (T* next = left + 1; next <= right; ++next) {
136 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) { argument
138 SkTSwap(*pivot, *right);
140 while (left < right) {
147 SkTSwap(*newPivot, *right);
154 * This implementation recurses on the left region after pivoting and loops on the right,
160 * @param right the end of the region to be sorted (inclusive).
163 template <typename T, typename C> void SkTIntroSort(int depth, T* left, T* right, C lessThan) { argument
165 if (right
191 SkTQSort(T* left, T* right, C lessThan) argument
201 SkTQSort(T* left, T* right) argument
206 SkTQSort(T** left, T** right) argument
[all...]
/external/skia/src/gpu/gl/
H A DGrGLNameAllocator.cpp124 * AVL tree with non-null, non-adjacent left and right children.
128 SparseNameTree(SparseNameRange* left, SparseNameRange* right) argument
130 fRight(right) {
260 SkASSERT(fLeft->end() < fRight->first()); // There must be a gap between left and right.
323 SparseNameRange* right = this->takeRef(); variable
325 return SkNEW_ARGS(SparseNameTree, (left, right));
/external/skia/tests/
H A DPathOpsCubicLineIntersectionTest.cpp106 double right = line[1].fX; local
107 flipped = left > right;
109 SkTSwap<double>(left, right);
111 result = intersections.horizontal(cubic, left, right, line[0].fY, flipped);
H A DPathOpsQuadLineIntersectionTest.cpp45 double right = line[1].fX; local
46 flipped = left > right;
48 SkTSwap<double>(left, right);
50 result = intersections.horizontal(quad, left, right, line[0].fY, flipped);
H A DPathOpsQuadLineIntersectionThreadedTest.cpp28 double right = line[1].fX; local
29 flipped = left > right;
31 SkTSwap<double>(left, right);
33 result = intersections.horizontal(quad, left, right, line[0].fY, flipped);
/external/webrtc/src/common_audio/resampler/
H A Dresampler.cc447 WebRtc_Word16* right = (WebRtc_Word16*)malloc(lengthIn * sizeof(WebRtc_Word16) / 2); local
455 right[i >> 1] = samplesIn[i + 1];
463 // Do resampling for right channel
465 res |= slave_right_->Push(right, lengthIn, out_right, maxLen / 2, actualOutLen_right);
469 free(right);
484 free(right);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DSemanticContext.java434 public abstract SemanticContext combinePredicates(SemanticContext left, SemanticContext right); argument
463 eST = new ST("(<left>&&<right>)");
466 eST.add("right", operand.genExpr(generator,templates,dfa));
479 public SemanticContext combinePredicates(SemanticContext left, SemanticContext right) { argument
480 return SemanticContext.and(left, right);
527 public SemanticContext combinePredicates(SemanticContext left, SemanticContext right) { argument
528 return SemanticContext.or(left, right);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DLeftRecursiveRuleAnalyzer.java14 public static enum ASSOC { left, right }; enum constant in enum:LeftRecursiveRuleAnalyzer.ASSOC
68 if ( a.equals(ASSOC.right.toString()) ) {
69 assoc = ASSOC.right;
/external/ceres-solver/internal/ceres/
H A Dgradient_checking_cost_function_test.cc330 const ParameterBlock* right) {
332 CHECK_NOTNULL(right);
333 EXPECT_EQ(left->user_state(), right->user_state());
334 EXPECT_EQ(left->Size(), right->Size());
335 EXPECT_EQ(left->Size(), right->Size());
336 EXPECT_EQ(left->LocalSize(), right->LocalSize());
337 EXPECT_EQ(left->local_parameterization(), right->local_parameterization());
338 EXPECT_EQ(left->IsConstant(), right->IsConstant());
329 ParameterBlocksAreEquivalent(const ParameterBlock* left, const ParameterBlock* right) argument
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DExternalVideoSurfaceContainer.java192 * @param right The absolute CSS X coordinate of the right side of the video element.
197 int playerId, float left, float top, float right, float bottom) {
202 mRight = right;
227 float right = bottomRight.getXPix();
231 int width = Math.round(right - left);
196 onExternalVideoSurfacePositionChanged( int playerId, float left, float top, float right, float bottom) argument
/external/chromium_org/ash/ime/
H A Dcandidate_view.cc75 insets.top(), insets.left(), insets.bottom(), insets.right()));
263 int right = bounds().right(); local
266 right - kInfolistIndicatorIconWidth - kInfolistIndicatorIconPadding,
270 right -= kInfolistIndicatorIconWidth + kInfolistIndicatorIconPadding * 2;
272 annotation_label_->SetBounds(x, 0, right - x, height());

Completed in 463 milliseconds

1234567891011>>