Searched refs:sub (Results 76 - 100 of 1307) sorted by relevance

1234567891011>>

/external/regex-re2/re2/
H A Dregexp.cc29 // Can't call Decref on the sub-Regexps here because
137 Regexp** subs = re->sub();
139 Regexp* sub = subs[i]; local
140 if (sub == NULL)
142 if (sub->ref_ == kMaxRef)
143 sub->Decref();
145 --sub->ref_;
146 if (sub->ref_ == 0 && !sub->QuickDestroy()) {
147 sub
182 Plus(Regexp* sub, ParseFlags flags) argument
191 Star(Regexp* sub, ParseFlags flags) argument
200 Quest(Regexp* sub, ParseFlags flags) argument
209 ConcatOrAlternate(RegexpOp op, Regexp** sub, int nsub, ParseFlags flags, bool can_factor) argument
254 Concat(Regexp** sub, int nsub, ParseFlags flags) argument
258 Alternate(Regexp** sub, int nsub, ParseFlags flags) argument
262 AlternateNoFactor(Regexp** sub, int nsub, ParseFlags flags) argument
266 Capture(Regexp* sub, ParseFlags flags, int cap) argument
274 Repeat(Regexp* sub, ParseFlags flags, int min, int max) argument
630 Regexp** sub = this->sub(); local
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DQuicktimeTextTrackImpl.java67 for (Line sub : subs) {
68 long silentTime = sub.from - lastEnd;
77 dos.writeShort(sub.text.getBytes("UTF-8").length);
78 dos.write(sub.text.getBytes("UTF-8"));
84 lastEnd = sub.to;
96 for (Line sub : subs) {
97 long silentTime = sub.from - lastEnd;
103 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from));
104 lastEnd = sub
[all...]
H A DTextTrackImpl.java70 for (Line sub : subs) {
71 long silentTime = sub.from - lastEnd;
80 dos.writeShort(sub.text.getBytes("UTF-8").length);
81 dos.write(sub.text.getBytes("UTF-8"));
87 lastEnd = sub.to;
99 for (Line sub : subs) {
100 long silentTime = sub.from - lastEnd;
106 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from));
107 lastEnd = sub
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DICUResourceBundleTest.java145 UResourceBundle sub;
147 sub = obj.get(i);
148 String temp =sub.getString();
162 UResourceBundle sub;
164 sub = obj.get(i);
165 String temp =sub.getString();
197 UResourceBundle sub = bundle.get("zerotest");
198 if(!expected.equals(sub.getString())){
201 sub = bundle.get("emptyexplicitstring");
203 if(!expected.equals(sub
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DICUResourceBundleTest.java144 UResourceBundle sub;
146 sub = obj.get(i);
147 String temp =sub.getString();
161 UResourceBundle sub;
163 sub = obj.get(i);
164 String temp =sub.getString();
196 UResourceBundle sub = bundle.get("zerotest");
197 if(!expected.equals(sub.getString())){
200 sub = bundle.get("emptyexplicitstring");
202 if(!expected.equals(sub
[all...]
/external/e2fsprogs/intl/
H A Dlocalename.c743 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/python/cpython2/Lib/
H A DUserString.py65 def count(self, sub, start=0, end=sys.maxint):
66 return self.data.count(sub, start, end)
87 def find(self, sub, start=0, end=sys.maxint):
88 return self.data.find(sub, start, end)
89 def index(self, sub, start=0, end=sys.maxint):
90 return self.data.index(sub, start, end)
109 def rfind(self, sub, start=0, end=sys.maxint):
110 return self.data.rfind(sub, start, end)
111 def rindex(self, sub, start=0, end=sys.maxint):
112 return self.data.rindex(sub, star
[all...]
/external/libhevc/common/arm64/
H A Dihevc_intra_pred_luma_mode_3_to_9.s141 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 v
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_importhooks.py15 absimp = "import sub\n" namespace
16 relimp = "from . import sub\n" namespace
17 deeprelimp = "from .... import sub\n" namespace
41 "hooktestpackage.sub": (True, test_co),
42 "hooktestpackage.sub.subber": (True, test_co),
46 "hooktestpackage.sub.subber.subest": (True, test2_deeprel_co),
48 "sub": (False, test_co),
162 import hooktestpackage.sub namespace
163 import hooktestpackage.sub.subber namespace
168 self.assertEqual(hooktestpackage.sub
198 import hooktestpackage.sub.subber.subest as subest namespace
210 import sub namespace
[all...]
/external/llvm/unittests/Support/
H A DRegexTest.cpp89 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/
H A Dneon-add-sub-instructions.s28 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]
38 // CHECK: sub v
[all...]
/external/python/cpython2/Modules/
H A Dcgen.py156 sub = rest[1:-1]
160 num, sub = getnum(sub)
163 if not sub:
166 if sub[:1] == '*':
168 sub = sub[1:]
170 raise arg_error, ('\'*\' expected', sub)
171 if sub == 'retval':
175 elif not isnum(sub) an
[all...]
/external/python/cpython2/Objects/stringlib/
H A Dsplit.h24 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/curl/lib/
H A Dftplistparser.c158 pl_unix_substate sub; member in struct:ftp_parselist_data::__anon3631::__anon3632
163 pl_winNT_substate sub; member in struct:ftp_parselist_data::__anon3631::__anon3633
403 switch(parser->state.UNIX.sub.total_dirsize) {
406 parser->state.UNIX.sub.total_dirsize = PL_UNIX_TOTALSIZE_READING;
509 parser->state.UNIX.sub.hlinks = PL_UNIX_HLINKS_PRESPACE;
513 switch(parser->state.UNIX.sub.hlinks) {
519 parser->state.UNIX.sub.hlinks = PL_UNIX_HLINKS_NUMBER;
541 parser->state.UNIX.sub.user = PL_UNIX_USER_PRESPACE;
551 switch(parser->state.UNIX.sub.user) {
556 parser->state.UNIX.sub
[all...]
/external/python/cpython2/Lib/idlelib/idle_test/
H A Dtest_pathbrowser.py22 sub = p.GetSubList()
23 self.assertEqual(len(sub), len(sys.path))
25 #self.assertEqual(type(sub[0]), PathBrowser.DirBrowserTreeItem)
/external/python/cpython2/Modules/_ctypes/libffi/src/avr32/
H A Dsysv.S48 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/boringssl/src/crypto/x509v3/
H A Dv3_ncons.c82 static int nc_match_single(GENERAL_NAME *sub, GENERAL_NAME *gen);
83 static int nc_dn(X509_NAME *sub, X509_NAME *nm);
84 static int nc_dns(ASN1_IA5STRING *sub, ASN1_IA5STRING *dns);
85 static int nc_email(ASN1_IA5STRING *sub, ASN1_IA5STRING *eml);
122 GENERAL_SUBTREE *sub = NULL;
139 sub = GENERAL_SUBTREE_new();
140 if (!v2i_GENERAL_NAME_ex(sub->base, method, ctx, &tval, 1))
144 if (!*ptree || !sk_GENERAL_SUBTREE_push(*ptree, sub))
146 sub = NULL;
156 if (sub)
[all...]
/external/llvm/tools/llvm-pdbdump/
H A Dllvm-pdbdump.cpp111 cl::OneOrMore, cl::sub(PrettySubcommand));
114 cl::cat(TypeCategory), cl::sub(PrettySubcommand));
116 cl::cat(TypeCategory), cl::sub(PrettySubcommand));
118 cl::cat(TypeCategory), cl::sub(PrettySubcommand));
120 cl::cat(TypeCategory), cl::sub(PrettySubcommand));
122 cl::sub(PrettySubcommand));
124 cl::sub(PrettySubcommand));
127 cl::cat(TypeCategory), cl::sub(PrettySubcommand));
132 cl::cat(OtherOptions), cl::sub(PrettySubcommand));
135 cl::ZeroOrMore, cl::cat(FilterCategory), cl::sub(PrettySubcomman
[all...]
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
H A DMockPixelUtils.java19 public static PointF sub(PointF lhs, PointF rhs) { method in class:MockPixelUtils
/external/compiler-rt/lib/builtins/arm/
H A Daeabi_ldivmod.S23 sub sp, sp, #16
H A Daeabi_uldivmod.S23 sub sp, sp, #16
H A Ddivmodsi4.S61 sub r0, ip, r0, asr #31
62 sub r1, lr, r1, asr #31
69 sub r0, r0, r4, asr #31
70 sub r1, r1, r5, asr #31
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
H A DNonComponentDependencyComponent.java20 import test.sub.OtherThing;
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/sub/
H A DExposed.java1 package test.sub;
/external/dtc/tests/
H A Doverlay_overlay_manual_fixups.dts83 sub-test-node {
84 new-sub-test-property;

Completed in 676 milliseconds

1234567891011>>