HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 126 - 150 of 3359) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/tools/llvm-size/
Makefile 12 LINK_COMPONENTS := object
  /external/llvm/tools/macho-dump/
Makefile 12 LINK_COMPONENTS := support object
  /external/webkit/Source/WebCore/bindings/gobject/
WebKitDOMEventTargetPrivate.h 24 #include <glib-object.h>
  /external/webkit/Source/WebCore/rendering/
RenderApplet.h 58 inline RenderApplet* toRenderApplet(RenderObject* object)
60 ASSERT(!object || object->isApplet());
61 return static_cast<RenderApplet*>(object);
RenderMedia.h 64 inline RenderMedia* toRenderMedia(RenderObject* object)
66 ASSERT(!object || object->isMedia());
67 return static_cast<RenderMedia*>(object);
RenderProgress.h 62 inline RenderProgress* toRenderProgress(RenderObject* object)
64 ASSERT(!object || object->isProgress());
65 return static_cast<RenderProgress*>(object);
RenderQuote.h 50 inline RenderQuote* toRenderQuote(RenderObject* object)
52 ASSERT(!object || object->isQuote());
53 return static_cast<RenderQuote*>(object);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGGradientStop.h 58 inline const RenderSVGGradientStop* toRenderSVGGradientStop(const RenderObject* object)
60 ASSERT(!object || object->isSVGGradientStop());
61 return static_cast<const RenderSVGGradientStop*>(object);
RenderSVGViewportContainer.h 54 inline RenderSVGViewportContainer* toRenderSVGViewportContainer(RenderObject* object)
56 ASSERT(!object || !strcmp(object->renderName(), "RenderSVGViewportContainer"));
57 return static_cast<RenderSVGViewportContainer*>(object);
SVGRenderSupport.cpp 48 IntRect SVGRenderSupport::clippedOverflowRectForRepaint(RenderObject* object, RenderBoxModelObject* repaintContainer)
51 if (object->style()->visibility() != VISIBLE && !object->enclosingLayer()->hasVisibleContent())
56 IntRect repaintRect = enclosingIntRect(object->repaintRectInLocalCoordinates());
57 object->computeRectForRepaint(repaintContainer, repaintRect);
61 void SVGRenderSupport::computeRectForRepaint(RenderObject* object, RenderBoxModelObject* repaintContainer, IntRect& repaintRect, bool fixed)
63 const SVGRenderStyle* svgStyle = object->style()->svgStyle();
68 repaintRect = object->localToParentTransform().mapRect(repaintRect);
69 object->parent()->computeRectForRepaint(repaintContainer, repaintRect, fixed);
72 void SVGRenderSupport::mapLocalToContainer(const RenderObject* object, RenderBoxModelObject* repaintContainer, bool fixed , bool useTransforms, TransformState& transfor (…)
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitsoupauthdialog.h 29 #define WEBKIT_SOUP_AUTH_DIALOG(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), WEBKIT_TYPE_SOUP_AUTH_DIALOG, WebKitSoupAuthDialog))
31 #define WEBKIT_IS_SOUP_AUTH_DIALOG(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), WEBKIT_TYPE_SOUP_AUTH_DIALOG))
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
PluginScriptableNPObjectInvokeDefault.cpp 30 // A test where the plug-ins scriptable object either has or doesn't have an invokeDefault function.
39 struct NPObjectWithoutInvokeDefault : Object<NPObjectWithoutInvokeDefault> { };
41 struct NPObjectWithInvokeDefault : Object<NPObjectWithInvokeDefault> {
55 NPObject* object;
57 object = NPObjectWithInvokeDefault::create(this);
59 object = NPObjectWithoutInvokeDefault::create(this);
61 *(NPObject**)value = object;
  /external/webkit/Tools/Scripts/webkitpy/common/system/
platforminfo.py 33 class PlatformInfo(object):
  /libcore/luni/src/main/java/java/util/
Collection.java 48 * Attempts to add {@code object} to the contents of this
51 * After this method finishes successfully it is guaranteed that the object
58 * objects, but it has to specify this in the documentation. If the object
62 * If a collection does not yet contain an object that is to be added and
63 * adding the object fails, this method <i>must</i> throw an appropriate
68 * @param object
69 * the object to add.
76 * if the class of the object is inappropriate for this
79 * if the object cannot be added to this {@code Collection}.
83 public boolean add(E object);
    [all...]
Comparator.java 24 * to be <i>consistent with equals</i>, its {code #compare(Object, Object)}
47 * an {@code Object}.
49 * a second {@code Object} to compare with {@code lhs}.
58 * Compares this {@code Comparator} with the specified {@code Object} and indicates whether they
59 * are equal. In order to be equal, {@code object} must represent the same object
65 * @param object
66 * the {@code Object} to compare with this comparator.
67 * @return boolean {@code true} if specified {@code Object} is the same as thi
    [all...]
Set.java 29 * Adds the specified object to this set. The set is not modified if it
30 * already contains the object.
32 * @param object
33 * the object to add.
38 * when the class of the object is inappropriate for this set.
40 * when the object cannot be added to this set.
42 public boolean add(E object);
54 * when the class of an object is inappropriate for this set.
56 * when an object cannot be added to this set.
71 * Searches this set for the specified object
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Time.java 50 public int getIndex(java.lang.Object object) {
52 if (((java.util.Date) object).getTime() < JAN_01_2050) {
59 public Object getObjectToEncode(Object object) {
60 return object;
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
RangeBoolArray.java 35 public void put(int i, boolean object) {
36 mData[i - mOffset] = object;
43 public int indexOf(boolean object) {
45 if (mData[i] == object) return i + mOffset;
RangeIntArray.java 35 public void put(int i, int object) {
36 mData[i - mOffset] = object;
43 public int indexOf(int object) {
45 if (mData[i] == object) return i + mOffset;
  /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/webkit/Source/WebKit/android/smoke/
MessageTypes.h 47 // object and member function variables for use in MessageQueue.
49 // Note: The template subclass MemberFunctionMessage casts its object and
64 void* object() const { return m_object; } function in class:android::Message
68 Message(void* object, GenericMemberFunction member, long delay = 0)
69 : m_object(object)
94 inline MemberFunctionMessage(T* object,
97 : Message(reinterpret_cast<void*>(object),
109 inline Message* NewMessage(T* object, void (T::*member)()) {
110 return new MemberFunctionMessage<T, void>(object, member);
114 inline Message* NewDelayedMessage(T* object, void (T::*member)(), long delay)
    [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...]

Completed in 553 milliseconds

1 2 3 4 56 7 8 91011>>