Home
last modified time | relevance | path

Searched full:above (Results 1 – 25 of 25880) sorted by relevance

12345678910>>...1036

/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/
Dside-effect-analysis-test.mlir8 // expected-remark@above {{ID: 13}}
13 // expected-remark@above {{ID: 11}}
16 // expected-remark@above {{ID: 9}}
17 // expected-remark@above {{Successors: {10}}}
19 // expected-remark@above {{ID: 0}}
20 // expected-remark@above {{Successors: {1}}}
22 // expected-remark@above {{ID: 1}}
23 // expected-remark@above {{Predecessors: {0}}}
24 // expected-remark@above {{Successors: {6}}}
26 // expected-remark@above {{ID: 2}}
[all …]
/external/libvpx/vpx_dsp/
Dintrapred.c22 const uint8_t *above, const uint8_t *left) { in d207_predictor() argument
24 (void)above; in d207_predictor()
46 const uint8_t *above, const uint8_t *left) { in d63_predictor() argument
51 dst[c] = AVG2(above[c], above[c + 1]); in d63_predictor()
52 dst[stride + c] = AVG3(above[c], above[c + 1], above[c + 2]); in d63_predictor()
56 memset(dst + (r + 0) * stride + size, above[bs - 1], bs - size); in d63_predictor()
58 memset(dst + (r + 1) * stride + size, above[bs - 1], bs - size); in d63_predictor()
63 const uint8_t *above, const uint8_t *left) { in d45_predictor() argument
64 const uint8_t above_right = above[bs - 1]; in d45_predictor()
70 dst[x] = AVG3(above[x], above[x + 1], above[x + 2]); in d45_predictor()
[all …]
/external/libaom/aom_dsp/x86/
Dintrapred_sse2.c110 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_4x8_sse2() argument
112 __m128i sum_above = dc_sum_4(above); in aom_dc_predictor_4x8_sse2()
126 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_4x16_sse2() argument
128 __m128i sum_above = dc_sum_4(above); in aom_dc_predictor_4x16_sse2()
142 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x4_sse2() argument
144 __m128i sum_above = dc_sum_8(above); in aom_dc_predictor_8x4_sse2()
156 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x16_sse2() argument
158 __m128i sum_above = dc_sum_8(above); in aom_dc_predictor_8x16_sse2()
170 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x32_sse2() argument
172 __m128i sum_above = dc_sum_8(above); in aom_dc_predictor_8x32_sse2()
[all …]
Dhighbd_intrapred_sse2.c20 const uint16_t *above, in aom_highbd_h_predictor_4x4_sse2() argument
27 (void)above; in aom_highbd_h_predictor_4x4_sse2()
39 const uint16_t *above, in aom_highbd_h_predictor_4x8_sse2() argument
41 aom_highbd_h_predictor_4x4_sse2(dst, stride, above, left, bd); in aom_highbd_h_predictor_4x8_sse2()
44 aom_highbd_h_predictor_4x4_sse2(dst, stride, above, left, bd); in aom_highbd_h_predictor_4x8_sse2()
48 const uint16_t *above, in aom_highbd_h_predictor_8x4_sse2() argument
55 (void)above; in aom_highbd_h_predictor_8x4_sse2()
67 const uint16_t *above, in aom_highbd_h_predictor_8x8_sse2() argument
78 (void)above; in aom_highbd_h_predictor_8x8_sse2()
98 const uint16_t *above, in aom_highbd_h_predictor_8x16_sse2() argument
[all …]
Dintrapred_avx2.c323 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_32x32_avx2() argument
324 const __m256i sum_above = dc_sum_32(above); in aom_dc_predictor_32x32_avx2()
336 const uint8_t *above, in aom_dc_top_predictor_32x32_avx2() argument
338 __m256i sum = dc_sum_32(above); in aom_dc_top_predictor_32x32_avx2()
350 const uint8_t *above, in aom_dc_left_predictor_32x32_avx2() argument
353 (void)above; in aom_dc_left_predictor_32x32_avx2()
364 const uint8_t *above, in aom_dc_128_predictor_32x32_avx2() argument
366 (void)above; in aom_dc_128_predictor_32x32_avx2()
373 const uint8_t *above, const uint8_t *left) { in aom_v_predictor_32x32_avx2() argument
374 const __m256i row = _mm256_loadu_si256((const __m256i *)above); in aom_v_predictor_32x32_avx2()
[all …]
/external/libaom/aom_dsp/
Dintrapred.c24 const uint8_t *above, const uint8_t *left) { in v_predictor() argument
29 memcpy(dst, above, bw); in v_predictor()
35 const uint8_t *above, const uint8_t *left) { in h_predictor() argument
37 (void)above; in h_predictor()
61 int bh, const uint8_t *above, in paeth_predictor() argument
64 const uint8_t ytop_left = above[-1]; in paeth_predictor()
68 dst[c] = (uint8_t)paeth_predictor_single(left[r], above[c], ytop_left); in paeth_predictor()
85 int bh, const uint8_t *above, in smooth_predictor() argument
88 const uint8_t right_pred = above[bw - 1]; // estimated by top-right pixel in smooth_predictor()
100 const uint8_t pixels[] = { above[c], below_pred, left[r], right_pred }; in smooth_predictor()
[all …]
/external/libvpx/vpx_dsp/arm/
Dintrapred_neon.c35 const uint8_t *above, const uint8_t *left) { in vpx_dc_predictor_4x4_neon() argument
36 const uint8x8_t a = load_unaligned_u8_4x1(above); in vpx_dc_predictor_4x4_neon()
45 const uint8_t *above, const uint8_t *left) { in vpx_dc_left_predictor_4x4_neon() argument
48 (void)above; in vpx_dc_left_predictor_4x4_neon()
53 const uint8_t *above, const uint8_t *left) { in vpx_dc_top_predictor_4x4_neon() argument
54 const uint16_t sum = dc_sum_4(above); in vpx_dc_top_predictor_4x4_neon()
61 const uint8_t *above, const uint8_t *left) { in vpx_dc_128_predictor_4x4_neon() argument
63 (void)above; in vpx_dc_128_predictor_4x4_neon()
84 const uint8_t *above, const uint8_t *left) { in vpx_dc_predictor_8x8_neon() argument
85 const uint8x8_t above_u8 = vld1_u8(above); in vpx_dc_predictor_8x8_neon()
[all …]
Dhighbd_intrapred_neon.c35 const uint16_t *above, in vpx_highbd_dc_predictor_4x4_neon() argument
37 const uint16x4_t a = vld1_u16(above); in vpx_highbd_dc_predictor_4x4_neon()
46 const uint16_t *above, in vpx_highbd_dc_left_predictor_4x4_neon() argument
50 (void)above; in vpx_highbd_dc_left_predictor_4x4_neon()
56 const uint16_t *above, in vpx_highbd_dc_top_predictor_4x4_neon() argument
58 const uint16_t sum = dc_sum_4(above); in vpx_highbd_dc_top_predictor_4x4_neon()
66 const uint16_t *above, in vpx_highbd_dc_128_predictor_4x4_neon() argument
69 (void)above; in vpx_highbd_dc_128_predictor_4x4_neon()
91 const uint16_t *above, in vpx_highbd_dc_predictor_8x8_neon() argument
93 const uint16x8_t above_u16 = vld1q_u16(above); in vpx_highbd_dc_predictor_8x8_neon()
[all …]
/external/libffi/src/arm/
Dtrampoline.S14 # The above copyright notice and this permission notice shall be included
38 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
51 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
64 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
77 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
90 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
103 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
116 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
129 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
142 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p…
[all …]
/external/kernel-headers/original/uapi/linux/
Dethtool_netlink.h63 /* add new constants above here */
118 /* add new constants above here */
142 /* add new constants above here */
155 /* add new constants above here */
164 /* add new constants above here */
177 /* add new constants above here */
189 /* add new constants above here */
198 /* add new constants above here */
209 /* add new constants above here */
218 /* add new constants above here */
[all …]
/external/ethtool/uapi/linux/
Dethtool_netlink.h63 /* add new constants above here */
118 /* add new constants above here */
142 /* add new constants above here */
155 /* add new constants above here */
164 /* add new constants above here */
177 /* add new constants above here */
189 /* add new constants above here */
198 /* add new constants above here */
209 /* add new constants above here */
218 /* add new constants above here */
[all …]
/external/iptables/extensions/
Dlibip6t_connlimit.t6 -m connlimit --connlimit-above 0;-m connlimit --connlimit-above 0 --connlimit-mask 128 --connlimit-…
7 -m connlimit --connlimit-above 4294967295 --connlimit-mask 128 --connlimit-saddr;=;OK
8 -m connlimit --connlimit-above 4294967296 --connlimit-mask 128 --connlimit-saddr;;FAIL
9 -m connlimit --connlimit-above -1;;FAIL
10 -m connlimit --connlimit-upto 1 --conlimit-above 1;;FAIL
11 -m connlimit --connlimit-above 10 --connlimit-saddr;-m connlimit --connlimit-above 10 --connlimit-m…
12 -m connlimit --connlimit-above 10 --connlimit-daddr;-m connlimit --connlimit-above 10 --connlimit-m…
13 -m connlimit --connlimit-above 10 --connlimit-saddr --connlimit-daddr;;FAIL
14 -m connlimit --connlimit-above 10 --connlimit-mask 128 --connlimit-saddr;=;OK
15 -m connlimit --connlimit-above 10 --connlimit-mask 128 --connlimit-daddr;=;OK
Dlibipt_connlimit.t5 -m connlimit --connlimit-above 0;-m connlimit --connlimit-above 0 --connlimit-mask 32 --connlimit-s…
6 -m connlimit --connlimit-above 4294967295 --connlimit-mask 32 --connlimit-saddr;=;OK
7 -m connlimit --connlimit-above 4294967296 --connlimit-mask 32 --connlimit-saddr;;FAIL
8 -m connlimit --connlimit-above 10 --connlimit-saddr;-m connlimit --connlimit-above 10 --connlimit-m…
9 -m connlimit --connlimit-above 10 --connlimit-daddr;-m connlimit --connlimit-above 10 --connlimit-m…
10 -m connlimit --connlimit-above 10 --connlimit-mask 32 --connlimit-saddr;=;OK
11 -m connlimit --connlimit-above 10 --connlimit-mask 32 --connlimit-daddr;=;OK
/external/libaom/aom_dsp/arm/
Dintrapred_neon.c45 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_4x4_neon() argument
46 const uint16x8_t sum_top = dc_load_sum_4(above); in aom_dc_predictor_4x4_neon()
54 const uint8_t *above, const uint8_t *left) { in aom_dc_left_predictor_4x4_neon() argument
57 (void)above; in aom_dc_left_predictor_4x4_neon()
62 const uint8_t *above, const uint8_t *left) { in aom_dc_top_predictor_4x4_neon() argument
63 const uint16x8_t sum_top = dc_load_sum_4(above); in aom_dc_top_predictor_4x4_neon()
70 const uint8_t *above, const uint8_t *left) { in aom_dc_128_predictor_4x4_neon() argument
72 (void)above; in aom_dc_128_predictor_4x4_neon()
81 // This isn't used in the case where we want to load both above and left in dc_load_sum_8()
115 const uint8_t *above, const uint8_t *left) { in aom_dc_predictor_8x8_neon() argument
[all …]
/external/libvpx/vpx_dsp/ppc/
Dintrapred_vsx.c15 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_16x16_vsx() argument
16 const uint8x16_t d = vec_vsx_ld(0, above); in vpx_v_predictor_16x16_vsx()
26 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_32x32_vsx() argument
27 const uint8x16_t d0 = vec_vsx_ld(0, above); in vpx_v_predictor_32x32_vsx()
28 const uint8x16_t d1 = vec_vsx_ld(16, above); in vpx_v_predictor_32x32_vsx()
43 const uint8_t *above, const uint8_t *left) {
50 (void)above;
62 const uint8_t *above, const uint8_t *left) {
74 (void)above;
95 const uint8_t *above, const uint8_t *left) { in vpx_h_predictor_16x16_vsx() argument
[all …]
/external/pcre/maint/Unicode.tables/
DBidiMirroring.txt336 2A7B; 2A7C # [BEST FIT] LESS-THAN WITH QUESTION MARK ABOVE
337 2A7C; 2A7B # [BEST FIT] GREATER-THAN WITH QUESTION MARK ABOVE
342 2A81; 2A82 # LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE
343 2A82; 2A81 # GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE
344 2A83; 2A84 # LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE RIGHT
345 2A84; 2A83 # GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE LEFT
352 2A8B; 2A8C # LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN
353 2A8C; 2A8B # GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN
354 2A8D; 2A8E # [BEST FIT] LESS-THAN ABOVE SIMILAR OR EQUAL
355 2A8E; 2A8D # [BEST FIT] GREATER-THAN ABOVE SIMILAR OR EQUAL
[all …]
/external/libaom/config/arm/config/
Daom_dsp_rtcd.h90 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
91 void aom_dc_128_predictor_16x16_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
94 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
95 void aom_dc_128_predictor_16x32_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
98 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
99 void aom_dc_128_predictor_16x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u…
102 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
103 void aom_dc_128_predictor_16x64_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
106 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
107 void aom_dc_128_predictor_16x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u…
[all …]
/external/libvpx/vpx_dsp/mips/
Dintrapred_msa.c555 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_4x4_msa() argument
558 intra_predict_vert_4x4_msa(above, dst, y_stride); in vpx_v_predictor_4x4_msa()
562 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_8x8_msa() argument
565 intra_predict_vert_8x8_msa(above, dst, y_stride); in vpx_v_predictor_8x8_msa()
569 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_16x16_msa() argument
572 intra_predict_vert_16x16_msa(above, dst, y_stride); in vpx_v_predictor_16x16_msa()
576 const uint8_t *above, const uint8_t *left) { in vpx_v_predictor_32x32_msa() argument
579 intra_predict_vert_32x32_msa(above, dst, y_stride); in vpx_v_predictor_32x32_msa()
583 const uint8_t *above, const uint8_t *left) { in vpx_h_predictor_4x4_msa() argument
584 (void)above; in vpx_h_predictor_4x4_msa()
[all …]
/external/libaom/config/riscv64/config/
Daom_dsp_rtcd.h78 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
81 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
84 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
87 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
90 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
93 void aom_dc_128_predictor_32x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
96 void aom_dc_128_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
99 void aom_dc_128_predictor_32x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
102 void aom_dc_128_predictor_32x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
105 void aom_dc_128_predictor_4x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
[all …]
/external/libaom/config/arm64/config/
Daom_dsp_rtcd.h95 void aom_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
96 void aom_dc_128_predictor_16x16_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
99 void aom_dc_128_predictor_16x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
100 void aom_dc_128_predictor_16x32_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
103 void aom_dc_128_predictor_16x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
104 void aom_dc_128_predictor_16x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u…
107 void aom_dc_128_predictor_16x64_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uin…
108 void aom_dc_128_predictor_16x64_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const …
111 void aom_dc_128_predictor_16x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint…
112 void aom_dc_128_predictor_16x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const u…
[all …]
/external/icu/icu4c/source/common/unicode/
Dcaniter.h44 Results for: {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{CO…
46 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBIN…
48 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBININ…
50 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CE…
52 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT
54 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CE…
56 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBINING DOT
58 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CEDILLA}
60 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT ABOVE}
62 = {ANGSTROM SIGN}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
[all …]
/external/cronet/stable/third_party/icu/source/common/unicode/
Dcaniter.h44 Results for: {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{CO…
46 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBIN…
48 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBININ…
50 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CE…
52 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT
54 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CE…
56 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBINING DOT
58 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CEDILLA}
60 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT ABOVE}
62 = {ANGSTROM SIGN}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
[all …]
/external/icu/libicu/cts_headers/unicode/
Dcaniter.h44 Results for: {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{CO…
46 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBIN…
48 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBININ…
50 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CE…
52 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT
54 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CE…
56 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBINING DOT
58 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CEDILLA}
60 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT ABOVE}
62 = {ANGSTROM SIGN}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
[all …]
/external/cronet/tot/third_party/icu/source/common/unicode/
Dcaniter.h44 Results for: {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{CO…
46 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBIN…
48 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBININ…
50 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CE…
52 …= {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT
54 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CE…
56 …= {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBINING DOT
58 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CEDILLA}
60 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT ABOVE}
62 = {ANGSTROM SIGN}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
[all …]
/external/google-cloud-java/java-monitoring-dashboards/proto-google-cloud-monitoring-dashboard-v1/src/main/java/com/google/monitoring/dashboard/v1/
DScorecardOrBuilder.java147 * below, or greater than or equal to a danger threshold that triggers above.
148 * Similarly, if x is above/below a warning threshold that triggers
149 * above/below, then the scorecard is in a warning state - unless x also puts
156 * trigger: 'ABOVE',
161 * trigger: 'ABOVE',
191 * below, or greater than or equal to a danger threshold that triggers above.
192 * Similarly, if x is above/below a warning threshold that triggers
193 * above/below, then the scorecard is in a warning state - unless x also puts
200 * trigger: 'ABOVE',
205 * trigger: 'ABOVE',
[all …]

12345678910>>...1036