Searched refs:object (Results 176 - 200 of 1997) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/rendering/
H A DRenderDetails.h66 inline RenderDetails* toRenderDetails(RenderObject* object) argument
68 ASSERT(!object || object->isDetails());
69 return static_cast<RenderDetails*>(object);
H A DRenderMedia.h64 inline RenderMedia* toRenderMedia(RenderObject* object) argument
66 ASSERT(!object || object->isMedia());
67 return static_cast<RenderMedia*>(object);
H A DRenderProgress.h62 inline RenderProgress* toRenderProgress(RenderObject* object) argument
64 ASSERT(!object || object->isProgress());
65 return static_cast<RenderProgress*>(object);
H A DRenderQuote.h50 inline RenderQuote* toRenderQuote(RenderObject* object) argument
52 ASSERT(!object || object->isQuote());
53 return static_cast<RenderQuote*>(object);
H A DRenderTextControlMultiLine.h58 inline RenderTextControlMultiLine* toRenderTextControlMultiLine(RenderObject* object) argument
60 ASSERT(!object || object->isTextArea());
61 return static_cast<RenderTextControlMultiLine*>(object);
H A DRenderVideo.h82 inline RenderVideo* toRenderVideo(RenderObject* object) argument
84 ASSERT(!object || object->isVideo());
85 return static_cast<RenderVideo*>(object);
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGGradientStop.h58 inline const RenderSVGGradientStop* toRenderSVGGradientStop(const RenderObject* object) argument
60 ASSERT(!object || object->isSVGGradientStop());
61 return static_cast<const RenderSVGGradientStop*>(object);
H A DRenderSVGResource.cpp35 static inline RenderSVGResource* requestPaintingResource(RenderSVGResourceMode mode, RenderObject* object, const RenderStyle* style, Color& fallbackColor) argument
37 ASSERT(object);
96 SVGResources* resources = SVGResourcesCache::cachedResourcesForRenderObject(object);
123 RenderSVGResource* RenderSVGResource::fillPaintingResource(RenderObject* object, const RenderStyle* style, Color& fallbackColor) argument
125 return requestPaintingResource(ApplyToFillMode, object, style, fallbackColor);
128 RenderSVGResource* RenderSVGResource::strokePaintingResource(RenderObject* object, const RenderStyle* style, Color& fallbackColor) argument
130 return requestPaintingResource(ApplyToStrokeMode, object, style, fallbackColor);
141 void RenderSVGResource::markForLayoutAndParentResourceInvalidation(RenderObject* object, bool needsLayout) argument
143 ASSERT(object);
145 object
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebplugindatabaseprivate.h23 #include <glib-object.h>
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DEventSendingController.idl29 void mouseDown(in long buttonNumber, in object modifierArray);
30 void mouseUp(in long buttonNumber, in object modifierArray);
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java141 * @param object A String or, an array of character bytes containing hexidecimal digits
145 * to this function or the object is not a String or char[]
148 public Object decode(Object object) throws DecoderException { argument
150 char[] charArray = object instanceof String ? ((String) object).toCharArray() : (char[]) object;
177 * @param object a String, or byte[] to convert to Hex characters
179 * @throws EncoderException Thrown if the given object is not a String or byte[]
182 public Object encode(Object object) throws EncoderException { argument
184 byte[] byteArray = object instanceo
[all...]
/external/chromium/base/memory/
H A Dsingleton_objc.h7 // appropriate for Objective-C objects. A typical Objective-C object of type
14 // NSExampleType* object. The object will be released by calling
47 static void Delete(Type* object) { argument
48 [object release];
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_MeshCollisionShape.cpp50 (JNIEnv * env, jobject object, jlong arrayId) {
63 (JNIEnv * env, jobject object, jlong arrayId){
49 Java_com_jme3_bullet_collision_shapes_MeshCollisionShape_createShape(JNIEnv * env, jobject object, jlong arrayId) argument
62 Java_com_jme3_bullet_collision_shapes_MeshCollisionShape_finalizeNative(JNIEnv * env, jobject object, jlong arrayId) argument
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
H A DBooleanSerializer.java51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { argument
52 buffer.put(((Boolean)object) ? (byte)1 : (byte)0);
H A DByteSerializer.java51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { argument
52 buffer.put((Byte)object);
H A DCharSerializer.java51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { argument
52 buffer.putChar((Character)object);
H A DDoubleSerializer.java51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { argument
52 buffer.putDouble((Double)object);
H A DFloatSerializer.java51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { argument
52 buffer.putFloat((Float)object);
H A DIntSerializer.java51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { argument
52 buffer.putInt((Integer)object);
H A DLongSerializer.java51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { argument
52 buffer.putLong((Long)object);
H A DShortSerializer.java50 public void writeObject(ByteBuffer buffer, Object object) throws IOException { argument
51 buffer.putShort((Short)object);
/external/v8/src/
H A Dmark-compact-inl.h65 bool MarkCompactCollector::MarkObjectWithoutPush(HeapObject* object) { argument
66 MarkBit mark = Marking::MarkBitFrom(object);
68 if (!old_mark) SetMark(object, mark);
73 void MarkCompactCollector::MarkObjectAndPush(HeapObject* object) { argument
74 if (!MarkObjectWithoutPush(object)) marking_deque_.PushBlack(object);
98 Object* object) {
99 Page* object_page = Page::FromAddress(reinterpret_cast<Address>(object));
96 RecordSlot(Object** anchor_slot, Object** slot, Object* object) argument
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptfunction.cpp27 static void qt_NativeFunction_finalize(JSObjectRef object) argument
29 void* priv = JSObjectGetPrivate(object);
33 static JSValueRef qt_NativeFunction_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
35 QNativeFunctionData* data = reinterpret_cast<QNativeFunctionData*>(JSObjectGetPrivate(object));
87 static void qt_NativeFunctionWithArg_finalize(JSObjectRef object) argument
89 void* priv = JSObjectGetPrivate(object);
93 static JSValueRef qt_NativeFunctionWithArg_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
95 QNativeFunctionWithArgData* data = reinterpret_cast<QNativeFunctionWithArgData*>(JSObjectGetPrivate(object));
/external/webkit/Source/JavaScriptCore/runtime/
H A DBatchedTransitionOptimizer.h37 BatchedTransitionOptimizer(JSGlobalData& globalData, JSObject* object) argument
39 , m_object(object)
/external/webkit/Source/WebCore/bindings/scripts/
H A DCodeGenerator.pm99 my $object = shift;
111 bless($reference, $object);
117 my $object = shift;
125 my $object = shift;
133 $codeGenerator = $ifaceName->new($object, $useOutputDir, $useOutputHeadersDir, $useLayerOnTop, $preprocessor, $writeDependencies, $verbose);
156 my $object = shift;
167 my $interfaceName = $object->StripModule($_);
168 my $parentInterface = $object->ParseInterface($interfaceName, $parentsOnly);
190 my $object = shift;
197 $object
[all...]

Completed in 375 milliseconds

1234567891011>>