HomeSort by relevance Sort by last modified time
    Searched refs:ident (Results 1 - 25 of 910) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /test/vts/utils/python/coverage/
file_summary.py 25 in a GCNO file (key: integer ident, value: FunctionSummary object)
40 for ident in self.functions:
41 output += str(self.functions[ident])
arc_summary_test.py 54 for ident in range(n):
55 block = block_summary.BlockSummary(ident, 0)
63 for ident in range(n, 2 * n - 1):
64 block = block_summary.BlockSummary(ident, 0)
91 for ident in range(n):
92 block = block_summary.BlockSummary(ident, 0)
100 for ident in range(n, 2 * n - 1):
101 block = block_summary.BlockSummary(ident, 0)
function_summary.py 23 ident: integer function identifier.
30 def __init__(self, ident, name, src_file_name, first_line_number):
38 ident: integer function identifier.
45 self.ident = ident
  /frameworks/base/core/java/android/hardware/camera2/impl/
CallbackProxies.java 51 final long ident = Binder.clearCallingIdentity(); local
55 Binder.restoreCallingIdentity(ident);
62 final long ident = Binder.clearCallingIdentity(); local
66 Binder.restoreCallingIdentity(ident);
72 final long ident = Binder.clearCallingIdentity(); local
76 Binder.restoreCallingIdentity(ident);
82 final long ident = Binder.clearCallingIdentity(); local
86 Binder.restoreCallingIdentity(ident);
92 final long ident = Binder.clearCallingIdentity(); local
96 Binder.restoreCallingIdentity(ident);
102 final long ident = Binder.clearCallingIdentity(); local
112 final long ident = Binder.clearCallingIdentity(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkIdentitySet.java 95 for (NetworkIdentity ident : this) {
96 out.writeInt(ident.getType());
97 out.writeInt(ident.getSubType());
98 writeOptionalString(out, ident.getSubscriberId());
99 writeOptionalString(out, ident.getNetworkId());
100 out.writeBoolean(ident.getRoaming());
101 out.writeBoolean(ident.getMetered());
102 out.writeBoolean(ident.getDefaultNetwork());
111 for (NetworkIdentity ident : this) {
112 if (ident.getMetered())
    [all...]
NetworkStatsCollection.java 295 && templateMatches(template, key.ident)) {
369 if (templateMatches(template, key.ident)
379 entry.defaultNetwork = key.ident.areAllMembersOnDefaultNetwork() ?
381 entry.metered = key.ident.isAnyMemberMetered() ? METERED_YES : METERED_NO;
382 entry.roaming = key.ident.isAnyMemberRoaming() ? ROAMING_YES : ROAMING_NO;
401 public void recordData(NetworkIdentitySet ident, int uid, int set, int tag, long start,
403 final NetworkStatsHistory history = findOrCreateHistory(ident, uid, set, tag);
436 NetworkIdentitySet ident, int uid, int set, int tag) {
437 final Key key = new Key(ident, uid, set, tag);
474 final NetworkIdentitySet ident = new NetworkIdentitySet(in) local
548 final NetworkIdentitySet ident = new NetworkIdentitySet(in); local
602 final NetworkIdentitySet ident = new NetworkIdentitySet(in); local
776 public final NetworkIdentitySet ident; field in class:NetworkStatsCollection.Key
    [all...]
  /frameworks/base/core/java/android/net/
NetworkTemplate.java 311 public boolean matches(NetworkIdentity ident) {
312 if (!matchesMetered(ident)) return false;
313 if (!matchesRoaming(ident)) return false;
314 if (!matchesDefaultNetwork(ident)) return false;
318 return matchesMobile(ident);
320 return matchesWifi(ident);
322 return matchesEthernet(ident);
324 return matchesMobileWildcard(ident);
326 return matchesWifiWildcard(ident);
328 return matchesBluetooth(ident);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
which.py 27 ident = ()
39 if not ident:
41 ident = st[:3]
43 if st[:3] == ident:
53 if not ident:
  /external/python/cpython2/Tools/scripts/
which.py 27 ident = ()
39 if not ident:
41 ident = st[:3]
43 if st[:3] == ident:
53 if not ident:
  /external/python/cpython3/Tools/scripts/
which.py 27 ident = ()
39 if not ident:
41 ident = st[:3]
43 if st[:3] == ident:
53 if not ident:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_sys_setprofile.py 47 self.events.append((frameno, event, ident(frame)))
51 disallowed = [ident(self.add_event.im_func), ident(ident)]
107 f_ident = ident(f)
115 f_ident = ident(f)
124 f_ident = ident(f)
133 f_ident = ident(f)
141 f_ident = ident(f)
158 f_ident = ident(f)
340 def ident(function): function
    [all...]
test_thread.py 47 def task(self, ident):
50 verbose_print("task %s will run for %sus" % (ident, round(delay*1e6)))
52 verbose_print("task %s done" % ident)
170 def task2(self, ident):
172 if ident == 0:
181 (ident, round(delay * 1e6)))
183 verbose_print("task %s entering %s" % (ident, i))
185 verbose_print("task %s leaving barrier" % ident)
  /external/python/cpython2/Lib/test/
test_sys_setprofile.py 47 self.events.append((frameno, event, ident(frame)))
51 disallowed = [ident(self.add_event.im_func), ident(ident)]
107 f_ident = ident(f)
115 f_ident = ident(f)
124 f_ident = ident(f)
133 f_ident = ident(f)
141 f_ident = ident(f)
158 f_ident = ident(f
340 def ident(function): function
    [all...]
  /external/python/cpython3/Lib/test/
test_sys_setprofile.py 46 self.events.append((frameno, event, ident(frame)))
50 disallowed = [ident(self.add_event.__func__), ident(ident)]
106 f_ident = ident(f)
114 f_ident = ident(f)
123 f_ident = ident(f)
132 f_ident = ident(f)
140 f_ident = ident(f)
157 f_ident = ident(f
338 def ident(function): function
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_sys_setprofile.py 47 self.events.append((frameno, event, ident(frame)))
51 disallowed = [ident(self.add_event.im_func), ident(ident)]
107 f_ident = ident(f)
115 f_ident = ident(f)
124 f_ident = ident(f)
133 f_ident = ident(f)
141 f_ident = ident(f)
158 f_ident = ident(f
340 def ident(function): function
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_sys_setprofile.py 47 self.events.append((frameno, event, ident(frame)))
51 disallowed = [ident(self.add_event.im_func), ident(ident)]
107 f_ident = ident(f)
115 f_ident = ident(f)
124 f_ident = ident(f)
133 f_ident = ident(f)
141 f_ident = ident(f)
158 f_ident = ident(f
340 def ident(function): function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sys_setprofile.py 47 self.events.append((frameno, event, ident(frame)))
51 disallowed = [ident(self.add_event.im_func), ident(ident)]
107 f_ident = ident(f)
115 f_ident = ident(f)
124 f_ident = ident(f)
133 f_ident = ident(f)
141 f_ident = ident(f)
158 f_ident = ident(f
340 def ident(function): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sys_setprofile.py 47 self.events.append((frameno, event, ident(frame)))
51 disallowed = [ident(self.add_event.im_func), ident(ident)]
107 f_ident = ident(f)
115 f_ident = ident(f)
124 f_ident = ident(f)
133 f_ident = ident(f)
141 f_ident = ident(f)
158 f_ident = ident(f
340 def ident(function): function
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
codegen.py 487 for ident, ns in self.compiler.namespaces.items():
493 ident,
502 for ident in to_write:
503 if ident in comp_idents:
504 comp = comp_idents[ident]
516 elif ident in self.compiler.namespaces:
519 (ident, ident)
526 (ident, ident),
    [all...]
  /frameworks/base/services/core/java/com/android/server/job/
JobSchedulerShellCommand.java 159 final long ident = Binder.clearCallingIdentity(); local
175 Binder.restoreCallingIdentity(ident);
206 final long ident = Binder.clearCallingIdentity(); local
210 Binder.restoreCallingIdentity(ident);
242 final long ident = Binder.clearCallingIdentity(); local
246 Binder.restoreCallingIdentity(ident);
262 final long ident = Binder.clearCallingIdentity(); local
268 Binder.restoreCallingIdentity(ident);
330 final long ident = Binder.clearCallingIdentity(); local
336 Binder.restoreCallingIdentity(ident);
346 final long ident = Binder.clearCallingIdentity(); local
368 final long ident = Binder.clearCallingIdentity(); local
    [all...]
  /external/scapy/scapy/asn1/
mib.py 78 def mib_register(ident, value, the_mib, unresolved):
79 if ident in the_mib or ident in unresolved:
80 return ident in the_mib
99 unresolved[ident] = resval
102 the_mib[ident] = resval
132 ident,oid = gr[0],gr[-1]
133 ident=fixname(ident)
139 mib_register(ident, oid, the_mib, unresolved
    [all...]
  /external/guava/guava/src/com/google/common/eventbus/
AnnotatedSubscriberFinder.java 106 MethodIdentifier ident = (MethodIdentifier) o; local
107 return name.equals(ident.name) && parameterTypes.equals(ident.parameterTypes);
127 MethodIdentifier ident = new MethodIdentifier(superClazzMethod); local
128 if (!identifiers.containsKey(ident)) {
129 identifiers.put(ident, superClazzMethod);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiMulticastLockManager.java 146 final long ident = Binder.clearCallingIdentity(); local
151 Binder.restoreCallingIdentity(ident);
180 final long ident = Binder.clearCallingIdentity(); local
185 Binder.restoreCallingIdentity(ident);
  /frameworks/base/services/core/java/com/android/server/dreams/
DreamManagerService.java 484 final long ident = Binder.clearCallingIdentity(); local
488 Binder.restoreCallingIdentity(ident);
497 final long ident = Binder.clearCallingIdentity(); local
501 Binder.restoreCallingIdentity(ident);
510 final long ident = Binder.clearCallingIdentity(); local
514 Binder.restoreCallingIdentity(ident);
523 final long ident = Binder.clearCallingIdentity(); local
527 Binder.restoreCallingIdentity(ident);
535 final long ident = Binder.clearCallingIdentity(); local
539 Binder.restoreCallingIdentity(ident);
547 final long ident = Binder.clearCallingIdentity(); local
571 final long ident = Binder.clearCallingIdentity(); local
583 final long ident = Binder.clearCallingIdentity(); local
598 final long ident = Binder.clearCallingIdentity(); local
613 final long ident = Binder.clearCallingIdentity(); local
628 final long ident = Binder.clearCallingIdentity(); local
    [all...]
  /external/python/cpython3/Lib/
crypt.py 13 class _Method(_namedtuple('_Method', 'name ident salt_chars total_size')):
30 s = '${}$'.format(method.ident) if method.ident else ''

Completed in 606 milliseconds

1 2 3 4 5 6 7 8 91011>>