/external/bluetooth/glib/tests/gobject/ |
references.c | 1 /* GObject - GLib Type, Object, Parameter and Signal Library 27 #include <glib-object.h> 63 test_object_finalize (GObject *object) 67 G_OBJECT_CLASS (test_object_parent_class)->finalize (object); 99 GObject *object) 101 g_assert (object == global_object); 109 GObject *object) 111 g_assert (object == global_object); 119 GObject *object, 122 g_assert (object == global_object) 166 GObject *object; local [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
dowhile-006.js | 28 function looping( object ) { 29 object.iterations--; 31 if ( object.iterations <= 0 ) { 44 function DoWhile( object ) { 51 if ( object.breakOut ) 54 if ( object.breakIn ) 57 } while ( looping(object) ); 78 ( object.breakIn || object.breakOut ) ? false : true , 84 ( object.breakOut ) ? false : true [all...] |
label-002.js | 30 function LabelTest( object, expect1, expect2 ) { 33 yoohoo: { for ( property in object ) { result += object[property]; }; break yoohoo }; 37 "yoohoo: for ( property in object ) { result += object[property]; } break yoohoo }", 42 function LabelTest2( object, expect1, expect2 ) { 45 yoohoo: { for ( property in object ) { result += object[property]; break yoohoo } }; ; 49 "yoohoo: for ( property in object ) { result += object[property]; break yoohoo }}" [all...] |
try-006.js | 52 * This is the object that will be the "this" in a with block. 65 * object's "check" function is called. If the test object's exception 68 * the object. 70 function TryWith( object ) { 72 with ( object ) { 81 "TryWith( " + object.value +" )", 82 (object.exception ? EXCEPTION_STRING +": " + object.valueOf() : object.valueOf()) [all...] |
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGContainer.h | 81 inline RenderSVGContainer* toRenderSVGContainer(RenderObject* object) 84 ASSERT(!object || (object->isSVGContainer() && strcmp(object->renderName(), "RenderSVGViewportContainer"))); 85 return static_cast<RenderSVGContainer*>(object); 88 inline const RenderSVGContainer* toRenderSVGContainer(const RenderObject* object) 91 ASSERT(!object || (object->isSVGContainer() && strcmp(object->renderName(), "RenderSVGViewportContainer"))); 92 return static_cast<const RenderSVGContainer*>(object); [all...] |
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/ |
JSWrapper.cpp | 33 JSValueRef JSWrapper::wrap(JSContextRef context, JSWrappable* object) 37 if (!object) 40 JSClassRef objectClass = object->wrapperClass(); 42 JSObjectRef wrapperObject = JSObjectMake(context, objectClass, object); 57 static JSWrappable* unwrapObject(JSObjectRef object) 59 JSWrappable* wrappable = static_cast<JSWrappable*>(JSObjectGetPrivate(object)); 64 void JSWrapper::initialize(JSContextRef ctx, JSObjectRef object) 66 JSWrappable* wrappable = unwrapObject(object); 72 void JSWrapper::finalize(JSObjectRef object) 74 JSWrappable* wrappable = unwrapObject(object); [all...] |
/external/flac/libFLAC/ |
metadata_object.c | 162 static void seektable_calculate_length_(FLAC__StreamMetadata *object) 164 FLAC__ASSERT(0 != object); 165 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE); 167 object->length = object->data.seek_table.num_points * FLAC__STREAM_METADATA_SEEKPOINT_LENGTH; 190 static void vorbiscomment_calculate_length_(FLAC__StreamMetadata *object) 194 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT); 196 object->length = (FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN) / 8; 197 object->length += object->data.vorbis_comment.vendor_string.length 435 FLAC__StreamMetadata *object; local [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
RewriteRuleNodeStream.cs | 53 public RewriteRuleNodeStream( ITreeAdaptor adaptor, string elementDescription, object oneElement ) 64 public virtual object NextNode() 69 protected override object ToTree( object el ) 74 protected override object Dup( object el )
|
RewriteRuleTokenStream.cs | 48 public RewriteRuleTokenStream( ITreeAdaptor adaptor, string elementDescription, object oneElement ) 60 public virtual object NextNode() 76 protected override object ToTree( object el ) 81 protected override object Dup( object el )
|
/external/proguard/src/proguard/evaluation/value/ |
CompositeDoubleValue.java | 57 // Implementations for Object. 59 public boolean equals(Object object) 61 return this == object || 62 super.equals(object) && 63 this.doubleValue1.equals(((CompositeDoubleValue)object).doubleValue1) && 64 this.operation == ((CompositeDoubleValue)object).operation && 65 this.doubleValue2.equals(((CompositeDoubleValue)object).doubleValue2);
|
CompositeFloatValue.java | 57 // Implementations for Object. 59 public boolean equals(Object object) 61 return this == object || 62 super.equals(object) && 63 this.floatValue1.equals(((CompositeFloatValue)object).floatValue1) && 64 this.operation == ((CompositeFloatValue)object).operation && 65 this.floatValue2.equals(((CompositeFloatValue)object).floatValue2);
|
CompositeIntegerValue.java | 63 // Implementations for Object. 65 public boolean equals(Object object) 67 return this == object || 68 super.equals(object) && 69 this.integerValue1.equals(((CompositeIntegerValue)object).integerValue1) && 70 this.operation == ((CompositeIntegerValue)object).operation && 71 this.integerValue2.equals(((CompositeIntegerValue)object).integerValue2);
|
CompositeLongValue.java | 63 // Implementations for Object. 65 public boolean equals(Object object) 67 return this == object || 68 super.equals(object) && 69 this.longValue1.equals(((CompositeLongValue)object).longValue1) && 70 this.operation == ((CompositeLongValue)object).operation && 71 this.longValue2.equals(((CompositeLongValue)object).longValue2);
|
TopValue.java | 60 // Implementations for Object. 62 public boolean equals(Object object) 64 return object != null && 65 this.getClass() == object.getClass();
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regress/ |
regress-7703.js | 54 function inspect(object) { 55 for (prop in object) { 56 var x = object[prop]; 70 function inspect_again(object) { 71 for (prop in object) { 72 types_2[types_2.length] = (typeof object[prop]);
|
/external/webkit/Source/WebCore/bindings/gobject/ |
WebKitDOMObject.cpp | 11 #include "glib-object.h" 21 static void webkit_dom_object_init(WebKitDOMObject* object) 25 static void webkit_dom_object_get_property(GObject* object, guint prop_id, GValue* value, GParamSpec* pspec) 29 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec); 34 static void webkit_dom_object_set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec) 38 WEBKIT_DOM_OBJECT(object)->coreObject = g_value_get_pointer(value); 41 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec); 54 g_param_spec_pointer("core-object", 55 "Core Object", 56 "The WebCore object the WebKitDOMObject wraps" [all...] |
/external/webkit/Source/WebKit2/UIProcess/gtk/ |
WebViewWidget.h | 40 #define WEB_VIEW_WIDGET(object) (G_TYPE_CHECK_INSTANCE_CAST((object), WEB_VIEW_TYPE_WIDGET, WebViewWidget)) 42 #define WEB_VIEW_IS_WIDGET(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), WEB_VIEW_TYPE_WIDGET)) 44 #define WEB_VIEW_WIDGET_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), WEB_VIEW_TYPE_WIDGET, WebViewWidgetClass))
|
/external/webkit/Source/JavaScriptCore/API/ |
JSObjectRefPrivate.h | 37 @abstract Sets a private property on an object. This private property cannot be accessed from within JavaScript. 39 @param object The JSObject whose private property you want to set. 42 @result true if object can store private data, otherwise false. 43 @discussion This API allows you to store JS values directly an object in a way that will be ensure that they are kept alive without exposing them to JavaScript code and without introducing the reference cycles that may occur when using JSValueProtect. 45 The default object class does not allocate storage for private data. Only objects created with a non-NULL JSClass can store private properties. 47 JS_EXPORT bool JSObjectSetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value); 51 @abstract Gets a private property from an object. 53 @param object The JSObject whose private property you want to get. 55 @result The property's value if object has the property, otherwise NULL. 57 JS_EXPORT JSValueRef JSObjectGetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderFullScreen.h | 49 inline RenderFullScreen* toRenderFullScreen(RenderObject* object) 51 ASSERT(object->isRenderFullScreen()); 52 return static_cast<RenderFullScreen*>(object);
|
/external/webkit/Source/WebKit/mac/Misc/ |
WebNSArrayExtras.m | 37 id object = [self objectAtIndex:index]; 38 return [object isKindOfClass:[NSNumber class]] ? object : nil; 43 id object = [self objectAtIndex:index]; 44 return [object isKindOfClass:[NSString class]] ? object : nil;
|
/external/bluetooth/glib/tests/ |
cxx-test.C | 3 #include <glib-object.h>
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/ |
Assert.java | 81 * Asserts that the given object is <code>null</code>. If this is not the case, some kind of 84 * @param object 87 public static void isNull(Object object) { 88 isNull(object, ""); //$NON-NLS-1$ 92 * Asserts that the given object is <code>null</code>. If this is not the case, some kind of 96 * @param object 101 public static void isNull(Object object, String message) { 102 if (object != null) [all...] |
/external/llvm/test/MC/ELF/ |
undef.s | 11 .type .Lsym5,@object 12 .type sym6,@object
|
/external/llvm/tools/llvm-nm/ |
Makefile | 12 LINK_COMPONENTS := archive bitreader object
|
/external/llvm/tools/llvm-readobj/ |
Makefile | 12 LINK_COMPONENTS := archive bitreader object
|