Home
last modified time | relevance | path

Searched refs:object (Results 1 – 25 of 2732) sorted by relevance

12345678910>>...110

/external/flac/libFLAC/
Dmetadata_object.c162 static void seektable_calculate_length_(FLAC__StreamMetadata *object) in seektable_calculate_length_() argument
164 FLAC__ASSERT(0 != object); in seektable_calculate_length_()
165 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE); in seektable_calculate_length_()
167 object->length = object->data.seek_table.num_points * FLAC__STREAM_METADATA_SEEKPOINT_LENGTH; in seektable_calculate_length_()
190 static void vorbiscomment_calculate_length_(FLAC__StreamMetadata *object) in vorbiscomment_calculate_length_() argument
194 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT); in vorbiscomment_calculate_length_()
196 object->length = (FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN) / 8; in vorbiscomment_calculate_length_()
197 object->length += object->data.vorbis_comment.vendor_string.length; in vorbiscomment_calculate_length_()
198 object->length += (FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN) / 8; in vorbiscomment_calculate_length_()
199 for(i = 0; i < object->data.vorbis_comment.num_comments; i++) { in vorbiscomment_calculate_length_()
[all …]
/external/v8/test/mjsunit/regress/
Dregress-334.js39 var object = {__proto__:{}}; variable
40 %SetProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE);
41 %SetProperty(object, "bar", func1, DONT_ENUM | READ_ONLY);
42 %SetProperty(object, "baz", func1, DONT_DELETE | READ_ONLY);
43 %SetProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE | READ_ONLY);
44 object.bif = func2;
56 assertArrayEquals(["baz", "bif"], enumerable(object), "enum0");
57 assertFalse(delete object.foo, "delete foo");
58 assertFalse(delete object.baz, "delete baz");
59 assertEquals(func1, object.foo, "read foo");
[all …]
/external/bluetooth/glib/gobject/
Dgobject.c112 #define OBJECT_HAS_TOGGLE_REF(object) \ argument
113 ((G_DATALIST_GET_FLAGS (&(object)->qdata) & OBJECT_HAS_TOGGLE_REF_FLAG) != 0)
134 static void g_object_init (GObject *object);
138 static void g_object_real_dispose (GObject *object);
139 static void g_object_finalize (GObject *object);
140 static void g_object_do_set_property (GObject *object,
144 static void g_object_do_get_property (GObject *object,
163 static void g_object_dispatch_properties_changed (GObject *object,
166 static inline void object_get_property (GObject *object,
169 static inline void object_set_property (GObject *object,
[all …]
Dgobject.h52 #define G_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_OBJECT, GObject)) argument
66 #define G_IS_OBJECT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_OBJECT)) argument
83 #define G_OBJECT_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_OBJECT, GObjectCla… argument
92 #define G_OBJECT_TYPE(object) (G_TYPE_FROM_INSTANCE (object)) argument
102 #define G_OBJECT_TYPE_NAME(object) (g_type_name (G_OBJECT_TYPE (object))) argument
147 #define G_INITIALLY_UNOWNED(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_INITIAL… argument
162 #define G_IS_INITIALLY_UNOWNED(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_INITIAL… argument
179 #define G_INITIALLY_UNOWNED_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_INITIALL… argument
199 typedef void (*GObjectGetPropertyFunc) (GObject *object,
213 typedef void (*GObjectSetPropertyFunc) (GObject *object,
[all …]
/external/llvm/test/Bitcode/
Dmetadata-2.ll2 …%0 = type { %object.ModuleInfo.__vtbl*, i8*, %"byte[]", %1, %"ClassInfo[]", i32, void ()*, void ()…
3 %1 = type { i64, %object.ModuleInfo* } ; type %1
5 %"ClassInfo[]" = type { i64, %object.ClassInfo** }
6 %"Interface[]" = type { i64, %object.Interface* }
7 %"ModuleInfo[]" = type { i64, %object.ModuleInfo** }
8 %ModuleReference = type { %ModuleReference*, %object.ModuleInfo* }
9 %"OffsetTypeInfo[]" = type { i64, %object.OffsetTypeInfo* }
11object.ClassInfo = type { %object.ClassInfo.__vtbl*, i8*, %"byte[]", %"byte[]", %"void*[]", %"Inte…
12object.ClassInfo.__vtbl = type { %object.ClassInfo*, %"byte[]" (%object.Object*)*, i64 (%object.Ob…
13 %object.Interface = type { %object.ClassInfo*, %"void*[]", i64 }
[all …]
/external/webkit/Source/WebCore/inspector/
DInjectedScriptSource.js54 wrapObject: function(object, groupName, canAccessInspectedWindow) argument
57 return this._wrapObject(object, groupName);
59 result.type = typeof object;
60 result.description = this._toString(object);
64 inspectNode: function(object) argument
66 this._inspect(object);
69 _inspect: function(object) argument
74 var objectId = this._wrapObject(object, "");
77 switch (injectedScript._describe(object)) {
79 var databaseId = InjectedScriptHost.databaseId(object)
[all …]
/external/webkit/Source/WebCore/rendering/mathml/
DRenderMathMLBlock.h55 int getBoxModelObjectHeight(RenderObject* object) in getBoxModelObjectHeight() argument
57 if (object && object->isBoxModelObject()) { in getBoxModelObjectHeight()
58 RenderBoxModelObject* box = toRenderBoxModelObject(object); in getBoxModelObjectHeight()
64 int getBoxModelObjectHeight(const RenderObject* object) in getBoxModelObjectHeight() argument
66 if (object && object->isBoxModelObject()) { in getBoxModelObjectHeight()
67 const RenderBoxModelObject* box = toRenderBoxModelObject(object); in getBoxModelObjectHeight()
73 int getBoxModelObjectWidth(RenderObject* object) in getBoxModelObjectWidth() argument
75 if (object && object->isBoxModelObject()) { in getBoxModelObjectWidth()
76 RenderBoxModelObject* box = toRenderBoxModelObject(object); in getBoxModelObjectWidth()
82 int getBoxModelObjectWidth(const RenderObject* object) in getBoxModelObjectWidth() argument
[all …]
/external/bluetooth/glib/tests/gobject/
Dreferences.c63 test_object_finalize (GObject *object) in test_object_finalize() argument
67 G_OBJECT_CLASS (test_object_parent_class)->finalize (object); in test_object_finalize()
99 GObject *object) in weak_ref1() argument
101 g_assert (object == global_object); in weak_ref1()
109 GObject *object) in weak_ref2() argument
111 g_assert (object == global_object); in weak_ref2()
119 GObject *object, in toggle_ref1() argument
122 g_assert (object == global_object); in toggle_ref1()
133 GObject *object, in toggle_ref2() argument
136 g_assert (object == global_object); in toggle_ref2()
[all …]
/external/webkit/Source/WebCore/bindings/js/
DJSSVGPathSegCustom.cpp61 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, SVGPathSeg* object) in toJS() argument
63 if (!object) in toJS()
66 if (JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), object)) in toJS()
69 switch (object->pathSegType()) { in toJS()
71 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegClosePath, object); in toJS()
73 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegMovetoAbs, object); in toJS()
75 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegMovetoRel, object); in toJS()
77 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegLinetoAbs, object); in toJS()
79 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegLinetoRel, object); in toJS()
81 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegCurvetoCubicAbs, object); in toJS()
[all …]
/external/webkit/LayoutTests/fast/dom/getElementsByClassName/
DdumpNodeList-expected.txt8 [object HTMLDivElement], [object HTMLDivElement], [object HTMLDivElement], length: 3
9 [object HTMLDivElement], [object HTMLDivElement], [object HTMLDivElement], [object HTMLParagraphEle…
10 [object HTMLDivElement], [object HTMLDivElement], length: 2
11 [object HTMLDivElement], [object HTMLDivElement], length: 2
17 [object HTMLDivElement], length: 1
18 [object HTMLDivElement], [object HTMLParagraphElement], length: 2
19 [object HTMLDivElement], length: 1
20 [object HTMLDivElement], length: 1
/external/replicaisland/src/com/replica/replicaisland/
DGameObjectFactory.java370 public void destroy(GameObject object) {
371 object.commitUpdates();
372 final int componentCount = object.getCount();
374 GameComponent component = (GameComponent)object.get(x);
379 object.removeAll();
380 object.commitUpdates();
381 mGameObjectPool.release(object);
587 GameObject object = spawn(type, worldX, worldY, false);
588 if (object != null) {
589 if (object.height < tileHeight) {
[all …]
/external/v8/src/
Daccessors.h81 MUST_USE_RESULT static MaybeObject* FunctionGetPrototype(Object* object,
83 MUST_USE_RESULT static MaybeObject* FunctionSetPrototype(JSObject* object,
86 static MaybeObject* FunctionGetArguments(Object* object, void*);
90 static MaybeObject* FunctionGetLength(Object* object, void*);
91 static MaybeObject* FunctionGetName(Object* object, void*);
92 static MaybeObject* FunctionGetCaller(Object* object, void*);
93 MUST_USE_RESULT static MaybeObject* ArraySetLength(JSObject* object,
95 static MaybeObject* ArrayGetLength(Object* object, void*);
96 static MaybeObject* StringGetLength(Object* object, void*);
97 static MaybeObject* ScriptGetName(Object* object, void*);
[all …]
Daccessors.cc64 Object* Accessors::IllegalGetAccessor(Object* object, void*) { in IllegalGetAccessor() argument
66 return object; in IllegalGetAccessor()
82 MaybeObject* Accessors::ArrayGetLength(Object* object, void*) { in ArrayGetLength() argument
85 JSArray* holder = FindInPrototypeChain<JSArray>(object, &found_it); in ArrayGetLength()
104 MaybeObject* Accessors::ArraySetLength(JSObject* object, Object* value, void*) { in ArraySetLength() argument
105 Isolate* isolate = object->GetIsolate(); in ArraySetLength()
110 if (!object->IsJSArray()) { in ArraySetLength()
111 return object->SetLocalPropertyIgnoreAttributes( in ArraySetLength()
121 Handle<JSObject> object_handle(object, isolate); in ArraySetLength()
151 MaybeObject* Accessors::StringGetLength(Object* object, void*) { in StringGetLength() argument
[all …]
/external/v8/test/mjsunit/compiler/
Dliterals-optimized.js80 function verify_obj_shallow(object, a, b, c) { argument
81 assertSame(a, object.x);
82 assertSame(b, object.y);
83 assertSame(c, object.z);
84 assertSame('foo', object.v);
85 assertSame('bar', object[9]);
94 function verify_obj_nested(object, a, b, c) { argument
95 assertSame(a, object.x.v);
96 assertSame(b, object.x.w);
97 assertSame(1, object.y.v);
[all …]
/external/webkit/Source/WebCore/rendering/svg/
DSVGRenderSupport.cpp48 IntRect SVGRenderSupport::clippedOverflowRectForRepaint(RenderObject* object, RenderBoxModelObject*… in clippedOverflowRectForRepaint() argument
51 if (object->style()->visibility() != VISIBLE && !object->enclosingLayer()->hasVisibleContent()) in clippedOverflowRectForRepaint()
56 IntRect repaintRect = enclosingIntRect(object->repaintRectInLocalCoordinates()); in clippedOverflowRectForRepaint()
57 object->computeRectForRepaint(repaintContainer, repaintRect); in clippedOverflowRectForRepaint()
61 void SVGRenderSupport::computeRectForRepaint(RenderObject* object, RenderBoxModelObject* repaintCon… in computeRectForRepaint() argument
63 const SVGRenderStyle* svgStyle = object->style()->svgStyle(); in computeRectForRepaint()
68 repaintRect = object->localToParentTransform().mapRect(repaintRect); in computeRectForRepaint()
69 object->parent()->computeRectForRepaint(repaintContainer, repaintRect, fixed); in computeRectForRepaint()
72 void SVGRenderSupport::mapLocalToContainer(const RenderObject* object, RenderBoxModelObject* repain… in mapLocalToContainer() argument
76 transformState.applyTransform(object->localToParentTransform()); in mapLocalToContainer()
[all …]
/external/webkit/Source/WebKit2/Platform/CoreIPC/
DHandleMessage.h11 void callMemberFunction(const Arguments0&, C* object, MF function) in callMemberFunction() argument
13 (object->*function)(); in callMemberFunction()
17 void callMemberFunction(const Arguments1<P1>& args, C* object, MF function) in callMemberFunction() argument
19 (object->*function)(args.argument1); in callMemberFunction()
23 void callMemberFunction(const Arguments2<P1, P2>& args, C* object, MF function) in callMemberFunction() argument
25 (object->*function)(args.argument1, args.argument2); in callMemberFunction()
29 void callMemberFunction(const Arguments3<P1, P2, P3>& args, C* object, MF function) in callMemberFunction() argument
31 (object->*function)(args.argument1, args.argument2, args.argument3); in callMemberFunction()
35 void callMemberFunction(const Arguments4<P1, P2, P3, P4>& args, C* object, MF function) in callMemberFunction() argument
37 (object->*function)(args.argument1, args.argument2, args.argument3, args.argument4); in callMemberFunction()
[all …]
/external/webkit/Source/WebKit/chromium/src/
DWebBindings.cpp61 bool WebBindings::construct(NPP npp, NPObject* object, const NPVariant* args, uint32_t argCount, NP… in construct() argument
63 return _NPN_Construct(npp, object, args, argCount, result); in construct()
71 bool WebBindings::enumerate(NPP npp, NPObject* object, NPIdentifier** identifier, uint32_t* identif… in enumerate() argument
73 return _NPN_Enumerate(npp, object, identifier, identifierCount); in enumerate()
76 bool WebBindings::evaluate(NPP npp, NPObject* object, NPString* script, NPVariant* result) in evaluate() argument
78 return _NPN_Evaluate(npp, object, script, result); in evaluate()
81 bool WebBindings::evaluateHelper(NPP npp, bool popupsAllowed, NPObject* object, NPString* script, N… in evaluateHelper() argument
83 return _NPN_EvaluateHelper(npp, popupsAllowed, object, script, result); in evaluateHelper()
91 bool WebBindings::getProperty(NPP npp, NPObject* object, NPIdentifier property, NPVariant* result) in getProperty() argument
93 return _NPN_GetProperty(npp, object, property, result); in getProperty()
[all …]
/external/flac/include/FLAC/
Dmetadata.h1326 FLAC_API FLAC__StreamMetadata *FLAC__metadata_object_clone(const FLAC__StreamMetadata *object);
1337 FLAC_API void FLAC__metadata_object_delete(FLAC__StreamMetadata *object);
1375 FLAC_API FLAC__bool FLAC__metadata_object_application_set_data(FLAC__StreamMetadata *object, FLAC__…
1392 FLAC_API FLAC__bool FLAC__metadata_object_seektable_resize_points(FLAC__StreamMetadata *object, uns…
1404 FLAC_API void FLAC__metadata_object_seektable_set_point(FLAC__StreamMetadata *object, unsigned poin…
1418 FLAC_API FLAC__bool FLAC__metadata_object_seektable_insert_point(FLAC__StreamMetadata *object, unsi…
1431 FLAC_API FLAC__bool FLAC__metadata_object_seektable_delete_point(FLAC__StreamMetadata *object, unsi…
1444 FLAC_API FLAC__bool FLAC__metadata_object_seektable_is_legal(const FLAC__StreamMetadata *object);
1461 …metadata_object_seektable_template_append_placeholders(FLAC__StreamMetadata *object, unsigned num);
1478 …C__metadata_object_seektable_template_append_point(FLAC__StreamMetadata *object, FLAC__uint64 samp…
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
Dforin-001.js40 function ForIn_1( object ) { argument
44 for ( PropertyArray[PropertyArray.length] in object ) {
46 object[PropertyArray[PropertyArray.length-1]];
53 object[PropertyArray[i]],
62 object.length );
69 function ForIn_2( object ) { argument
74 for ( PropertyArray[i++] in object ) {
76 object[PropertyArray[PropertyArray.length-1]];
83 object[PropertyArray[i]],
92 object.length );
[all …]
Ddowhile-007.js39 function DoWhile( object ) { argument
47 if ( object.breakOutOne ) {
54 if ( object.breakOutTwo ) {
59 if ( object.breakIn ) {
65 if ( object.breakOutThree ) {
74 (object.breakOutOne) ? false : true,
80 (object.breakOutOne||object.breakOutTwo) ? false : true,
86 (object.breakOutOne||object.breakOutTwo||object.breakIn) ? false : true,
92 (object.breakOutOne||object.breakOutTwo||object.breakOutThree) ? false: true,
/external/openssl/crypto/store/
Dstr_lib.c257 STORE_OBJECT *object; in STORE_get_certificate() local
263 object = s->meth->get_object(s, STORE_OBJECT_TYPE_X509_CERTIFICATE, in STORE_get_certificate()
265 if (!object || !object->data.x509.certificate) in STORE_get_certificate()
271 CRYPTO_add(&object->data.x509.certificate->references,1,CRYPTO_LOCK_X509); in STORE_get_certificate()
275 x = object->data.x509.certificate; in STORE_get_certificate()
276 STORE_OBJECT_free(object); in STORE_get_certificate()
283 STORE_OBJECT *object; in STORE_store_certificate() local
289 object = STORE_OBJECT_new(); in STORE_store_certificate()
290 if (!object) in STORE_store_certificate()
301 object->data.x509.certificate = data; in STORE_store_certificate()
[all …]
/external/webkit/Source/WebCore/rendering/
DRenderMediaControlsChromium.cpp71 static bool paintMediaMuteButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& r… in paintMediaMuteButton() argument
73 HTMLMediaElement* mediaElement = toParentMediaElement(object); in paintMediaMuteButton()
87 static bool paintMediaPlayButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& r… in paintMediaPlayButton() argument
89 HTMLMediaElement* mediaElement = toParentMediaElement(object); in paintMediaPlayButton()
109 static bool paintMediaSlider(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) in paintMediaSlider() argument
111 HTMLMediaElement* mediaElement = toParentMediaElement(object); in paintMediaSlider()
115 RenderStyle* style = object->style(); in paintMediaSlider()
154 Color startColor = object->style()->visitedDependentColor(CSSPropertyColor); in paintMediaSlider()
168 static bool paintMediaSliderThumb(RenderObject* object, const PaintInfo& paintInfo, const IntRect& … in paintMediaSliderThumb() argument
170 if (!object->parent()->isSlider()) in paintMediaSliderThumb()
[all …]
/external/webkit/Source/WebCore/bindings/scripts/
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, $pr…
156 my $object = shift;
167 my $interfaceName = $object->StripModule($_);
168 my $parentInterface = $object->ParseInterface($interfaceName, $parentsOnly);
190 my $object = shift;
197 $object->ForAllParents($dataNode, sub {
[all …]
/external/clang/test/SemaObjC/
Dmethod-prototype-scope.m5 int object;
10 - Func:(int)XXXX, id object;
12 - doSomethingElseWith:(id)object;
14 …*)doSomethingWith:(NSString *)object and:(NSArray *)object; // expected-warning {{redeclaration of…
20 … *)doSomethingWith:(NSString *)object and:(NSArray *)object // expected-warning {{redefinition of …
23 …return object; // expected-warning {{incompatible pointer types returning 'NSArray *' from a funct…
26 - Func:(int)XXXX, id object { return object; }
28 - doSomethingElseWith:(id)object { return object; }
35 - doSomethingWith:(struct S *)object and:(struct P *)obj; // expected-warning {{declaration of 'str…
/external/clang/test/Analysis/
Dretain-release-path-notes.m3 // This actually still works after the pseudo-object refactor, it just
45 …// expected-warning{{leak}} expected-note{{Method returns an Objective-C object with a +1 retain c…
46 …return; // expected-note{{Object leaked: object allocated and stored into 'leaked' is not referenc…
50 …ted-note{{Call to function 'CFCreateSomething' returns a Core Foundation object with a +1 retain c…
51 …return; // expected-note{{Object leaked: object allocated and stored into 'leaked' is not referenc…
55 …// expected-warning{{leak}} expected-note{{Method returns an Objective-C object with a +0 retain c…
56 …[leaked retain]; // expected-note{{Reference count incremented. The object now has a +1 retain cou…
57 …[leaked retain]; // expected-note{{Reference count incremented. The object now has a +2 retain cou…
58 …[leaked release]; // expected-note{{Reference count decremented. The object now has a +1 retain co…
59 …return; // expected-note{{Object leaked: object allocated and stored into 'leaked' is not referenc…
[all …]

12345678910>>...110