HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 251 - 275 of 8232) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
refdbglib.s 5 .type foo, @object
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-vxworks/
tls-3.s 7 .type i,%object
13 .type j,%object
20 .type __tls__i,%object
28 .type __tls__j,%object
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/
tlsgd5b.s 4 .type foo, @object
tlsgd6b.s 4 .type foo, @object
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-xtensa/
diff_overflow.exp 37 set object "tmpdir/diff_overflow"
39 if ![ld_simple_link $ld $object "tmpdir/diff_overflow1.o tmpdir/diff_overflow2.o"] {
  /external/webrtc/webrtc/modules/desktop_capture/win/
scoped_gdi_object.h 27 explicit ScopedGDIObject(T object) : handle_(object) {}
37 void Set(T object) {
38 if (handle_ && object != handle_)
40 handle_ = object;
43 ScopedGDIObject& operator=(T object) {
44 Set(object);
49 T object = handle_; local
51 return object;
  /external/libcxx/test/std/utilities/function.objects/func.require/
invoke_helpers.h 36 // Caster - A functor object that performs cv-qualifier and value category
39 // RValue - True if the resulting object should be an RValue reference.
99 // The cv-ref qualifiers of the 'DerefToType' object do not propagate
100 // to the resulting 'To' object.
103 To object; member in struct:DerefToType
108 explicit DerefToType(Up const& val) : object(val) {}
110 To& operator*() const volatile { return const_cast<To&>(object); }
115 // The cv-ref qualifiers of the 'DerefPropToType' object propagate
116 // to the resulting 'To' object.
119 To object; member in struct:DerefPropType
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pprint.py 26 Format a Python object into a pretty-printed representation.
29 Pretty-print a Python object to a stream [default is sys.stdout].
55 def pprint(object, stream=None, indent=1, width=80, depth=None):
56 """Pretty-print a Python object to a stream [default is sys.stdout]."""
59 printer.pprint(object)
61 def pformat(object, indent=1, width=80, depth=None):
62 """Format a Python object into a pretty-printed representation."""
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
65 def saferepr(object):
67 return _safe_repr(object, {}, None, 0)[0
    [all...]
inspect.py 12 isroutine() - check object types
13 getmembers() - get members of an object that satisfy a given condition
15 getfile(), getsourcefile(), getsource() - find an object's source code
16 getdoc(), getcomments() - get documentation on an object
17 getmodule() - determine the module that an object came from
47 # See Include/object.h
51 def ismodule(object):
52 """Return true if the object is a module.
57 return isinstance(object, types.ModuleType)
59 def isclass(object)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pprint.py 26 Format a Python object into a pretty-printed representation.
29 Pretty-print a Python object to a stream [default is sys.stdout].
55 def pprint(object, stream=None, indent=1, width=80, depth=None):
56 """Pretty-print a Python object to a stream [default is sys.stdout]."""
59 printer.pprint(object)
61 def pformat(object, indent=1, width=80, depth=None):
62 """Format a Python object into a pretty-printed representation."""
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
65 def saferepr(object):
67 return _safe_repr(object, {}, None, 0)[0
    [all...]
inspect.py 12 isroutine() - check object types
13 getmembers() - get members of an object that satisfy a given condition
15 getfile(), getsourcefile(), getsource() - find an object's source code
16 getdoc(), getcomments() - get documentation on an object
17 getmodule() - determine the module that an object came from
47 # See Include/object.h
51 def ismodule(object):
52 """Return true if the object is a module.
57 return isinstance(object, types.ModuleType)
59 def isclass(object)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pprint.py 26 Format a Python object into a pretty-printed representation.
29 Pretty-print a Python object to a stream [default is sys.stdout].
55 def pprint(object, stream=None, indent=1, width=80, depth=None):
56 """Pretty-print a Python object to a stream [default is sys.stdout]."""
59 printer.pprint(object)
61 def pformat(object, indent=1, width=80, depth=None):
62 """Format a Python object into a pretty-printed representation."""
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
65 def saferepr(object):
67 return _safe_repr(object, {}, None, 0)[0
    [all...]
inspect.py 12 isroutine() - check object types
13 getmembers() - get members of an object that satisfy a given condition
15 getfile(), getsourcefile(), getsource() - find an object's source code
16 getdoc(), getcomments() - get documentation on an object
17 getmodule() - determine the module that an object came from
47 # See Include/object.h
51 def ismodule(object):
52 """Return true if the object is a module.
57 return isinstance(object, types.ModuleType)
59 def isclass(object)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pprint.py 26 Format a Python object into a pretty-printed representation.
29 Pretty-print a Python object to a stream [default is sys.stdout].
55 def pprint(object, stream=None, indent=1, width=80, depth=None):
56 """Pretty-print a Python object to a stream [default is sys.stdout]."""
59 printer.pprint(object)
61 def pformat(object, indent=1, width=80, depth=None):
62 """Format a Python object into a pretty-printed representation."""
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
65 def saferepr(object):
67 return _safe_repr(object, {}, None, 0)[0
    [all...]
inspect.py 12 isroutine() - check object types
13 getmembers() - get members of an object that satisfy a given condition
15 getfile(), getsourcefile(), getsource() - find an object's source code
16 getdoc(), getcomments() - get documentation on an object
17 getmodule() - determine the module that an object came from
47 # See Include/object.h
51 def ismodule(object):
52 """Return true if the object is a module.
57 return isinstance(object, types.ModuleType)
59 def isclass(object)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeWizard.cs 45 * Build and navigate trees with this object. Must know about the names
70 void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels);
74 public virtual void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels) {
77 public abstract void Visit(object t);
81 System.Action<object> _action;
83 public ActionVisitor(System.Action<object> action)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeWizard.cs 46 * Build and navigate trees with this object. Must know about the names
73 void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels );
78 public virtual void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels )
82 public abstract void Visit( object t );
87 System.Action<object> _action;
89 public ActionVisitor( System.Action<object> action
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ObjectManager.java 21 * an object manager invokes update on its children. ObjectManagers themselves are derived from
52 BaseObject object = mObjects.get(i); local
53 object.reset();
60 final Object[] additionsArray = mPendingAdditions.getArray();
62 BaseObject object = (BaseObject)additionsArray[i]; local
63 mObjects.add(object);
70 final Object[] removalsArray = mPendingRemovals.getArray();
73 BaseObject object = (BaseObject)removalsArray[i]; local
74 mObjects.remove(object, true);
85 final Object[] objectArray = mObjects.getArray()
87 BaseObject object = (BaseObject)objectArray[i]; local
134 T object = null; local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
BlankDebugEventListener.cs 102 public virtual void ConsumeNode(object t) {
104 public virtual void LT(int i, object t) {
112 public virtual void NilNode(object t) {
114 public virtual void ErrorNode(object t) {
116 public virtual void CreateNode(object t) {
118 public virtual void CreateNode(object node, IToken token) {
120 public virtual void BecomeRoot(object newRoot, object oldRoot) {
122 public virtual void AddChild(object root, object child)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
BlankDebugEventListener.cs 128 public virtual void ConsumeNode( object t )
131 public virtual void LT( int i, object t )
140 public virtual void NilNode( object t )
143 public virtual void ErrorNode( object t )
146 public virtual void CreateNode( object t )
149 public virtual void CreateNode( object node, IToken token )
152 public virtual void BecomeRoot( object newRoot, object oldRoot )
155 public virtual void AddChild( object root, object child
    [all...]
  /system/bt/osi/src/
reactor.c 53 reactor_t *reactor; // the reactor instance this object is registered with.
54 pthread_mutex_t lock; // protects the lifetime of this object and all variables.
86 LOG_ERROR(LOG_TAG, "%s unable to allocate object invalidation list.", __func__);
139 reactor_object_t *object = local
142 object->reactor = reactor;
143 object->fd = fd;
144 object->context = context;
145 object->read_ready = read_ready;
146 object->write_ready = write_ready;
147 pthread_mutex_init(&object->lock, NULL)
258 reactor_object_t *object = (reactor_object_t *)events[j].data.ptr; local
    [all...]
  /libcore/json/src/main/java/org/json/
JSONArray.java 51 private final List<Object> values;
57 values = new ArrayList<Object>();
92 Object object = readFrom.nextValue(); local
93 if (object instanceof JSONArray) {
94 values = ((JSONArray) object).values;
96 throw JSON.typeMismatch(object, "JSONArray");
114 public JSONArray(Object array) throws JSONException {
119 values = new ArrayList<Object>(length);
184 public JSONArray put(Object value)
327 Object object = get(index); local
348 Object object = opt(index); local
361 Object object = get(index); local
382 Object object = opt(index); local
395 Object object = get(index); local
416 Object object = opt(index); local
429 Object object = get(index); local
450 Object object = opt(index); local
462 Object object = get(index); local
483 Object object = opt(index); local
496 Object object = get(index); local
509 Object object = opt(index); local
521 Object object = get(index); local
534 Object object = opt(index); local
    [all...]
  /external/v8/src/heap/
scavenger.cc 107 // Helper function used by CopyObject to copy a source object to an
108 // allocated target object and update the forwarding pointer in the source
109 // object. Returns the target object.
113 // right after the target object. Incorporate double alignment
146 HeapObject* object, int object_size) {
149 DCHECK(heap->AllowedToBeMigrated(object, NEW_SPACE));
156 // filler for double alignment or migrating the object. Otherwise we
158 // object.
161 MigrateObject(heap, object, target, object_size)
461 Object* object = *p; local
    [all...]
  /art/runtime/interpreter/mterp/mips/
op_iget_quick.S 5 GET_VREG(a3, a2) # a3 <- object we're operating on
8 # check object for null
9 beqz a3, common_errNullObject # object was null
op_iget_wide_quick.S 3 GET_VREG(a3, a2) # a3 <- object we're operating on
6 # check object for null
7 beqz a3, common_errNullObject # object was null

Completed in 712 milliseconds

<<11121314151617181920>>