HomeSort by relevance Sort by last modified time
    Searched defs:re (Results 76 - 100 of 645) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/pdfium/fxbarcode/oned/
BC_OneDimWriter.cpp 193 FX_RECT re = matrix->TransformRect(rect).GetOuterRect(); local
194 device->FillRect(&re, m_backgroundColor);
  /external/selinux/libselinux/utils/
sefcontext_compile.c 183 struct regex_data *re = specs[i].regex; local
232 rc = regex_writef(re, bin_file, do_write_precompregex);
  /external/toybox/toys/pending/
expr.c 106 static void re(char *target, char *pattern, struct value *ret) function
132 enum { OR = 1, AND, EQ, NE, GT, GTE, LT, LTE, ADD, SUB, MUL, DIVI, MOD, RE };
150 {":", 6, S_TO_SI, RE },
201 case S_TO_SI: // op == RE
203 cmp = ret->s!=s; // ret overwritten by re so check now
204 re(s, t = get_str(rhs), ret);
221 eval_expr(ret, 1); // We're inside ( ), so min_prec = 1
  /external/wayland/tests/
test-runner.c 135 int re; local
142 re = alarm(to);
143 fprintf(stderr, "Timeout was %sset", re ? "re-" : "");
  /external/zlib/src/test/
infcover.c 247 unsigned char *in, *re; local
271 re = realloc(in, next);
272 return re == NULL ? in : re;
  /frameworks/base/cmds/appwidget/src/com/android/commands/appwidget/
