HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 76 - 100 of 5712) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/replicaisland/src/com/replica/replicaisland/
TObjectPool.java 23 * @param <T> The type of object managed by the pool.
36 T object = (T)super.allocate(); local
37 return object;
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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Holder.java 22 public void set(T object) {
23 mObject = object;
  /external/chromium_org/base/
sequenced_task_runner.cc 20 const void* object) {
21 return PostNonNestableTask(from_here, Bind(deleter, object));
27 const void* object) {
28 return PostNonNestableTask(from_here, Bind(releaser, object));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8NodeListCustom.cpp 44 void V8NodeList::visitDOMWrapper(void* object, const v8::Persistent<v8::Object>& wrapper, v8::Isolate* isolate)
46 NodeList* impl = static_cast<NodeList*>(object);
48 setObjectGroup(object, wrapper, isolate);
53 setObjectGroup(object, wrapper, isolate);
  /external/chromium_org/tools/grit/grit/tool/
preprocess_interface.py 10 class PreProcessor(object):
  /external/llvm/test/MC/ELF/
common.s 7 .type common1,@object
16 // CHECK-NEXT: Type: Object
24 .type common2,@object
32 // CHECK-NEXT: Type: Object
46 // CHECK-NEXT: Type: Object
53 .type common3,@object
61 // CHECK-NEXT: Type: Object
75 .type common4,@object
83 // CHECK-NEXT: Type: Object
96 // CHECK-NEXT: Type: Object
    [all...]
  /external/proguard/src/proguard/evaluation/value/
NegatedDoubleValue.java 50 // Implementations for Object.
52 public boolean equals(Object object)
54 return this == object ||
55 super.equals(object) &&
56 this.doubleValue.equals(((NegatedDoubleValue)object).doubleValue);
NegatedFloatValue.java 50 // Implementations for Object.
52 public boolean equals(Object object)
54 return this == object ||
55 super.equals(object) &&
56 this.floatValue.equals(((NegatedFloatValue)object).floatValue);
NegatedIntegerValue.java 50 // Implementations for Object.
52 public boolean equals(Object object)
54 return this == object ||
55 super.equals(object) &&
56 this.integerValue.equals(((NegatedIntegerValue)object).integerValue);
NegatedLongValue.java 50 // Implementations for Object.
52 public boolean equals(Object object)
54 return this == object ||
55 super.equals(object) &&
56 this.longValue.equals(((NegatedLongValue)object).longValue);
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);
  /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
  /external/chromium_org/gin/
wrapper_info.cc 9 WrapperInfo* WrapperInfo::From(v8::Handle<v8::Object> object) {
10 if (object->InternalFieldCount() != kNumberOfInternalFields)
13 object->GetAlignedPointerFromInternalField(kWrapperInfoIndex));
  /external/chromium_org/ppapi/cpp/dev/
video_decoder_client_dev.cc 26 void* object = Instance::GetPerInstanceObject(instance, local
28 if (!object)
30 static_cast<VideoDecoderClient_Dev*>(object)->ProvidePictureBuffers(
37 void* object = Instance::GetPerInstanceObject(instance, local
39 if (!object)
41 static_cast<VideoDecoderClient_Dev*>(object)->DismissPictureBuffer(
48 void* object = Instance::GetPerInstanceObject(instance, local
50 if (!object)
52 static_cast<VideoDecoderClient_Dev*>(object)->PictureReady(decoder, *picture);
58 void* object = Instance::GetPerInstanceObject(instance local
    [all...]
printing_dev.cc 24 void* object = local
26 if (!object)
28 return static_cast<Printing_Dev*>(object)->QuerySupportedPrintOutputFormats();
33 void* object = local
35 if (!object)
37 return static_cast<Printing_Dev*>(object)->PrintBegin(*print_settings);
43 void* object = local
45 if (!object)
47 return static_cast<Printing_Dev*>(object)->PrintPages(
52 void* object local
59 void* object = local
    [all...]
  /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);
  /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 setValue(object, value.intValue());
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
BaseWrapper.java 23 BaseWrapper(T object) {
24 if (null == object) {
25 throw new IllegalArgumentException("Wrapped Object can not be null.");
27 mWrappedObject = object;
  /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...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.h 20 namespace object { namespace in namespace:llvm
32 bool RelocAddressLess(object::RelocationRef a, object::RelocationRef b);
35 void printCOFFUnwindInfo(const object::COFFObjectFile* o);
36 void printELFFileHeader(const object::ObjectFile *o);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMDataStore.h 55 static bool setReturnValueFromWrapperFast(v8::ReturnValue<v8::Value> returnValue, T* object, v8::Local<v8::Object> holder, Wrappable* wrappable)
59 // is to check that there is no isolated world and the 'object'
60 // is an object that can exist in the main world. The second fastest
63 if ((!DOMWrapperWorld::isolatedWorldsExist() && !canExistInWorker(object)) || holderContainsWrapper(holder, wrappable)) {
64 if (ScriptWrappable::wrapperCanBeStoredInObject(object))
65 return ScriptWrappable::setReturnValueWithSecurityCheck<V8T>(returnValue, object);
66 return mainWorldStore().m_wrapperMap.setReturnValueFrom(returnValue, V8T::toInternalPointer(object));
68 return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object);
72 static bool setReturnValueFromWrapper(v8::ReturnValue<v8::Value> returnValue, T* object)
    [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...]

Completed in 780 milliseconds

1 2 34 5 6 7 8 91011>>