HomeSort by relevance Sort by last modified time
    Searched refs:sub (Results 176 - 200 of 2851) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUResourceBundleTest.java 147 UResourceBundle sub; local
149 sub = obj.get(i);
150 String temp =sub.getString();
164 UResourceBundle sub; local
166 sub = obj.get(i);
167 String temp =sub.getString();
199 UResourceBundle sub = bundle.get("zerotest"); local
200 if(!expected.equals(sub.getString())){
203 sub = bundle.get("emptyexplicitstring");
205 if(!expected.equals(sub.getString()))
216 UResourceBundle sub = bundle.get("onehundredtwentythree"); local
228 UResourceBundle sub = bundle.get("one"); local
235 UResourceBundle sub = bundle.get("minusone"); local
248 UResourceBundle sub = bundle.get("plusone"); local
256 UResourceBundle sub = bundle.get("integerarray"); local
268 UResourceBundle sub = bundle.get("binarytest"); local
287 UResourceBundle sub = bundle.get("emptyarray"); local
297 UResourceBundle sub = bundle.get("menu"); local
464 UResourceBundle sub = rb.get("simplealias"); local
637 UResourceBundle sub = rb.get("aaa"); local
822 UResourceBundle sub = rb.get("Countries"); local
    [all...]
  /external/e2fsprogs/intl/
localename.c 743 int primary, sub;
765 sub = SUBLANGID (langid);
776 switch (sub)
799 switch (sub)
810 switch (sub)
822 switch (sub)
839 switch (sub)
850 switch (sub)
858 switch (sub)
889 switch (sub)
    [all...]
  /external/libhevc/common/arm64/
ihevc_intra_pred_luma_mode_3_to_9.s 141 sub x7, x5, #3
151 sub x7, x7, x3, lsl #3 //x7 = 8-8x3
159 sub x1, x1, #9 //ref_main_idx + 2nt - (8 + 1)(two_nt - idx - row ) for 8 & 8 - 1row
161 sub x6, x1, x9
178 sub v1.8b, v1.8b , v2.8b //ref_main_idx (sub row)
179 sub v1.8b, v26.8b , v1.8b //ref_main_idx (row 0)
181 sub v19.8b, v1.8b , v2.8b //ref_main_idx + 1 (row 0)
183 sub v7.8b, v28.8b , v6.8b //32-fract
186 sub v4.8b, v1.8b , v2.8b //ref_main_idx (row 1
    [all...]
  /external/llvm/unittests/Support/
RegexTest.cpp 89 EXPECT_EQ("aNUMber", Regex("[0-9]+").sub("NUM", "a1234ber"));
92 EXPECT_EQ("a\\ber", Regex("[0-9]+").sub("\\\\", "a1234ber", &Error));
94 EXPECT_EQ("a\nber", Regex("[0-9]+").sub("\\n", "a1234ber", &Error));
96 EXPECT_EQ("a\tber", Regex("[0-9]+").sub("\\t", "a1234ber", &Error));
98 EXPECT_EQ("ajber", Regex("[0-9]+").sub("\\j", "a1234ber", &Error));
101 EXPECT_EQ("aber", Regex("[0-9]+").sub("\\", "a1234ber", &Error));
105 EXPECT_EQ("aa1234bber", Regex("a[0-9]+b").sub("a\\0b", "a1234ber", &Error));
108 EXPECT_EQ("a1234ber", Regex("a([0-9]+)b").sub("a\\1b", "a1234ber", &Error));
111 EXPECT_EQ("aber", Regex("a[0-9]+b").sub("a\\100b", "a1234ber", &Error));
  /external/llvm/test/MC/AArch64/
neon-add-sub-instructions.s 26 // Vector Integer Sub
28 sub v0.8b, v1.8b, v2.8b
29 sub v0.16b, v1.16b, v2.16b
30 sub v0.4h, v1.4h, v2.4h
31 sub v0.8h, v1.8h, v2.8h
32 sub v0.2s, v1.2s, v2.2s
33 sub v0.4s, v1.4s, v2.4s
34 sub v0.2d, v1.2d, v2.2d
36 // CHECK: sub v0.8b, v1.8b, v2.8b // encoding: [0x20,0x84,0x22,0x2e]
37 // CHECK: sub v0.16b, v1.16b, v2.16b // encoding: [0x20,0x84,0x22,0x6e
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
split.h 24 sub = STRINGLIB_NEW((data) + (left), \
26 if (sub == NULL) \
28 if (PyList_Append(list, sub)) { \
29 Py_DECREF(sub); \
33 Py_DECREF(sub);
36 sub = STRINGLIB_NEW((data) + (left), \
38 if (sub == NULL) \
41 PyList_SET_ITEM(list, count, sub); \
43 if (PyList_Append(list, sub)) { \
44 Py_DECREF(sub); \
63 PyObject *sub; local
112 PyObject *sub; local
154 PyObject *list, *sub; local
202 PyObject *sub; local
253 PyObject *sub; local
296 PyObject *list, *sub; local
354 PyObject *sub; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
split.h 24 sub = STRINGLIB_NEW((data) + (left), \
26 if (sub == NULL) \
28 if (PyList_Append(list, sub)) { \
29 Py_DECREF(sub); \
33 Py_DECREF(sub);
36 sub = STRINGLIB_NEW((data) + (left), \
38 if (sub == NULL) \
41 PyList_SET_ITEM(list, count, sub); \
43 if (PyList_Append(list, sub)) { \
44 Py_DECREF(sub); \
63 PyObject *sub; local
112 PyObject *sub; local
154 PyObject *list, *sub; local
202 PyObject *sub; local
253 PyObject *sub; local
296 PyObject *list, *sub; local
354 PyObject *sub; local
    [all...]
  /external/python/cpython2/Objects/stringlib/
split.h 24 sub = STRINGLIB_NEW((data) + (left), \
26 if (sub == NULL) \
28 if (PyList_Append(list, sub)) { \
29 Py_DECREF(sub); \
33 Py_DECREF(sub);
36 sub = STRINGLIB_NEW((data) + (left), \
38 if (sub == NULL) \
41 PyList_SET_ITEM(list, count, sub); \
43 if (PyList_Append(list, sub)) { \
44 Py_DECREF(sub); \
63 PyObject *sub; local
112 PyObject *sub; local
154 PyObject *list, *sub; local
202 PyObject *sub; local
253 PyObject *sub; local
296 PyObject *list, *sub; local
354 PyObject *sub; local
    [all...]
  /external/python/cpython3/Objects/stringlib/
split.h 21 sub = STRINGLIB_NEW((data) + (left), \
23 if (sub == NULL) \
25 if (PyList_Append(list, sub)) { \
26 Py_DECREF(sub); \
30 Py_DECREF(sub);
33 sub = STRINGLIB_NEW((data) + (left), \
35 if (sub == NULL) \
38 PyList_SET_ITEM(list, count, sub); \
40 if (PyList_Append(list, sub)) { \
41 Py_DECREF(sub); \
60 PyObject *sub; local
109 PyObject *sub; local
151 PyObject *list, *sub; local
199 PyObject *sub; local
250 PyObject *sub; local
293 PyObject *list, *sub; local
351 PyObject *sub; local
    [all...]
  /prebuilts/go/darwin-x86/src/image/
ycbcr_test.go 85 // Make various sub-images of m.
91 sub := m.SubImage(subRect).(*YCbCr)
93 // For each point in the sub-image's bounds, check that m.At(x, y) equals sub.At(x, y).
94 for y := sub.Rect.Min.Y; y < sub.Rect.Max.Y; y++ {
95 for x := sub.Rect.Min.X; x < sub.Rect.Max.X; x++ {
97 color1 := sub.At(x, y).(color.YCbCr)
  /prebuilts/go/linux-x86/src/image/
ycbcr_test.go 85 // Make various sub-images of m.
91 sub := m.SubImage(subRect).(*YCbCr)
93 // For each point in the sub-image's bounds, check that m.At(x, y) equals sub.At(x, y).
94 for y := sub.Rect.Min.Y; y < sub.Rect.Max.Y; y++ {
95 for x := sub.Rect.Min.X; x < sub.Rect.Max.X; x++ {
97 color1 := sub.At(x, y).(color.YCbCr)
  /device/linaro/bootloader/edk2/ArmPlatformPkg/PrePeiCore/Arm/
Exception.S 55 sub r1, LR, #4
62 sub r1, LR, #4
69 sub r1, LR, #4
76 sub r1, LR, #8
90 sub r1, LR, #4
97 sub r1, LR, #4
  /external/pdfium/third_party/lcms/src/
cmserr.c 165 // Sub allocation takes care of many pointers of small size. The memory allocated in
202 _cmsSubAllocator* sub; local
205 sub = (_cmsSubAllocator*) _cmsMallocZero(ContextID, sizeof(_cmsSubAllocator));
206 if (sub == NULL) return NULL;
208 sub ->ContextID = ContextID;
210 sub ->h = _cmsCreateSubAllocChunk(ContextID, Initial);
211 if (sub ->h == NULL) {
212 _cmsFree(ContextID, sub);
216 return sub;
221 void _cmsSubAllocDestroy(_cmsSubAllocator* sub)
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
strlen.S 111 sub tmp1, data1, zeroones
113 sub tmp3, data2, zeroones
135 sub src, src, 16
139 sub tmp1, data1, zeroones
140 sub tmp3, data2, zeroones
145 sub tmp1, data1, zeroones
146 sub tmp3, data2, zeroones
169 sub tmp1, data1, zeroones
175 sub len, src, srcin
185 sub tmp1, data1, zeroone
    [all...]
string_copy.S 119 sub tmp1, data1, zeroones
123 sub tmp3, data2, zeroones
160 sub dst, dst, #1
194 sub dst, dst, #1
205 sub dst, dst, #1
219 sub dst, dst, #1
226 sub has_nul1_w, data1_w, zeroones_w
235 sub tmp1, data1, zeroones
strnlen.S 78 sub limit_wd, limit, #1 /* Limit != 0, so no underflow. */
93 sub tmp1, data1, zeroones
95 sub tmp3, data2, zeroones
112 sub len, src, srcin
117 sub len, len, #8
126 sub tmp1, data2, zeroones
130 sub len, len, #8
147 sub limit_wd, limit, #1
  /frameworks/base/core/java/android/content/res/
StringBlock.java 123 } else if (styleTag.equals("sub")) {
225 String sub; local
227 sub = subtag(tag, ";height=");
228 if (sub != null) {
229 int size = Integer.parseInt(sub);
234 sub = subtag(tag, ";size=");
235 if (sub != null) {
236 int size = Integer.parseInt(sub);
242 sub = subtag(tag, ";fgcolor=");
243 if (sub != null)
270 String sub; local
    [all...]
  /external/curl/lib/
ftplistparser.c 158 pl_unix_substate sub; member in struct:ftp_parselist_data::__anon17332::__anon17333
163 pl_winNT_substate sub; member in struct:ftp_parselist_data::__anon17332::__anon17334
392 switch(parser->state.UNIX.sub.total_dirsize) {
395 parser->state.UNIX.sub.total_dirsize = PL_UNIX_TOTALSIZE_READING;
496 parser->state.UNIX.sub.hlinks = PL_UNIX_HLINKS_PRESPACE;
500 switch(parser->state.UNIX.sub.hlinks) {
506 parser->state.UNIX.sub.hlinks = PL_UNIX_HLINKS_NUMBER;
528 parser->state.UNIX.sub.user = PL_UNIX_USER_PRESPACE;
538 switch(parser->state.UNIX.sub.user) {
543 parser->state.UNIX.sub.user = PL_UNIX_USER_PARSING
    [all...]
  /external/libffi/src/avr32/
sysv.S 48 sub sp, r10
50 sub sp, 20
130 sub sp, -20
147 sub r10, sp, -8
148 sub sp, 12
150 sub r11, sp, -8
199 sub sp, -12
201 sub sp, -20
  /external/python/cpython2/Modules/_ctypes/libffi/src/avr32/
sysv.S 48 sub sp, r10
50 sub sp, 20
130 sub sp, -20
147 sub r10, sp, -8
148 sub sp, 12
150 sub r11, sp, -8
199 sub sp, -12
201 sub sp, -20
  /external/python/cpython3/Modules/_ctypes/libffi/src/avr32/
sysv.S 48 sub sp, r10
50 sub sp, 20
130 sub sp, -20
147 sub r10, sp, -8
148 sub sp, 12
150 sub r11, sp, -8
199 sub sp, -12
201 sub sp, -20
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
preemph.cpp 257 *p1 = sub(*p1, temp2, pOverflow);
264 *p1 = sub(*p1, temp2, pOverflow);
  /prebuilts/go/darwin-x86/src/cmd/go/internal/load/
flag_test.go 88 ppfDirTest(".", 1, "/my/test/dir", "/my/test", "/my/test/other", "/my/test/dir/sub"),
89 ppfDirTest("..", 1, "/my/test", "/my/test/dir", "/my/test/other", "/my/test/dir/sub"),
90 ppfDirTest("./sub", 1, "/my/test/dir/sub", "/my/test", "/my/test/dir", "/my/test/other", "/my/test/dir/sub/sub"),
91 ppfDirTest("../other", 1, "/my/test/other", "/my/test", "/my/test/dir", "/my/test/other/sub", "/my/test/dir/other", "/my/test/dir/sub"),
92 ppfDirTest("./...", 3, "/my/test/dir", "/my/test/dir/sub", "/my/test/dir/sub/sub", "/my/test/other", "/my/test/other/sub")
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/load/
flag_test.go 88 ppfDirTest(".", 1, "/my/test/dir", "/my/test", "/my/test/other", "/my/test/dir/sub"),
89 ppfDirTest("..", 1, "/my/test", "/my/test/dir", "/my/test/other", "/my/test/dir/sub"),
90 ppfDirTest("./sub", 1, "/my/test/dir/sub", "/my/test", "/my/test/dir", "/my/test/other", "/my/test/dir/sub/sub"),
91 ppfDirTest("../other", 1, "/my/test/other", "/my/test", "/my/test/dir", "/my/test/other/sub", "/my/test/dir/other", "/my/test/dir/sub"),
92 ppfDirTest("./...", 3, "/my/test/dir", "/my/test/dir/sub", "/my/test/dir/sub/sub", "/my/test/other", "/my/test/other/sub")
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
symbol.d 14 18: d1002c20 sub x0, x1, #0xb

Completed in 896 milliseconds

1 2 3 4 5 6 78 91011>>