AppWidget.java 154 } catch (RemoteException re) {
155 re.printStackTrace();
  /frameworks/base/core/java/android/accounts/
ChooseAccountActivity.java 78 } catch (RemoteException re) {
80 Log.w(getClass().getSimpleName(), "Unable to get caller identity \n" + re); local
  /frameworks/base/media/lib/tvremote/java/com/android/media/tv/remoteprovider/
TvRemoteProvider.java 130 } catch (RemoteException re) {
131 throw re.rethrowFromSystemServer();
144 } catch (RemoteException re) {
145 throw re.rethrowFromSystemServer();
161 } catch (RemoteException re) {
162 throw re.rethrowFromSystemServer();
179 } catch (RemoteException re) {
180 throw re.rethrowFromSystemServer();
195 } catch (RemoteException re) {
196 throw re.rethrowFromSystemServer()
    [all...]
  /platform_testing/utils/crashcollector/src/android/test/crashcollector/
Collector.java 90 } catch (RemoteException re) {
92 re.printStackTrace();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/
mpc.h 105 mpfr_t re; member in struct:__anon61308
245 #define mpc_realref(x) ((x)->re)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/include/
mpc.h 105 mpfr_t re; member in struct:__anon63369
245 #define mpc_realref(x) ((x)->re)
  /prebuilts/go/darwin-x86/src/cmd/vet/
asmdecl.go 110 re = regexp.MustCompile
111 asmPlusBuild = re(`//\s+\+build\s+([^\n]+)`)
112 asmTEXT = re(`\bTEXT\b(.*)·([^\(]+)\(SB\)(?:\s*,\s*([0-9A-Z|+()]+))?(?:\s*,\s*\$(-?[0-9]+)(?:-([0-9]+))?)?`)
113 asmDATA = re(`\b(DATA|GLOBL)\b`)
114 asmNamedFP = re(`([a-zA-Z0-9_\xFF-\x{10FFFF}]+)(?:\+([0-9]+))\(FP\)`)
115 asmUnnamedFP = re(`[^+\-0-9](([0-9]+)\(FP\))`)
116 asmSP = re(`[^+\-0-9](([0-9]+)\(([A-Z0-9]+)\))`)
117 asmOpcode = re(`^\s*(?:[A-Z0-9a-z_]+:)?\s*([A-Z]+)\s*([^,]*)(?:,\s*(.*))?`)
118 ppc64Suff = re(`([BHWD])(ZU|Z|U|BR)?$`)
679 // Determine whether the match we're holdin
109 re = regexp.MustCompile var
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
encode_test.go 112 // byte slices are special even if they're renamed types.
780 var re = regexp.MustCompile var
784 re(`p`), // no binary exponential notation
785 re(`^\+`), // no leading + sign
786 re(`^-?0[^.]`), // no unnecessary leading zeros
787 re(`^-?\.`), // leading zero required before decimal point
788 re(`\.(e|$)`), // no trailing decimal
789 re(`\.[0-9]+0(e|$)`), // no trailing zero in fraction
790 re(`^-?(0|[0-9]{2,})\..*e`), // exponential notation must have normalized mantissa
791 re(`e[0-9]`), // positive exponent must be signe
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
asmdecl.go 110 re = regexp.MustCompile
111 asmPlusBuild = re(`//\s+\+build\s+([^\n]+)`)
112 asmTEXT = re(`\bTEXT\b(.*)·([^\(]+)\(SB\)(?:\s*,\s*([0-9A-Z|+()]+))?(?:\s*,\s*\$(-?[0-9]+)(?:-([0-9]+))?)?`)
113 asmDATA = re(`\b(DATA|GLOBL)\b`)
114 asmNamedFP = re(`([a-zA-Z0-9_\xFF-\x{10FFFF}]+)(?:\+([0-9]+))\(FP\)`)
115 asmUnnamedFP = re(`[^+\-0-9](([0-9]+)\(FP\))`)
116 asmSP = re(`[^+\-0-9](([0-9]+)\(([A-Z0-9]+)\))`)
117 asmOpcode = re(`^\s*(?:[A-Z0-9a-z_]+:)?\s*([A-Z]+)\s*([^,]*)(?:,\s*(.*))?`)
118 ppc64Suff = re(`([BHWD])(ZU|Z|U|BR)?$`)
679 // Determine whether the match we're holdin
109 re = regexp.MustCompile var
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
encode_test.go 112 // byte slices are special even if they're renamed types.
780 var re = regexp.MustCompile var
784 re(`p`), // no binary exponential notation
785 re(`^\+`), // no leading + sign
786 re(`^-?0[^.]`), // no unnecessary leading zeros
787 re(`^-?\.`), // leading zero required before decimal point
788 re(`\.(e|$)`), // no trailing decimal
789 re(`\.[0-9]+0(e|$)`), // no trailing zero in fraction
790 re(`^-?(0|[0-9]{2,})\..*e`), // exponential notation must have normalized mantissa
791 re(`e[0-9]`), // positive exponent must be signe
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
benchmark_register.cc 41 #include "re.h"
74 bool FindBenchmarks(const std::string& re,
104 Regex re; local
105 if (!re.Init(spec, &error_msg)) {
106 Err << "Could not compile benchmark re: " << error_msg << std::endl;
189 if (re.Match(instance.name)) {
208 bool FindBenchmarksInternal(const std::string& re,
211 return BenchmarkFamilies::GetInstance()->FindBenchmarks(re, benchmarks, Err);
  /toolchain/binutils/binutils-2.27/binutils/
resres.c 219 const rc_res_entry *re; local
221 for (re = rd->entries; re != NULL; re = re->next)
226 /* If we're at level 1, the key of this resource is the
230 type = &re->id;
234 /* If we're at level 2, the key of this resource is the name
236 name = &re->id;
240 /* If we're at level 3, then this key represents a language
650 rc_res_entry *re = NULL; local
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
GranularRetriableTestWrapper.java 277 } catch (RuntimeException re) {
279 CLog.e(re);
281 runListener.testRunFailed(re.getMessage());
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
ReadElf.java 176 ReadElf re = new ReadElf(new File(arg)); local
177 re.getSymbol("x");
178 re.getDynamicSymbol("x");
179 re.close();
312 // Don't bother to re-read the Section Header StrTab.
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
NdkApiXmlReport.java 149 ReadElf re = ReadElf.read(ndkSo); local
150 re.getDynamicSymbol("");
151 ReadElf.Symbol[] symArr = re.getDynSymArr();
  /external/aac/libFDK/include/
common_fix.h 429 FIXP_SGL re; member in struct:__anon13797
440 FIXP_DBL re; member in struct:__anon13798
  /external/autotest/client/deps/fakemodem/src/
fakemodem.c 367 GRegex *re = g_regex_new (command_patterns[i], local
374 if (re == NULL) {
379 g_ptr_array_add (commands, re);
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 101 // we're keeping it the same in each test
498 RuntimeException re = new RuntimeException(iae); local
499 IllegalStateException ex = new IllegalStateException(re);
501 assertEquals(asList(ex, re, iae, fnfe), Throwables.getCausalChain(ex));
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
SwatDeprecated.java 116 RuntimeException re = new RuntimeException(e.getMessage()); local
117 re.initCause(e);
118 throw re;
225 // swat copyrights in the first 20 lines while we're at it
307 RuntimeException re = new RuntimeException(e.getMessage()); local
308 re.initCause(e);
309 throw re;
  /external/iproute2/tc/
tc_util.c 736 struct gnet_stats_rate_est64 re = {0}; local
738 memcpy(&re, RTA_DATA(tbs[TCA_STATS_RATE_EST64]),
740 sizeof(re)));
742 prefix, sprint_rate(re.bps, b1), re.pps);
744 struct gnet_stats_rate_est re = {0}; local
746 memcpy(&re, RTA_DATA(tbs[TCA_STATS_RATE_EST]),
747 MIN(RTA_PAYLOAD(tbs[TCA_STATS_RATE_EST]), sizeof(re)));
749 prefix, sprint_rate(re.bps, b1), re.pps)
    [all...]

Completed in 909 milliseconds

1 2 34 5 6 7 8 91011>>