/external/libnl/lib/route/ |
tc.c | 108 struct gnet_stats_rate_est *re; local 110 re = nla_data(tbs[TCA_STATS_RATE_EST]); 111 g->tc_stats[RTNL_TC_RATE_BPS] = re->bps; 112 g->tc_stats[RTNL_TC_RATE_PPS] = re->pps;
|
/external/llvm/test/MC/Mips/mips32r6/ |
invalid-mips2.s | 37 # div has been re-encoded. See valid.s 38 # divu has been re-encoded. See valid.s
|
/external/llvm/test/MC/Mips/mips64r6/ |
invalid-mips2.s | 40 # div has been re-encoded. See valid.s 41 # divu has been re-encoded. See valid.s
|
/external/opencv3/platforms/osx/ |
build_framework.py | 28 import glob, re, os, os.path, shutil, string, sys namespace
|
/external/protobuf/gtest/test/ |
gtest_filter_unittest.py | 46 import re namespace 103 PARAM_TEST_REGEX = re.compile(r'/ParamTest') 106 TEST_CASE_REGEX = re.compile(r'^\[\-+\] \d+ tests? from (\w+(/\w+)?)') 109 TEST_REGEX = re.compile(r'^\[\s*RUN\s*\].*\.(\w+(/\w+)?)')
|
/external/skia/platform_tools/android/tests/expectations/ |
Android.mk | 21 # (1) You're building debug code that depends on libskia. 26 # (2) You're building libskia in debug mode.
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
gtest_filter_unittest.py | 46 import re namespace 103 PARAM_TEST_REGEX = re.compile(r'/ParamTest') 106 TEST_CASE_REGEX = re.compile(r'^\[\-+\] \d+ tests? from (\w+(/\w+)?)') 109 TEST_REGEX = re.compile(r'^\[\s*RUN\s*\].*\.(\w+(/\w+)?)')
|
/external/zxing/qr_scanner/src/com/google/zxing/client/android/ |
DecodeHandler.java | 77 } catch (ReaderException re) {
|
/frameworks/base/docs/html/ndk/reference/ |
dynsections.js | 59 var re = new RegExp('^row_'+id+'\\d+_$', "i"); //only one sub 60 return this.id.match(re);
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/ |
NotificationController.java | 407 } catch (RemoteException re) { 408 Log.i(LOG_TAG, "Error requesting print job cancellation", re); 444 } catch (RemoteException re) { 445 Log.i(LOG_TAG, "Error requesting print job restart", re);
|
/frameworks/base/services/core/java/com/android/server/wm/ |
KeyguardDisableHandler.java | 77 // should be re-enabled, so determine the allow state immediately. 83 // lazily evaluate this next time we're asked to disable keyguard 107 } catch (RemoteException re) {
|
/frameworks/opt/photoviewer/ |
Android.mk | 21 # if you're certain that you need it; see go/extradex-design for more context. 42 # You should only use this library if you're certain that you need it; see
|
/frameworks/support/ |
apicheck.mk | 72 # Check that the API we're building hasn't broken the last-released SDK version 89 # Check that the API we're building hasn't changed from the not-yet-released
|
/hardware/bsp/intel/peripheral/libmraa/tests/ |
gpio_checks.py | 29 import os, re, sys namespace
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_tapify.py | 11 import sys,string,os,re,math,numpy namespace
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_filter_unittest.py | 46 import re namespace 103 PARAM_TEST_REGEX = re.compile(r'/ParamTest') 106 TEST_CASE_REGEX = re.compile(r'^\[\-+\] \d+ tests? from (\w+(/\w+)?)') 109 TEST_REGEX = re.compile(r'^\[\s*RUN\s*\].*\.(\w+(/\w+)?)')
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
Delaunay.h | 64 void build(int lo, int hi, EdgePointer *le, EdgePointer *re, int rows);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
AbstractContactsProvider.java | 237 } catch (RuntimeException re) { 239 throw re; 280 } catch (RuntimeException re) { 282 throw re;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
SimpleXMLRPCServer.py | 109 import re namespace 443 # a re to match a gzip Accept-Encoding 444 aepattern = re.compile(r""" 447 """, re.VERBOSE | re.IGNORECASE)
|
fractions.py | 11 import re namespace 29 _RATIONAL_FORMAT = re.compile(r""" 41 """, re.VERBOSE | re.IGNORECASE) 67 # We're immutable, so use __new__ not __init__
|
nntplib.py | 32 import re namespace 320 line_pat = re.compile("^(?P<group>[^ \t]+)[ \t]+(.*)$") 460 pat = re.compile('^([0-9]+) ?(.*)\n?') 502 line_pat = re.compile("^([^ \t]+)[ \t]+(.*)$")
|
tokenize.py | 29 import string, re namespace 102 re.compile, (Token, PseudoToken, Single3, Double3)) 103 endprogs = {"'": re.compile(Single), '"': re.compile(Double),
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
util.py | 9 import sys, os, string, re namespace 95 rel_re = re.compile (r'[\d.]+') 215 return re.sub(r'\$([a-zA-Z_][a-zA-Z_0-9]*)', _subst, s) 248 _wordchars_re = re.compile(r'[^\\\'\"%s ]*' % string.whitespace) 249 _squote_re = re.compile(r"'(?:[^'\\]|\\.)*'") 250 _dquote_re = re.compile(r'"(?:[^"\\]|\\.)*"') 380 generated in indirect mode; unless you know what you're doing, leave 390 # in debug mode and optimize is 0. If we're not in debug mode (-O
|
/prebuilts/gdb/darwin-x86/lib/python2.7/json/ |
encoder.py | 3 import re namespace 14 ESCAPE = re.compile(r'[\x00-\x1f\\"\b\f\n\r\t]') 15 ESCAPE_ASCII = re.compile(r'([\\"]|[^\ -~])') 16 HAS_UTF8 = re.compile(r'[\x80-\xff]')
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_site.py | 13 import re namespace 117 re.escape(os.path.join(pth_dir, pth_fn))) 132 re.escape(os.path.join(pth_dir, pth_fn))) 146 re.escape(os.path.join(pth_dir, pth_fn)))
|