HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 101 - 125 of 5647) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
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);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMDataStore.h 55 static v8::Handle<v8::Object> getWrapperFast(T* object, const CallbackInfo& callbackInfo, Wrappable* holder)
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(callbackInfo, holder)) {
64 if (ScriptWrappable::wrapperCanBeStoredInObject(object)) {
65 v8::Handle<v8::Object> result = ScriptWrappable::getUnsafeWrapperFromObject(object).deprecatedHandle();
67 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(result.IsEmpty() || result->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex) == V8T::toInternalPointer(object));
70 return mainWorldStore()->m_wrapperMap.get(V8T::toInternalPointer(object));
    [all...]
  /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/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);
  /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...]
  /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...]
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/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/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...]
  /frameworks/rs/cpu_ref/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/chromium_org/ui/base/gtk/
g_object_destructor_filo.cc 7 #include <glib-object.h>
28 GObject* object, DestructorHook callback, void* context) {
29 const Hook hook(object, callback, context);
30 HandlerMap::iterator iter = handler_map_.find(object);
32 g_object_weak_ref(object, WeakNotifyThunk, this);
33 handler_map_[object].push_front(hook);
40 GObject* object, DestructorHook callback, void* context) {
41 HandlerMap::iterator iter = handler_map_.find(object);
43 LOG(DFATAL) << "Unable to disconnect destructor hook for object " << object
    [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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /external/chromium_org/remoting/host/plugin/
host_plugin_utils.cc 45 ScopedRefNPObject::ScopedRefNPObject(NPObject* object)
47 *this = object;
50 ScopedRefNPObject::ScopedRefNPObject(const ScopedRefNPObject& object)
52 *this = object;
59 ScopedRefNPObject& ScopedRefNPObject::operator=(NPObject* object) {
60 if (object) {
61 g_npnetscape_funcs->retainobject(object);
66 object_ = object;
71 const ScopedRefNPObject& object) {
72 return *this = object.get()
    [all...]

Completed in 787 milliseconds

1 2 3 45 6 7 8 91011>>