HomeSort by relevance Sort by last modified time
    Searched refs:ident (Results 51 - 75 of 818) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
symtable.py 109 return [self.lookup(ident) for ident in self.get_identifiers()]
130 return tuple([ident for ident in self.get_identifiers()
131 if test_func(self._table.symbols[ident])])
240 for ident in mod.get_identifiers():
241 info = mod.lookup(ident)
  /prebuilts/gdb/linux-x86/lib/python2.7/
symtable.py 109 return [self.lookup(ident) for ident in self.get_identifiers()]
130 return tuple([ident for ident in self.get_identifiers()
131 if test_func(self._table.symbols[ident])])
240 for ident in mod.get_identifiers():
241 info = mod.lookup(ident)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symtable.py 109 return [self.lookup(ident) for ident in self.get_identifiers()]
130 return tuple([ident for ident in self.get_identifiers()
131 if test_func(self._table.symbols[ident])])
240 for ident in mod.get_identifiers():
241 info = mod.lookup(ident)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
symtable.py 109 return [self.lookup(ident) for ident in self.get_identifiers()]
130 return tuple([ident for ident in self.get_identifiers()
131 if test_func(self._table.symbols[ident])])
240 for ident in mod.get_identifiers():
241 info = mod.lookup(ident)
  /external/fonttools/Lib/fontTools/ttLib/
__init__.py 865 ident = ""
867 ident = ident + _escapechar(c)
868 if re.match("[0-9]", ident):
869 ident = "_" + ident
870 return ident
873 def identifierToTag(ident):
875 if ident == "GlyphOrder":
876 return ident
    [all...]
  /frameworks/base/core/java/android/app/admin/
DeviceAdminInfo.java 168 public final int ident; field in class:DeviceAdminInfo.PolicyInfo
175 public PolicyInfo(int ident, String tag, int label, int description) {
176 this(ident, tag, label, description, label, description);
179 public PolicyInfo(int ident, String tag, int label, int description,
181 this.ident = ident;
235 sRevKnownPolicies.put(pi.ident, pi);
236 sKnownPolicies.put(pi.tag, pi.ident);
452 if (usesPolicy(pi.ident)) {
  /prebuilts/go/darwin-x86/src/go/types/
assignments.go 138 ident, _ := unparen(lhs).(*ast.Ident)
141 if ident != nil && ident.Name == "_" {
142 check.recordDef(ident, nil)
155 if ident != nil {
156 if _, obj := check.scope.LookupParent(ident.Name, token.NoPos); obj != nil {
285 if ident, _ := lhs.(*ast.Ident); ident != nil
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
assignments.go 138 ident, _ := unparen(lhs).(*ast.Ident)
141 if ident != nil && ident.Name == "_" {
142 check.recordDef(ident, nil)
155 if ident != nil {
156 if _, obj := check.scope.LookupParent(ident.Name, token.NoPos); obj != nil {
285 if ident, _ := lhs.(*ast.Ident); ident != nil
    [all...]
  /external/autotest/client/cros/scripts/
profile 94 for ident in properties[shill.PROFILE_PROPERTY_ENTRIES]:
95 print 'Entry: %s' % ident
96 pprint.pprint(shill.dbus2primitive(profile.GetEntry(ident)),
  /external/flatbuffers/net/FlatBuffers/
Table.cs 106 public static bool __has_identifier(ByteBuffer bb, string ident)
108 if (ident.Length != FlatBufferConstants.FileIdentifierLength)
109 throw new ArgumentException("FlatBuffers: file identifier must be length " + FlatBufferConstants.FileIdentifierLength, "ident");
113 if (ident[i] != (char)bb.Get(bb.Position + sizeof(int) + i)) return false;
  /frameworks/base/core/java/android/os/
Looper.java 139 final long ident = Binder.clearCallingIdentity(); local
187 if (ident != newIdent) {
189 + Long.toHexString(ident) + " to 0x"
  /prebuilts/go/darwin-x86/src/cmd/vet/
tests.go 44 if name, ok := ptr.X.(*ast.Ident); ok {
107 ident = elems[0]
108 obj = lookup(ident, extendedScope(f))
110 if ident != "" && obj == nil {
112 report("%s refers to unknown identifier: %s", fnName, ident)
121 if ident == "" {
133 report("%s refers to unknown field or method: %s.%s", fnName, ident, mmbr)
  /prebuilts/go/linux-x86/src/cmd/vet/
tests.go 44 if name, ok := ptr.X.(*ast.Ident); ok {
107 ident = elems[0]
108 obj = lookup(ident, extendedScope(f))
110 if ident != "" && obj == nil {
112 report("%s refers to unknown identifier: %s", fnName, ident)
121 if ident == "" {
133 report("%s refers to unknown field or method: %s.%s", fnName, ident, mmbr)
  /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
  /test/vts/utils/python/coverage/
gcda_parser.py 137 ident = self.ReadInt()
138 func = self.file_summary.functions[ident]
  /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...]
  /frameworks/base/services/core/java/com/android/server/wm/
Session.java 135 long ident = Binder.clearCallingIdentity(); local
155 Binder.restoreCallingIdentity(ident);
296 long ident = Binder.clearCallingIdentity(); local
302 Binder.restoreCallingIdentity(ident);
404 long ident = Binder.clearCallingIdentity(); local
408 Binder.restoreCallingIdentity(ident);
420 long ident = Binder.clearCallingIdentity(); local
448 Binder.restoreCallingIdentity(ident);
460 long ident = Binder.clearCallingIdentity(); local
477 Binder.restoreCallingIdentity(ident);
499 long ident = Binder.clearCallingIdentity(); local
520 long ident = Binder.clearCallingIdentity(); local
534 long ident = Binder.clearCallingIdentity(); local
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/aarch64-linux-android/lib/ldscripts/
aarch64elf.xr 144 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
aarch64elf.xu 145 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
aarch64elf32.xr 144 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
aarch64elf32b.xr 144 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
aarch64elfb.xr 144 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
aarch64elfb.xu 145 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }

Completed in 2399 milliseconds

1 23 4 5 6 7 8 91011>>