/external/webkit/Source/WebCore/rendering/ |
RenderPart.h | 53 inline RenderPart* toRenderPart(RenderObject* object) 55 ASSERT(!object || object->isRenderPart()); 56 return static_cast<RenderPart*>(object);
|
RenderSlider.h | 55 inline RenderSlider* toRenderSlider(RenderObject* object) 57 ASSERT(!object || object->isSlider()); 58 return static_cast<RenderSlider*>(object);
|
RenderWidgetProtector.h | 36 RenderWidgetProtector(RenderWidget* object) 37 : m_object(object) 38 , m_arena(object->ref())
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGTextPath.h | 51 inline RenderSVGTextPath* toRenderSVGTextPath(RenderObject* object) 53 ASSERT(!object || !strcmp(object->renderName(), "RenderSVGTextPath")); 54 return static_cast<RenderSVGTextPath*>(object);
|
/development/ndk/platforms/android-9/arch-mips/src/ |
crtend_android.S | 39 .type __CTOR_END__, @object 44 .type __DTOR_END__, @object 50 .type __FRAME_END__, @object
|
crtend_so.S | 8 .type __CTOR_END__, @object 13 .type __DTOR_END__, @object 19 .type __FRAME_END__, @object
|
/external/flac/libFLAC/include/private/ |
format.h | 40 void FLAC__format_entropy_coding_method_partitioned_rice_contents_init(FLAC__EntropyCodingMethod_PartitionedRiceContents *object); 41 void FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(FLAC__EntropyCodingMethod_PartitionedRiceContents *object); 42 FLAC__bool FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(FLAC__EntropyCodingMethod_PartitionedRiceContents *object, unsigned max_partition_order);
|
/external/jmonkeyengine/engine/src/core/com/jme3/export/ |
JmeExporter.java | 48 * @param object The savable to export 54 public boolean save(Savable object, OutputStream f) throws IOException; 59 * @param object The savable to export 65 public boolean save(Savable object, File f) throws IOException; 68 * Returns the {@link OutputCapsule} for the given savable object. 70 * @param object The object to retrieve an output capsule for. 73 public OutputCapsule getCapsule(Savable object);
|
/external/replicaisland/src/com/replica/replicaisland/ |
MovementComponent.java | 40 GameObject object = (GameObject) parent; local 42 sInterpolator.set(object.getVelocity().x, object.getTargetVelocity().x, 43 object.getAcceleration().x); 45 float newX = object.getPosition().x + offsetX; 48 sInterpolator.set(object.getVelocity().y, object.getTargetVelocity().y, 49 object.getAcceleration().y); 51 float newY = object.getPosition().y + offsetY; 54 if (object.positionLocked == false) [all...] |
/external/webkit/Source/WebCore/editing/gtk/ |
SelectionControllerGtk.cpp | 32 static void emitTextSelectionChange(AccessibilityObject* object, VisibleSelection selection, int offset) 34 AtkObject* axObject = object->wrapper(); 45 // This static variable is needed to keep track of the old object 50 RefPtr<AccessibilityObject> object = prpObject; local 53 // current object so further comparisons make sense. Otherwise, 56 if (object && oldObject && oldObject->document() != object->document()) 59 AtkObject* axObject = object ? object->wrapper() : 0; 73 // Update pointer to last focused object 96 RefPtr<AccessibilityObject> object = objectAndOffsetUnignored(accessibilityObject, offset, true); local [all...] |
/frameworks/base/core/java/android/util/ |
FloatProperty.java | 23 * calls to a {@link #set(Object, Float) set()} function that takes the primitive 38 * A type-specific override of the {@link #set(Object, Float)} that is faster when dealing 41 public abstract void setValue(T object, float value); 44 final public void set(T object, Float value) { 45 setValue(object, value);
|
IntProperty.java | 23 * calls to a {@link #set(Object, Integer) set()} function that takes the primitive 38 * A type-specific override of the {@link #set(Object, Integer)} that is faster when dealing 41 public abstract void setValue(T object, int value); 44 final public void set(T object, Integer value) { 45 set(object, value.intValue());
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
CommonTreeAdaptor.cs | 60 public override object DupNode(object t) { 67 public override object Create(IToken payload) { 116 public override void SetTokenBoundaries(object t, IToken startToken, IToken stopToken) { 133 public override int GetTokenStartIndex(object t) { 140 public override int GetTokenStopIndex(object t) { 147 public override string GetText(object t) { 154 public override int GetType(object t) { 167 public override IToken GetToken(object t) { 174 public override object GetChild(object t, int i) [all...] |
RewriteRuleNodeStream.cs | 53 object oneElement 61 IList<object> elements 65 public object NextNode() { 69 override protected object ToTree(object el) { 73 protected override object Dup(object el) {
|
RewriteRuleTokenStream.cs | 55 object oneElement 63 IList<object> elements 71 /// ITreeAdaptor.Create() returns an object, so no further restrictions possible. 73 public virtual object NextNode() { 86 override protected object ToTree(object el) { 90 protected override object Dup(object el) {
|
/external/proguard/src/proguard/evaluation/value/ |
ComparisonValue.java | 46 // Implementations for Object. 48 public boolean equals(Object object) 50 return this == object || 51 super.equals(object) && 52 this.value1.equals(((ComparisonValue)object).value1) && 53 this.value2.equals(((ComparisonValue)object).value2);
|
/external/bluetooth/glib/gobject/ |
gobject.c | 1 /* GObject - GLib Type, Object, Parameter and Signal Library 44 * @short_description: The base object type 46 * @title: The Base Object Type 49 * methods for all object types in GTK+, Pango and other libraries 50 * based on GObject. The GObject class provides methods for object 89 * Some object implementations may need to save an objects floating state 95 * gboolean was_floating = g_object_is_floating (object); 96 * g_object_ref_sink (object); 101 * g_object_force_floating (object); 102 * g_obejct_unref (object); // release previously acquired referenc 204 GObject *object = value; local 1054 GObject *object; local 1118 GObject *object; local 1272 GObject *object; local 1335 GObject *object; local 1531 GObject *object = _object; local 1582 GObject *object = _object; local 1804 GObject *object = _object; local 1888 GObject *object = _object; local 1932 GObject *object; member in struct:__anon2540 2114 GObject *object = _object; local 2140 GObject *object = _object; local 2142 g_return_val_if_fail (G_IS_OBJECT (object), object); local 2174 GObject *object; member in struct:__anon2542 2336 GObject *object = _object; local 2366 GObject *object = _object; local 2704 GObject *object = collect_values[0].v_pointer; local 2935 GObject *object; member in struct:__anon2544 2962 GObject *object = data; local 2981 GObject *object = carray->object; local [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
IDebugEventListener.cs | 112 * which Token object was examined. Like consumeToken, this indicates 181 * data fields are transmitted. The token object or whatever that 182 * caused the problem was the last object referenced by LT. The 284 void ConsumeNode(object t); 292 void LT(int i, object t); 312 void NilNode(object t); 321 void ErrorNode(object t); 331 void CreateNode(object t); 341 void CreateNode(object node, IToken token); 361 void BecomeRoot(object newRoot, object oldRoot) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/ |
IDebugEventListener.cs | 114 * which Token object was examined. Like consumeToken, this indicates 183 * data fields are transmitted. The token object or whatever that 184 * caused the problem was the last object referenced by LT. The 286 void ConsumeNode( object t ); 294 void LT( int i, object t ); 314 void NilNode( object t ); 323 void ErrorNode( object t ); 333 void CreateNode( object t ); 343 void CreateNode( object node, IToken token ); 363 void BecomeRoot( object newRoot, object oldRoot ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
dowhile-003.js | 6 * Test do while, when the while expression is a JavaScript Number object. 36 function DoWhile( object ) { 40 object.value = --object.value; 44 } while( object.value ); 49 object.iterations, 55 "object.value", 56 object.endvalue, 57 Number( object.value )
|
try-009.js | 43 function TryInWhile( object ) { 47 object.thrower(); 48 result = NO_EXCEPTION_STRING + object.value; 58 "( "+ object +".thrower() )", 59 (object.result 60 ? EXCEPTION_STRING + object.value : 61 NO_EXCEPTION_STRING + object.value),
|
while-002.js | 60 function DoWhile( object ) { 63 while ( expression = object.whileExpression ) { 64 eval( object.statements ); 72 object.whileExpression +")", 74 (object.whileExpression == expression || 75 ( isNaN(object.whileExpression) && isNaN(expression) ) 80 object.description,
|
while-003.js | 37 "while expression is new Object()", 38 new Object(), 60 function DoWhile( object ) { 63 while ( expression = object.whileExpression ) { 64 eval( object.statements ); 73 object.whileExpression +")", 75 (object.whileExpression == expression || 76 ( isNaN(object.whileExpression) && isNaN(expression) ) 81 object.description,
|
/frameworks/compile/linkloader/android/ |
librsloader.cpp | 31 static inline RSExecRef wrap(ELFObject<32> *object) { 32 return reinterpret_cast<RSExecRef>(object); 35 static inline ELFObject<32> *unwrap(RSExecRef object) { 36 return reinterpret_cast<ELFObject<32> *>(object); 43 RSExecRef object = rsloaderLoadExecutable(buf, buf_size); local 44 if (!object) { 48 if (!rsloaderRelocateExecutable(object, find_symbol, find_symbol_context)) { 49 rsloaderDisposeExec(object); 53 return object; 60 llvm::OwningPtr<ELFObject<32> > object(ELFObject<32>::read(AR)) 72 ELFObject<32>* object = unwrap(object_); local 80 ELFObject<32> *object = unwrap(object_); local 106 ELFObject<32> *object = unwrap(object_); local 128 ELFObject<32> *object = unwrap(object_); local [all...] |
/external/v8/src/ |
ic-inl.h | 72 // Convert target address to the code object. Code::GetCodeFromTargetAddress 99 InlineCacheHolderFlag IC::GetCodeCacheForObject(Object* object, 101 if (object->IsJSObject()) { 102 return GetCodeCacheForObject(JSObject::cast(object), holder); 104 // If the object is a value, we use the prototype map for the cache. 105 ASSERT(object->IsString() || object->IsNumber() || object->IsBoolean()); 110 InlineCacheHolderFlag IC::GetCodeCacheForObject(JSObject* object, [all...] |