Searched refs:object (Results 276 - 300 of 3094) sorted by relevance

<<11121314151617181920>>

/external/llvm/include/llvm/MC/
H A DMCRelocationInfo.h11 // create MCExprs from relocations, either found in an object::ObjectFile
12 // (object::RelocationRef), or provided through the C API.
23 namespace object { namespace in namespace:llvm
29 /// \brief Create MCExprs from relocations found in an object file.
43 virtual const MCExpr *createExprForRelocation(object::RelocationRef Rel);
H A DMCObjectSymbolizer.h11 // backed by an object::ObjectFile.
33 const object::ObjectFile *Obj;
35 typedef DenseMap<uint64_t, object::RelocationRef> AddrToRelocMap;
36 typedef std::vector<object::SectionRef> SortedSectionList;
49 void insertSection(object::SectionRef Section);
53 const object::ObjectFile *Obj);
67 /// \brief Create an object symbolizer for \p Obj.
70 const object::ObjectFile *Obj);
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/
H A Dgalliumd3d10_1.idl31 [object, local]
H A Dgalliumd3d11.idl31 [object, local]
H A Dgalliumcom.idl32 [object, local, uuid("481c9372-795f-4630-bd5b-1f46d33cc28b")]
40 [object, local, uuid("2c0f7e72-d9fe-4e7b-9fee-d476695ad5d9")]
71 [object, local, uuid("61934787-7aea-412c-8c72-8afe6a33d622")]
/external/v8/src/
H A Dmark-compact-inl.h65 bool MarkCompactCollector::MarkObjectWithoutPush(HeapObject* object) { argument
66 MarkBit mark = Marking::MarkBitFrom(object);
68 if (!old_mark) SetMark(object, mark);
73 void MarkCompactCollector::MarkObjectAndPush(HeapObject* object) { argument
74 if (!MarkObjectWithoutPush(object)) marking_deque_.PushBlack(object);
98 Object* object) {
99 Page* object_page = Page::FromAddress(reinterpret_cast<Address>(object));
96 RecordSlot(Object** anchor_slot, Object** slot, Object* object) argument
H A Daccessors.cc64 Object* Accessors::IllegalGetAccessor(Object* object, void*) { argument
66 return object;
82 MaybeObject* Accessors::ArrayGetLength(Object* object, void*) { argument
85 JSArray* holder = FindInPrototypeChain<JSArray>(object, &found_it);
104 MaybeObject* Accessors::ArraySetLength(JSObject* object, Object* value, void*) { argument
105 Isolate* isolate = object->GetIsolate();
107 // This means one of the object's prototypes is a JSArray and the
108 // object does not have a 'length' property. Calling SetProperty
110 if (!object->IsJSArray()) {
111 return object
151 StringGetLength(Object* object, void*) argument
173 ScriptGetSource(Object* object, void*) argument
191 ScriptGetName(Object* object, void*) argument
209 ScriptGetId(Object* object, void*) argument
227 ScriptGetLineOffset(Object* object, void*) argument
245 ScriptGetColumnOffset(Object* object, void*) argument
263 ScriptGetData(Object* object, void*) argument
281 ScriptGetType(Object* object, void*) argument
299 ScriptGetCompilationType(Object* object, void*) argument
317 ScriptGetLineEnds(Object* object, void*) argument
346 ScriptGetContextData(Object* object, void*) argument
364 ScriptGetEvalFromScript(Object* object, void*) argument
391 ScriptGetEvalFromScriptPosition(Object* object, void*) argument
422 ScriptGetEvalFromFunctionName(Object* object, void*) argument
449 FunctionGetPrototype(Object* object, void*) argument
476 FunctionSetPrototype(JSObject* object, Object* value, void*) argument
511 FunctionGetLength(Object* object, void*) argument
543 FunctionGetName(Object* object, void*) argument
589 FunctionGetArguments(Object* object, void*) argument
726 FunctionGetCaller(Object* object, void*) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineIterator.h56 void moveToStartOf(RenderObject* object) argument
58 moveTo(object, 0);
61 void moveTo(RenderObject* object, unsigned offset, int nextBreak = -1) argument
63 m_obj = object;
68 RenderObject* object() const { return m_obj; } function in class:WebCore::InlineIterator
121 static inline void notifyObserverEnteredObject(Observer* observer, RenderObject* object) argument
123 if (!observer || !object || !object->isRenderInline())
126 RenderStyle* style = object->style();
148 static inline void notifyObserverWillExitObject(Observer* observer, RenderObject* object) argument
166 isIteratorTarget(RenderObject* object) argument
178 isEmptyInline(RenderObject* object) argument
411 isIsolatedInline(RenderObject* object) argument
417 highestContainingIsolateWithinRoot(RenderObject* object, RenderObject* root) argument
432 RenderObject* object = iter.object(); local
[all...]
H A DRenderRuby.cpp43 static inline bool isAnonymousRubyInlineBlock(const RenderObject* object) argument
45 ASSERT(!object
46 || !object->parent()->isRuby()
47 || object->isRubyRun()
48 || (object->isInline() && (object->isBeforeContent() || object->isAfterContent()))
49 || (object->isAnonymous() && object->isRenderBlock() && object
57 isRubyBeforeBlock(const RenderObject* object) argument
65 isRubyAfterBlock(const RenderObject* object) argument
[all...]
/external/chromium_org/base/mac/
H A Dscoped_cftyperef.h17 // of a CoreFoundation object: any object that can be represented as a
21 // By default, ScopedCFTypeRef<> takes ownership of an object (in the
23 // claim. The caller must own the object it gives to ScopedCFTypeRef<>, and
24 // relinquishes an ownership claim to that object. ScopedCFTypeRef<> does not
27 // then ScopedCFTypeRef<> will call CFRetain() on the object, and the initial
36 CFT object = NULL,
38 : object_(object) {
59 void reset(CFT object = NULL,
62 if (object
[all...]
/external/chromium_org/base/
H A Dsequenced_task_runner.h119 // Submits a non-nestable task to delete the given object. Returns
120 // true if the object may be deleted at some point in the future,
121 // and false if the object definitely will not be deleted.
124 const T* object) {
127 this, from_here, object);
130 // Submits a non-nestable task to release the given object. Returns
131 // true if the object may be released at some point in the future,
132 // and false if the object definitely will not be released.
135 T* object) {
138 this, from_here, object);
123 DeleteSoon(const tracked_objects::Location& from_here, const T* object) argument
134 ReleaseSoon(const tracked_objects::Location& from_here, T* object) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3dapi/
H A Dgalliumcom.idl32 [object, local, uuid("481c9372-795f-4630-bd5b-1f46d33cc28b")]
40 [object, local, uuid("2c0f7e72-d9fe-4e7b-9fee-d476695ad5d9")]
71 [object, local, uuid("61934787-7aea-412c-8c72-8afe6a33d622")]
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DXMLExporter.java64 public boolean save(Savable object, OutputStream f) throws IOException { argument
68 domOut.write(object, object.getClass().getName(), null);
80 public boolean save(Savable object, File f) throws IOException { argument
81 return save(object, new FileOutputStream(f));
84 public OutputCapsule getCapsule(Savable object) { argument
/external/llvm/lib/Object/
H A DYAML.cpp1 //===- YAML.cpp - YAMLIO utilities for object files -----------------------===//
11 // object files.
20 using namespace object::yaml;
22 void yaml::ScalarTraits<object::yaml::BinaryRef>::output(
23 const object::yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) {
27 StringRef yaml::ScalarTraits<object::yaml::BinaryRef>::input(
28 StringRef Scalar, void *, object::yaml::BinaryRef &Val) {
36 Val = object::yaml::BinaryRef(Scalar);
/external/chromium_org/ppapi/proxy/
H A Dplugin_var_tracker.cc46 // Get the object.
47 scoped_refptr<ProxyObjectVar> object(
52 PP_Var ret = GetOrCreateObjectVarID(object.get());
60 SendReleaseObjectMsg(*object.get());
72 // Get the object.
73 scoped_refptr<ProxyObjectVar> object(
78 PP_Var ret = GetOrCreateObjectVarID(object.get());
109 ProxyObjectVar* object = var->AsProxyObjectVar(); local
110 if (!object) {
117 ret.value.as_id = object
198 ProxyObjectVar* object = it->second.var->AsProxyObjectVar(); local
226 ProxyObjectVar* object = GetVar(created_var)->AsProxyObjectVar(); local
271 ProxyObjectVar* object = iter->second.var->AsProxyObjectVar(); local
289 ProxyObjectVar* object = iter->second.var->AsProxyObjectVar(); local
326 ProxyObjectVar* object = iter->second.var->AsProxyObjectVar(); local
339 GetOrCreateObjectVarID(ProxyObjectVar* object) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGameObjectFactory.java54 // objects must match the order of the object tileset in the level editor in order for the
370 public void destroy(GameObject object) { argument
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 !
632 addStaticData(GameObjectType type, GameObject object, SpriteComponent sprite) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DSingletonImmutableList.java50 @Override public int indexOf(@Nullable Object object) { argument
51 return element.equals(object) ? 0 : -1;
58 @Override public int lastIndexOf(@Nullable Object object) { argument
59 return element.equals(object) ? 0 : -1;
116 @Override public boolean contains(@Nullable Object object) { argument
117 return element.equals(object);
120 @Override public boolean equals(Object object) { argument
121 if (object == this) {
124 if (object instanceof List) {
125 List<?> that = (List<?>) object;
[all...]
/external/chromium-trace/trace-viewer/src/tracing/
H A Dtrace_model_settings.js15 * This object should not be persisted because it builds up internal data
20 * This system works on a notion of an object key: for an object's key, it
23 * setting is stored on the object itself. Thus, objects with unique keys will
45 var object = objects[i];
46 var objectKey = object.getSettingsKey();
50 objectsByKey[objectKey] = object;
81 hasUniqueSettingKey: function(object) {
82 var objectKey = object.getSettingsKey();
88 getSettingFor: function(object, objectLevelKe
[all...]
/external/chromium/base/win/
H A Dobject_watcher.cc16 HANDLE object; // The object being watched member in struct:base::win::ObjectWatcher::Watch
31 delegate->OnObjectSignaled(object);
44 bool ObjectWatcher::StartWatching(HANDLE object, Delegate* delegate) { argument
46 NOTREACHED() << "Already watching an object";
52 watch->object = object;
57 // Since our job is to just notice when an object is signaled and report the
61 if (!RegisterWaitForSingleObject(&watch->wait_object, object, DoneWaiting,
115 return watch_->object;
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_network_list_private_thunk.cc33 return enter.object()->GetCount();
41 return enter.object()->GetName(index);
49 return enter.object()->GetType(index);
57 return enter.object()->GetState(index);
68 return enter.object()->GetIpAddresses(index, addresses, count);
76 return enter.object()->GetDisplayName(index);
84 return enter.object()->GetMTU(index);
H A Dppb_scrollbar_thunk.cc33 return enter.object()->GetThickness();
40 return PP_FromBool(enter.object()->IsOverlay());
47 return enter.object()->GetValue();
53 enter.object()->SetValue(value);
59 enter.object()->SetDocumentSize(size);
67 enter.object()->SetTickMarks(tick_marks, count);
73 enter.object()->ScrollBy(unit, multiplier);
H A Dppb_view_thunk.cc32 return enter.object()->GetRect(rect);
40 return enter.object()->IsFullscreen();
48 return enter.object()->IsVisible();
56 return enter.object()->IsPageVisible();
64 return enter.object()->GetClipRect(clip);
72 return enter.object()->GetDeviceScale();
80 return enter.object()->GetCSSScale();
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DUniqueStack.java28 * An attempt to insert on a stack an object that is already there will fail and result with a
39 // Field used for optimization: when only one object was
49 * A wrapper for a {@code Iterator<T>} object that provides immutability.
80 * Add an object to a stack. Object will be added only if it is not already on the stack.
82 * @param object to be added. If it is {@code null} a {@code NullPointerException} will be thrown.
83 * @return true if the object was added successfully
85 public boolean push(T object) { argument
86 if (object == null) {
92 firstObject = object;
95 if (firstObject.equals(object)) {
[all...]
/external/chromium_org/ppapi/cpp/private/
H A Dcontent_decryptor_private.cc30 void* object = local
32 if (!object)
48 static_cast<ContentDecryptor_Private*>(object)->GenerateKeyRequest(
58 void* object = local
60 if (!object)
78 static_cast<ContentDecryptor_Private*>(object)->AddKey(
85 void* object = local
87 if (!object)
94 static_cast<ContentDecryptor_Private*>(object)->CancelKeyRequest(
104 void* object local
120 void* object = local
136 void* object = local
149 void* object = local
161 void* object = local
175 void* object = local
[all...]
/external/chromium_org/remoting/webapp/
H A Dconnection_history.js62 * @param {Object} object A Javascript object, which may or may not be of the
66 remoting.ConnectionHistory.Entry = function(object) {
68 'date' in object && typeof(object['date']) == 'number' &&
69 'from' in object && typeof(object['from']) == 'string' &&
70 'to' in object && typeof(object['to']) == 'string' &&
71 'duration' in object
[all...]

Completed in 721 milliseconds

<<11121314151617181920>>