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

1 2 34 5 6 7 8 91011>>

  /frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
DevicePolicyManagerServiceMigrationTest.java 124 final long ident = mContext.binder.clearCallingIdentity(); local
133 mContext.binder.restoreCallingIdentity(ident);
237 final long ident = mContext.binder.clearCallingIdentity(); local
246 mContext.binder.restoreCallingIdentity(ident);
303 final long ident = mContext.binder.clearCallingIdentity(); local
312 mContext.binder.restoreCallingIdentity(ident);
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
multiprocessing_shim.py 80 def ident(self): member in class:ProcessShim
81 return self._proc.ident
  /frameworks/base/services/core/java/com/android/server/slice/
SliceShellCommand.java 72 long ident = Binder.clearCallingIdentity(); local
106 Binder.restoreCallingIdentity(ident);
  /prebuilts/go/darwin-x86/src/sort/
genzfunc.go 54 arg0Type := arg0.Type.(*ast.Ident)
113 ident, ok := ce.Fun.(*ast.Ident)
119 if ident.Name == "int" || ident.Name == "uint" {
125 ident.Name += "_func"
  /prebuilts/go/linux-x86/src/sort/
genzfunc.go 54 arg0Type := arg0.Type.(*ast.Ident)
113 ident, ok := ce.Fun.(*ast.Ident)
119 if ident.Name == "int" || ident.Name == "uint" {
125 ident.Name += "_func"
  /test/vts/utils/python/coverage/
gcda_parser.py 137 ident = self.ReadInt()
138 func = self.file_summary.functions[ident]
  /development/vndk/tools/sourcedr/sourcedr/blueprint/
blueprint.py 98 IDENT = 1
321 (Token.IDENT, '[A-Za-z_][0-9A-Za-z_]*'),
369 if token in {Token.IDENT, Token.INTEGER}:
588 if lexer.token == Token.IDENT:
589 ident = self.parse_ident_lvalue()
591 self.parse_assign(ident, lexer.token)
593 self.parse_module_definition(ident)
613 def parse_assign(self, ident, assign_token):
619 value = Concat(self.create_var_ref(ident), value)
620 self.define_var(ident, value
    [all...]
  /prebuilts/go/darwin-x86/src/go/printer/testdata/
parser.go 58 unresolved []*ast.Ident // unresolved identifiers
64 targetStack [][]*ast.Ident // stack of unresolved labels
114 for _, ident := range p.targetStack[n] {
115 ident.Obj = scope.Lookup(ident.Name)
116 if ident.Obj == nil && p.mode&DeclarationErrors != 0 {
117 p.error(ident.Pos(), fmt.Sprintf("label %s undefined", ident.Name))
125 func (p *parser) declare(decl interface{}, scope *ast.Scope, kind ast.ObjKind, idents ...*ast.Ident) {
126 for _, ident := range idents
    [all...]
  /prebuilts/go/linux-x86/src/go/printer/testdata/
parser.go 58 unresolved []*ast.Ident // unresolved identifiers
64 targetStack [][]*ast.Ident // stack of unresolved labels
114 for _, ident := range p.targetStack[n] {
115 ident.Obj = scope.Lookup(ident.Name)
116 if ident.Obj == nil && p.mode&DeclarationErrors != 0 {
117 p.error(ident.Pos(), fmt.Sprintf("label %s undefined", ident.Name))
125 func (p *parser) declare(decl interface{}, scope *ast.Scope, kind ast.ObjKind, idents ...*ast.Ident) {
126 for _, ident := range idents
    [all...]
  /external/python/cpython3/Lib/test/
test_crypt.py 18 method.salt_chars + (3 if method.ident else 0))
test_threading.py 104 self.assertIsNone(t.ident)
113 self.assertNotEqual(t.ident, 0)
114 self.assertIsNotNone(t.ident)
121 # The ident still must work for the main thread and dummy threads.
122 self.assertIsNotNone(threading.currentThread().ident)
124 ident.append(threading.currentThread().ident)
127 ident = []
130 self.assertIsNotNone(ident[0])
132 del threading._active[ident[0]
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
LauncherAppsService.java 245 long ident = injectClearCallingIdentity(); local
254 injectRestoreCallingIdentity(ident);
300 long ident = Binder.clearCallingIdentity(); local
309 Binder.restoreCallingIdentity(ident);
328 long ident = injectClearCallingIdentity(); local
338 injectRestoreCallingIdentity(ident);
373 long ident = Binder.clearCallingIdentity(); local
383 Binder.restoreCallingIdentity(ident);
407 long ident = Binder.clearCallingIdentity(); local
415 Binder.restoreCallingIdentity(ident);
549 long ident = Binder.clearCallingIdentity(); local
581 long ident = Binder.clearCallingIdentity(); local
634 long ident = Binder.clearCallingIdentity(); local
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
resolve.go 44 func resolve(scope *Scope, ident *Ident) bool {
46 if obj := scope.Lookup(ident.Name); obj != nil {
47 ident.Obj = obj
160 for _, ident := range file.Unresolved {
161 if !resolve(fileScope, ident) {
162 p.errorf(ident.Pos(), "undeclared name: %s", ident.Name)
163 file.Unresolved[i] = ident
  /prebuilts/go/linux-x86/src/go/ast/
resolve.go 44 func resolve(scope *Scope, ident *Ident) bool {
46 if obj := scope.Lookup(ident.Name); obj != nil {
47 ident.Obj = obj
160 for _, ident := range file.Unresolved {
161 if !resolve(fileScope, ident) {
162 p.errorf(ident.Pos(), "undeclared name: %s", ident.Name)
163 file.Unresolved[i] = ident
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_threading.py 89 self.assertEqual(t.ident, None)
98 self.assertNotEqual(t.ident, 0)
99 self.assertFalse(t.ident is None)
106 # The ident still must work for the main thread and dummy threads.
107 self.assertFalse(threading.currentThread().ident is None)
109 ident.append(threading.currentThread().ident)
112 ident = []
115 self.assertFalse(ident[0] is None)
117 del threading._active[ident[0]]
    [all...]
  /external/python/cpython2/Lib/test/
test_threading.py 95 self.assertIsNone(t.ident)
104 self.assertNotEqual(t.ident, 0)
105 self.assertIsNotNone(t.ident)
112 # The ident still must work for the main thread and dummy threads.
113 self.assertIsNotNone(threading.currentThread().ident)
115 ident.append(threading.currentThread().ident)
118 ident = []
121 self.assertIsNotNone(ident[0])
123 del threading._active[ident[0]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_threading.py 91 self.assertEqual(t.ident, None)
100 self.assertNotEqual(t.ident, 0)
101 self.assertFalse(t.ident is None)
108 # The ident still must work for the main thread and dummy threads.
109 self.assertFalse(threading.currentThread().ident is None)
111 ident.append(threading.currentThread().ident)
114 ident = []
117 self.assertFalse(ident[0] is None)
119 del threading._active[ident[0]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_threading.py 91 self.assertEqual(t.ident, None)
100 self.assertNotEqual(t.ident, 0)
101 self.assertFalse(t.ident is None)
108 # The ident still must work for the main thread and dummy threads.
109 self.assertFalse(threading.currentThread().ident is None)
111 ident.append(threading.currentThread().ident)
114 ident = []
117 self.assertFalse(ident[0] is None)
119 del threading._active[ident[0]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading.py 91 self.assertEqual(t.ident, None)
100 self.assertNotEqual(t.ident, 0)
101 self.assertFalse(t.ident is None)
108 # The ident still must work for the main thread and dummy threads.
109 self.assertFalse(threading.currentThread().ident is None)
111 ident.append(threading.currentThread().ident)
114 ident = []
117 self.assertFalse(ident[0] is None)
119 del threading._active[ident[0]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threading.py 91 self.assertEqual(t.ident, None)
100 self.assertNotEqual(t.ident, 0)
101 self.assertFalse(t.ident is None)
108 # The ident still must work for the main thread and dummy threads.
109 self.assertFalse(threading.currentThread().ident is None)
111 ident.append(threading.currentThread().ident)
114 ident = []
117 self.assertFalse(ident[0] is None)
119 del threading._active[ident[0]
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 978 long ident = Binder.clearCallingIdentity(); local
1019 long ident = Binder.clearCallingIdentity(); local
1058 long ident = Binder.clearCallingIdentity(); local
1105 final long ident = Binder.clearCallingIdentity(); local
1132 long ident = Binder.clearCallingIdentity(); local
1159 long ident = Binder.clearCallingIdentity(); local
1185 long ident = Binder.clearCallingIdentity(); local
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
ordering.go 40 if ident, _ := f.Type.(*ast.Ident); ident != nil {
41 embedded := check.pkg.scope.Lookup(ident.Name)
  /prebuilts/go/linux-x86/src/go/types/
ordering.go 40 if ident, _ := f.Type.(*ast.Ident); ident != nil {
41 embedded := check.pkg.scope.Lookup(ident.Name)
  /frameworks/base/services/core/java/com/android/server/clipboard/
ClipboardService.java 458 final long ident = Binder.clearCallingIdentity(); local
478 Binder.restoreCallingIdentity(ident);
497 final long ident = Binder.clearCallingIdentity(); local
507 Binder.restoreCallingIdentity(ident);
532 final long ident = Binder.clearCallingIdentity(); local
542 Binder.restoreCallingIdentity(ident);
589 final long ident = Binder.clearCallingIdentity(); local
598 Binder.restoreCallingIdentity(ident);
  /frameworks/base/services/core/java/com/android/server/power/
PowerManagerService.java 4162 final long ident = Binder.clearCallingIdentity(); local
4178 final long ident = Binder.clearCallingIdentity(); local
4216 final long ident = Binder.clearCallingIdentity(); local
4226 final long ident = Binder.clearCallingIdentity(); local
4263 final long ident = Binder.clearCallingIdentity(); local
4281 final long ident = Binder.clearCallingIdentity(); local
4299 final long ident = Binder.clearCallingIdentity(); local
4317 final long ident = Binder.clearCallingIdentity(); local
4327 final long ident = Binder.clearCallingIdentity(); local
4337 final long ident = Binder.clearCallingIdentity(); local
4347 final long ident = Binder.clearCallingIdentity(); local
4360 final long ident = Binder.clearCallingIdentity(); local
4370 final long ident = Binder.clearCallingIdentity(); local
4380 final long ident = Binder.clearCallingIdentity(); local
4399 final long ident = Binder.clearCallingIdentity(); local
4422 final long ident = Binder.clearCallingIdentity(); local
4440 final long ident = Binder.clearCallingIdentity(); local
4459 final long ident = Binder.clearCallingIdentity(); local
4475 final long ident = Binder.clearCallingIdentity(); local
4508 final long ident = Binder.clearCallingIdentity(); local
4524 final long ident = Binder.clearCallingIdentity(); local
4537 final long ident = Binder.clearCallingIdentity(); local
4555 final long ident = Binder.clearCallingIdentity(); local
4565 final long ident = Binder.clearCallingIdentity(); local
4577 final long ident = Binder.clearCallingIdentity(); local
    [all...]

Completed in 642 milliseconds

1 2 34 5 6 7 8 91011>>