Home
last modified time | relevance | path

Searched refs:top (Results 251 - 275 of 1359) sorted by relevance

1...<<11121314151617181920>>...55

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DOlsonTimeZone.java479 * @param top the top-level zoneinfo resource bundle. This is used
484 public OlsonTimeZone(UResourceBundle top, UResourceBundle res, String id){ in OlsonTimeZone() argument
486 construct(top, res, id); in OlsonTimeZone()
489 private void construct(UResourceBundle top, UResourceBundle res, String id){ in construct() argument
491 if ((top == null || res == null)) { in construct()
593 r = loadRule(top, ruleID); in construct()
640 UResourceBundle top = UResourceBundle.getBundleInstance(ICUData.ICU_BASE_NAME, in OlsonTimeZone()
642 UResourceBundle res = ZoneMeta.openOlsonResource(top, id); in OlsonTimeZone()
643 construct(top, re in OlsonTimeZone()
888 loadRule(UResourceBundle top, String ruleid) loadRule() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DBlit9.cpp172 rect.top = 0; in getSurfaceRect()
354 destOffset.y + (sourceRect.bottom - sourceRect.top)}; in copy()
372 adjustedSourceRect.top = 0; in copy()
373 adjustedSourceRect.bottom = sourceRect.bottom - sourceRect.top; in copy()
376 sourceSize.height = sourceRect.bottom - sourceRect.top; in copy()
407 destRect.top = destOffset.y; in formatConvert()
408 destRect.bottom = destOffset.y + (sourceRect.bottom - sourceRect.top); in formatConvert()
597 sourceRect.right - sourceRect.left, sourceRect.bottom - sourceRect.top, 1, in copySurfaceToTexture()
622 vp.Y = destRect.top; in setViewportAndShaderConstants()
624 vp.Height = destRect.bottom - destRect.top; in setViewportAndShaderConstants()
[all...]
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless_neon.c191 static uint32_t Predictor5_NEON(uint32_t left, const uint32_t* const top) { in Predictor5_NEON() argument
192 return Average3_NEON(left, top[0], top[1]); in Predictor5_NEON()
194 static uint32_t Predictor6_NEON(uint32_t left, const uint32_t* const top) { in Predictor6_NEON() argument
195 return Average2_NEON(left, top[-1]); in Predictor6_NEON()
197 static uint32_t Predictor7_NEON(uint32_t left, const uint32_t* const top) { in Predictor7_NEON() argument
198 return Average2_NEON(left, top[0]); in Predictor7_NEON()
200 static uint32_t Predictor13_NEON(uint32_t left, const uint32_t* const top) { in Predictor13_NEON() argument
201 return ClampedAddSubtractHalf_NEON(left, top[0], top[ in Predictor13_NEON()
305 const uint8x16_t top = LOADQ_U32P_AS_U8(&upper[i - 1]); PredictorAdd6_NEON() local
321 const uint8x16_t top = LOADQ_U32P_AS_U8(&upper[i]); PredictorAdd7_NEON() local
[all...]
/third_party/jerryscript/tests/jerry-test-suite/12/12.08/
H A D12.08-014.js17 top:
25 break top;
H A D12.08-010.js17 top:
24 break top;
H A D12.08-006.js16 top:
22 break top;
H A D12.08-018.js24 top:
35 break top;
H A D12.08-001.js32 top:
36 break top;
/third_party/jerryscript/tests/jerry-test-suite/12/12.07/
H A D12.07-010.js17 top:
24 continue top;
H A D12.07-006.js16 top:
22 continue top;
H A D12.07-014.js17 top:
25 continue top;
H A D12.07-003.js17 top:
28 continue top;
/third_party/ffmpeg/libavfilter/
H A Dvf_blend.c55 const AVFrame *top, *bottom; member
136 const type *top = (type*)_top; \
149 values[VAR_TOP] = values[VAR_A] = top[x]; \
154 top += top_linesize; \
169 const uint8_t *top = td->top->data[td->plane]; in filter_slice() local
181 td->param->blend(top + slice_start * td->top->linesize[td->plane], in filter_slice()
182 td->top->linesize[td->plane], in filter_slice()
215 ThreadData td = { .top in blend_frame()
[all...]
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliteratorRegistry.java95 private String top; // top spec field in TransliteratorRegistry.Spec
98 private String scriptName; // script name equivalent of top, if != top
104 top = theSpec; in Spec()
108 // Canonicalize script name. If top is a script name then in Spec()
110 int script = UScript.getCodeFromName(top); in Spec()
113 int[] s = UScript.getCode(top); in Spec()
116 // If the script name is the same as top then it's redundant in Spec()
117 if (scriptName.equalsIgnoreCase(top)) { in Spec()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DTransliteratorRegistry.java96 private String top; // top spec field in TransliteratorRegistry.Spec
99 private String scriptName; // script name equivalent of top, if != top
105 top = theSpec; in Spec()
109 // Canonicalize script name. If top is a script name then in Spec()
111 int script = UScript.getCodeFromName(top); in Spec()
114 int[] s = UScript.getCode(top); in Spec()
117 // If the script name is the same as top then it's redundant in Spec()
118 if (scriptName.equalsIgnoreCase(top)) { in Spec()
[all...]
/third_party/skia/src/gpu/geometry/
H A DGrTriangulator.cpp623 Vertex* top = winding < 0 ? next : prev; in makeEdge() local
625 return fAlloc->make<Edge>(top, bottom, winding, type); in makeEdge()
725 Vertex* top = e->fTop; in rewind() local
726 if (c.sweep_lt(top->fPoint, dst->fPoint) && in rewind()
727 ((top->fLeftEnclosingEdge && !top->fLeftEnclosingEdge->isLeftOf(e->fTop)) || in rewind()
728 (top->fRightEnclosingEdge && !top->fRightEnclosingEdge->isRightOf(e->fTop)))) { in rewind()
729 dst = top; in rewind()
741 Vertex* top in rewind_if_necessary() local
888 Vertex* top; splitEdge() local
1067 Vertex* top = *current; checkForIntersection() local
[all...]
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Dprotocol_core_test.cc188 TestTypeComposite top; in CompositeParsingTest() local
189 top.SetIntField(42); in CompositeParsingTest()
190 top.SetBoolField(true); in CompositeParsingTest()
191 top.SetIntField(42); in CompositeParsingTest()
192 top.SetDoubleField(2.718281828); in CompositeParsingTest()
193 top.SetStrField("junk"); in CompositeParsingTest()
196 top.SetTestTypeBasicField(std::move(child)); in CompositeParsingTest()
199 // representation of |top|, by checking that it deserializes ok. in CompositeParsingTest()
200 top.AppendSerialized(&serialized_); in CompositeParsingTest()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/
H A DBitmapSizeTable.java158 int top = subTableList.size(); in binarySearchIndexSubTables()
159 while (top != bottom) { in binarySearchIndexSubTables()
160 index = (top + bottom) / 2; in binarySearchIndexSubTables()
164 top = index; in binarySearchIndexSubTables()
454 int top = subTableList.size(); in binarySearchIndexSubTables()
455 while (top != bottom) { in binarySearchIndexSubTables()
456 index = (top + bottom) / 2; in binarySearchIndexSubTables()
460 top = index; in binarySearchIndexSubTables()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_size_table.cc157 int32_t top = subtable_list->size(); in BinarySearchIndexSubTables() local
158 while (top != bottom) { in BinarySearchIndexSubTables()
159 index = (top + bottom) / 2; in BinarySearchIndexSubTables()
163 top = index; in BinarySearchIndexSubTables()
434 int32_t top = subtable_list->size(); in BinarySearchIndexSubTables() local
435 while (top != bottom) { in BinarySearchIndexSubTables()
436 index = (top + bottom) / 2; in BinarySearchIndexSubTables()
440 top = index; in BinarySearchIndexSubTables()
/third_party/spirv-tools/source/
H A Dcfa.h197 block_info& top = work_list.back(); in DepthFirstTraversal() local
198 if (terminal(top.block) || top.iter == end(*successor_func(top.block))) { in DepthFirstTraversal()
199 postorder(top.block); in DepthFirstTraversal()
202 BB* child = *top.iter; in DepthFirstTraversal()
203 top.iter++; in DepthFirstTraversal()
205 backedge(top.block, child); in DepthFirstTraversal()
/third_party/skia/docs/examples/
H A DRect_top.cpp8 SkDebugf("unsorted.fTop: %g unsorted.top(): %g\n", unsorted.fTop, unsorted.top()); in REG_FIDDLE()
10 SkDebugf("sorted.fTop: %g sorted.top(): %g\n", sorted.fTop, sorted.top()); in REG_FIDDLE()
H A DIRect_top.cpp8 SkDebugf("unsorted.fTop: %d unsorted.top(): %d\n", unsorted.fTop, unsorted.top()); in REG_FIDDLE()
10 SkDebugf("sorted.fTop: %d sorted.top(): %d\n", sorted.fTop, sorted.top()); in REG_FIDDLE()
H A DRect_isEmpty.cpp9 SkDebugf("rect: {%g, %g, %g, %g} is" "%s empty\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
12 SkDebugf("sorted: {%g, %g, %g, %g} is" "%s empty\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
H A DRect_MakeXYWH.cpp8 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
11 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
H A DRect_MakeLTRB.cpp8 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()
11 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(), in REG_FIDDLE()

Completed in 16 milliseconds

1...<<11121314151617181920>>...55