Searched refs:object (Results 151 - 175 of 3367) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLResultSetRowList.idl34 [Custom] object item(unsigned long index);
H A DSQLTransaction.idl34 object[] arguments,
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dworkspace_mock.py30 class MockWorkspace(object):
37 return object() # Something that is not None
/external/chromium_org/v8/test/mjsunit/harmony/regress/
H A Dregress-343928.js8 escaping_function = function(object) {
10 var string = Object.prototype.toString.call(object);
11 // String has format [object <ClassName>].
/external/clang/test/SemaCXX/
H A Dbuiltin_objc_msgSend.cpp11 inline void TCFReleaseGC(void * object) argument
14 objc_msgSend((id)object, SEL_release);
/external/llvm/test/MC/ELF/
H A Dentsize.s8 .type .L.str1,@object # @.str1
13 .type .L.str2,@object # @.str2
20 .type .L.str3,@object # @.str3
25 .type .L.str4,@object # @.str4
H A Dundef.s11 .type .Lsym5,@object
12 .type sym6,@object
/external/llvm/tools/llvm-readobj/
H A DWin64EHDumper.h17 namespace object { namespace in namespace:llvm
29 typedef std::error_code (*SymbolResolver)(const object::coff_section *,
30 uint64_t, object::SymbolRef &,
34 const object::COFFObjectFile &COFF;
38 Context(const object::COFFObjectFile &COFF, SymbolResolver Resolver,
45 const object::coff_section *Section,
49 void printUnwindInfo(const Context &Ctx, const object::coff_section *Section,
52 const object::coff_section *Section,
/external/llvm/tools/obj2yaml/
H A Dobj2yaml.h21 const llvm::object::COFFObjectFile &Obj);
23 const llvm::object::ObjectFile &Obj);
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DLineBreaker.cpp34 RenderObject* object = resolver.position().object(); local
35 if (object->isOutOfFlowPositioned()) {
36 setStaticPositions(m_block, toRenderBox(object));
37 if (object->style()->isOriginalDisplayInlineType()) {
38 resolver.runs().addRun(createRun(0, 1, object, resolver));
41 } else if (object->isFloating()) {
42 m_block->positionNewFloatOnLine(m_block->insertFloatingObject(toRenderBox(object)), lastFloatFromPreviousLine, lineInfo, width);
43 } else if (object->isText() && object
[all...]
H A DBreakingContext.cpp31 if (m_lineBreak == m_resolver.position() && (!m_lineBreak.object() || !m_lineBreak.object()->isBR())) {
35 } else if (m_lineBreak.object()) {
39 m_lineBreak.moveTo(m_current.object(), m_current.offset());
54 // of the object. Do this adjustment to make it point to the start
55 // of the next object instead to avoid confusing the rest of the
63 } while (!m_lineBreak.atEnd() && isEmptyInline(m_lineBreak.object()));
/external/flac/include/FLAC/
H A Dmetadata.h112 * directly is more complex. The metadata object routines here facilitate
165 * stored. The \a tags object must be deleted by
184 * stored. The \a cuesheet object must be deleted by
208 * stored. The \a picture object must be deleted by
262 * the current iterator position. The returned object is yours to modify
269 * Use the object creation functions from
366 /** Free an iterator instance. Deletes the object pointed to by \a iterator.
536 * You must call FLAC__metadata_object_delete() on the returned object
681 * FLAC__metadata_iterator_get_block(). The pointer to the object
800 /** Free a chain instance. Deletes the object pointe
[all...]
/external/chromium-trace/trace-viewer/src/base/
H A Diteration_helpers.js75 function iterObjectFieldsRecursively(object, func) {
76 if (!(object instanceof Object))
79 if (object instanceof Array) {
80 for (var i = 0; i < object.length; i++) {
81 func(object, i, object[i]);
82 iterObjectFieldsRecursively(object[i], func);
87 for (var key in object) {
88 var value = object[key];
89 func(object, ke
[all...]
/external/chromium_org/base/mac/
H A Dscoped_launch_data.h23 explicit ScopedLaunchData(launch_data_t object = NULL)
24 : object_(object) {
32 void reset(launch_data_t object = NULL) {
33 if (object != object_) {
36 object_ = object;
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dfilter_chain.cc17 FilterChain::FilterChain(RValue other) : sink_(other.object->sink_) {
18 other.object->sink_ = NULL;
19 filters_.swap(other.object->filters_);
23 std::swap(sink_, other.object->sink_);
24 filters_.swap(other.object->filters_);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DImageQualityController.cpp68 InterpolationQuality ImageQualityController::chooseInterpolationQuality(GraphicsContext* context, RenderObject* object, Image* image, const void* layer, const LayoutSize& layoutSize) argument
70 if (object->style()->imageRendering() == ImageRenderingPixelated
79 if (shouldPaintAtLowQuality(context, object, image, layer, layoutSize))
102 void ImageQualityController::removeLayer(RenderObject* object, LayerSizeMap* innerMap, const void* layer) argument
107 objectDestroyed(object);
111 void ImageQualityController::set(RenderObject* object, LayerSizeMap* innerMap, const void* layer, const LayoutSize& size) argument
118 m_objectLayerSizeMap.set(object, newInnerMap);
122 void ImageQualityController::objectDestroyed(RenderObject* object) argument
124 m_objectLayerSizeMap.remove(object);
156 bool ImageQualityController::shouldPaintAtLowQuality(GraphicsContext* context, RenderObject* object, Imag argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_handle_table.c48 /** Object array. Empty handles have a null object */
56 /** Optional object destructor */
57 void (*destroy)(void *object);
87 void (*destroy)(void *object))
133 void *object; local
135 /* The order here is important so that the object being destroyed is not
141 object = ht->objects[index];
142 if(object) {
146 ht->destroy(object);
153 void *object)
86 handle_table_set_destroy(struct handle_table *ht, void (*destroy)(void *object)) argument
152 handle_table_add(struct handle_table *ht, void *object) argument
190 handle_table_set(struct handle_table *ht, unsigned handle, void *object) argument
223 void *object; local
240 void *object; local
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DForwardingSet.java56 @Override public boolean equals(@Nullable Object object) { argument
57 return object == this || delegate().equals(object);
71 @Beta protected boolean standardEquals(@Nullable Object object) { argument
72 return Sets.equalsImpl(this, object);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_handle_table.c48 /** Object array. Empty handles have a null object */
56 /** Optional object destructor */
57 void (*destroy)(void *object);
87 void (*destroy)(void *object))
133 void *object; local
135 /* The order here is important so that the object being destroyed is not
141 object = ht->objects[index];
142 if(object) {
146 ht->destroy(object);
153 void *object)
86 handle_table_set_destroy(struct handle_table *ht, void (*destroy)(void *object)) argument
152 handle_table_add(struct handle_table *ht, void *object) argument
190 handle_table_set(struct handle_table *ht, unsigned handle, void *object) argument
223 void *object; local
240 void *object; local
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DIdentifiedReferenceValue.java81 public boolean equals(Object object) argument
83 return this == object ||
84 super.equals(object) &&
85 this.valuefactory.equals(((IdentifiedReferenceValue)object).valuefactory) &&
86 this.id == ((IdentifiedReferenceValue)object).id;
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
H A Dnasm-parser.c35 nasm_do_parse(yasm_object *object, yasm_preproc *pp, int save_input, argument
43 parser_nasm.object = object;
52 parser_nasm.prev_bc = yasm_section_bcs_first(object->cur_section);
75 yasm_symtab_parser_finalize(object->symtab, 0, errwarns);
79 nasm_parser_do_parse(yasm_object *object, yasm_preproc *pp, argument
83 nasm_do_parse(object, pp, save_input, linemap, errwarns, 0);
111 tasm_parser_do_parse(yasm_object *object, yasm_preproc *pp, argument
115 yasm_symtab_set_case_sensitive(object->symtab, 0);
117 nasm_do_parse(object, p
[all...]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dnumber.pxd9 bint PyNumber_Check(object o)
10 # Returns 1 if the object o provides numeric protocols, and false
13 object PyNumber_Add(object o1, object o2)
18 object PyNumber_Subtract(object o1, object o2)
24 object PyNumber_Multiply(object o
[all...]
/external/chromium_org/third_party/cython/src/Cython/Includes/numpy/
H A D__init__.pxd21 from cpython.object cimport PyObject
155 ctypedef class numpy.dtype [object PyArray_Descr]:
162 cdef object fields
165 ctypedef extern class numpy.flatiter [object PyArrayIterObject]:
169 ctypedef extern class numpy.broadcast [object PyArrayMultiIterObject]:
178 ctypedef class numpy.ndarray [object PyArrayObject]:
392 # object PyArray_BASE(ndarray) wrong refcount semantics
398 object PyArray_GETITEM(ndarray arr, void *itemptr)
399 int PyArray_SETITEM(ndarray arr, void *itemptr, object obj)
466 bint PyArray_DescrCheck(object)
[all...]
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dgtk2_signal_registrar.cc7 #include <glib-object.h>
20 GObject* object = list_iter->first; local
22 object, WeakNotifyThunk, this);
27 g_signal_handler_disconnect(object, *ids_iter);
52 GObject* object = G_OBJECT(instance); local
54 HandlerMap::iterator iter = handler_lists_.find(object);
57 object, WeakNotifyThunk, this);
58 handler_lists_[object] = HandlerList();
59 iter = handler_lists_.find(object);
82 GObject* object local
[all...]
/external/chromium_org/v8/test/mjsunit/es7/
H A Dobject-observe.js70 assertSame(this.records[i].object, recs[i].object);
79 assertEquals('object', typeof r);
113 assertThrows(function() { Object.observe("non-object", observer.callback); },
202 object: notifier, // object property is ignored
209 { object: obj, name: 'foo', type: 'update', expando: 1 },
210 { object: obj, name: 'bar', type: 'delete', expando2: 'str' }
227 { object: obj, type: 'true' },
228 { object
[all...]

Completed in 1690 milliseconds

1234567891011>>