HomeSort by relevance Sort by last modified time
    Searched defs:object (Results 201 - 225 of 319) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/test/CodeGenCXX/
mangle.cpp 681 template <template <class> class T> void foo(decltype(T<float>::object) &object) {}
683 template <class T> struct holder { static T object; }; member in struct:test26::holder
696 float object; member in struct:test27::A::inner
703 template <class T> void a(decltype(T::inner::object) &object) {}
704 template <class T> void b(decltype(T().Alias::meth()) &object) {}
  /external/openssl/crypto/store/
str_lib.c 257 STORE_OBJECT *object; local
263 object = s->meth->get_object(s, STORE_OBJECT_TYPE_X509_CERTIFICATE,
265 if (!object || !object->data.x509.certificate)
271 CRYPTO_add(&object->data.x509.certificate->references,1,CRYPTO_LOCK_X509);
275 x = object->data.x509.certificate;
276 STORE_OBJECT_free(object);
283 STORE_OBJECT *object; local
289 object = STORE_OBJECT_new();
290 if (!object)
388 STORE_OBJECT *object; local
441 STORE_OBJECT *object; local
467 STORE_OBJECT *object; local
493 STORE_OBJECT *object; local
609 STORE_OBJECT *object; local
662 STORE_OBJECT *object; local
688 STORE_OBJECT *object; local
804 STORE_OBJECT *object; local
857 STORE_OBJECT *object; local
883 STORE_OBJECT *object; local
909 STORE_OBJECT *object; local
998 STORE_OBJECT *object; local
1051 STORE_OBJECT *object; local
1102 STORE_OBJECT *object; local
1141 STORE_OBJECT *object; local
1192 STORE_OBJECT *object; local
1230 STORE_OBJECT *object = OPENSSL_malloc(sizeof(STORE_OBJECT)); local
    [all...]
  /external/skia/src/animator/
SkScriptTokenizer.cpp 369 void* object = top.fOperand.fObject; local
376 success = handleMember(field, fieldLength, object);
382 success = handleMemberFunction(field, fieldLength, object, &params);
823 bool SkScriptEngine2::handleMember(const char* field, size_t len, void* object) {
843 bool SkScriptEngine2::handleMemberFunction(const char* field, size_t len, void* object,
    [all...]
  /external/v8/src/
factory.cc 268 // Create and initialize script object.
326 Handle<Object> value) {
440 // Store the object, regexp and array functions in the literals
442 // object, regexp and array literals in this function.
460 Handle<Object> Factory::NewNumber(double value,
464 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
468 Handle<Object> Factory::NewNumberFromInt(int value) {
471 isolate()->heap()->NumberFromInt32(value), Object);
475 Handle<Object> Factory::NewNumberFromUint(uint32_t value) {
478 isolate()->heap()->NumberFromUint32(value), Object);
541 Handle<JSArray> object = NewJSArrayWithElements(array); local
    [all...]
ic.cc 62 Handle<Object> name,
143 Object* receiver) {
144 Object* end = lookup->IsProperty()
146 for (Object* current = receiver;
162 Object* receiver,
163 Object* name) {
196 IC::State IC::StateFrom(Code* target, Object* receiver, Object* name) {
222 // The builtins object is special. It only changes when JavaScript
224 // caches for the builtins object monomorphic. Therefore, if we ge
1938 JSObject* object = JSObject::cast(args[0]); local
    [all...]
  /external/v8/test/cctest/
test-heap.cc 44 static void CheckOddball(Object* obj, const char* string) {
47 Object* print_string = *Execution::ToString(Handle<Object>(obj), &exc);
54 Object* print_string =
55 *Execution::ToString(Handle<Object>(Smi::FromInt(value)), &exc);
61 Object* obj = HEAP->NumberFromDouble(value)->ToObjectChecked();
64 Object* print_string = *Execution::ToString(Handle<Object>(obj), &exc);
79 Object* code = HEAP->CreateCode(
82 Handle<Object>(HEAP->undefined_value()))->ToObjectChecked()
667 Handle<JSObject> object = FACTORY->NewJSObject(function); local
955 Object* object = HEAP->AllocateJSObjectFromMap(*my_map)->ToObjectChecked(); local
1036 Object* object = HEAP->global_contexts_list(); local
1050 Object* object = icontext->get(Context::OPTIMIZED_FUNCTIONS_LIST); local
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityObject.cpp 257 // always be a valid line range. However, startOfLine will return null for position next to a floating object,
258 // since floating object doesn't really belong to any line.
259 // This check will reposition the marker before the floating object, to ensure we get a line start.
295 // return null for position by a floating object, since floating object doesn't really belong to any line.
296 // This check will reposition the marker after the floating object, to ensure we get a line end.
395 // create an AX object, but skip it if it is not supposed to be seen
396 AccessibilityObject* object = replacedNode->renderer()->document()->axObjectCache()->getOrCreate(replacedNode->renderer());
397 if (object->accessibilityIsIgnored())
535 // There are cases like when the position is next to a floating object that'll return null for end of line. This code will avoid returning null
730 const AccessibilityObject* object = this; local
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
SerializedScriptValue.cpp 105 * Object serialization is performed according to the following grammar, all tags
108 * IndexType (used for the object pool and StringData's constant pool) is the
113 * Value :- Array | Object | Terminal
118 * Object :-
286 JSObject* object = asObject(value);
287 return isJSArray(&m_exec->globalData(), object) || object->inherits(&JSArray::s_info);
290 bool startObjectInternal(JSObject* object)
292 // Record object for graph reconstruction
293 pair<ObjectPool::iterator, bool> iter = m_objectPool.add(object, m_objectPool.size())
701 JSObject* object = inputObjectStack.last(); local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ConsoleView.js 95 "object": this._formatobject,
394 this._reportCompletions(bestMatchOnly, completionsReadyCallback, dotNotation, bracketNotation, prefix, Object.keys(propertyNames));
594 var isProxy = (output != null && typeof output === "object");
595 var type = (forceObjectFormat ? "object" : WebInspector.RemoteObject.type(output));
619 _formatnode: function(object, elem)
625 // nodeId here. So we fall back to object formatting here.
626 this._formatobject(object, elem);
637 object.pushNodeToFrontend(printNode.bind(this));
757 case WebInspector.ConsoleMessage.MessageType.Object:
820 if (typeof parameters[i] === "object")
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
RenderThemeEfl.cpp 58 // TODO: change from object count to ecore_evas size (bytes)
249 void RenderThemeEfl::applyEdjeStateFromForm(Evas_Object* object, ControlStates states)
263 edje_object_signal_emit(object, "reset", "");
267 edje_object_signal_emit(object, signals[i], "");
271 bool RenderThemeEfl::paintThemePart(RenderObject* object, FormType type, const PaintInfo& info, const IntRect& rect)
285 applyEdjeStateFromForm(entry->o, controlStatesForRenderer(object));
293 RenderSlider* renderSlider = toRenderSlider(object);
313 RenderProgress* renderProgress = toRenderProgress(object);
323 if (object->style()->direction() == RTL)
359 static void renderThemeEflColorClassSelectionActive(void* data, Evas_Object* object, const char* signal, const char* source
622 Evas_Object* object; local
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginView.cpp 777 NPObject* object = 0; local
794 npErr = m_plugin->pluginFuncs()->getvalue(m_instance, NPPVpluginScriptableNPObject, &object);
802 return object;
810 NPObject* object = npObject(); local
811 if (!object)
822 RefPtr<JSC::Bindings::Instance> instance = JSC::Bindings::CInstance::create(object, root.release());
824 _NPN_ReleaseObject(object);
840 NPObject* object = 0;
846 npErr = m_plugin->pluginFuncs()->getvalue(m_instance, NPPVpluginScriptableNPObject, &object);
851 if (npErr != NPERR_NO_ERROR || !object)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.cpp 608 RenderObject* object = result.innerNonSharedNode()->renderer(); local
609 if (object && object->isWidget()) {
610 Widget* widget = toRenderWidget(object)->widget();
803 // Alert assistive technology about the accessibility object notification.
  /external/webkit/Source/WebKit/gtk/tests/
testatk.c 245 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
246 g_assert(object);
248 AtkObject* header = atk_object_ref_accessible_child(object, 0);
260 AtkObject* paragraph = atk_object_ref_accessible_child(object, 1);
282 AtkObject* list = atk_object_ref_accessible_child(object, 2);
303 AtkObject* panel = atk_object_ref_accessible_child(object, 3);
353 /* Get to the inner AtkText object. */
354 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
355 g_assert(object);
356 object = atk_object_ref_accessible_child(object, 0)
395 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
496 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
583 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
608 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
633 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
658 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
685 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
712 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
746 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
781 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
815 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
972 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
1082 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
1239 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
1355 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
1393 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
1445 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
1540 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
1631 AtkObject* object = gtk_widget_get_accessible(GTK_WIDGET(webView)); local
    [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 62 mSpans = new Object[alloc];
69 Object[] spans = sp.getSpans(start, end, Object.class);
232 Object what = mSpans[i];
329 Object[] spans = sp.getSpans(tbstart, tbend, Object.class);
397 Object object = mSpans[i]; local
415 sendSpanRemoved(object, start, end);
515 * Mark the specified range of text with the specified object
    [all...]
  /frameworks/base/media/java/android/media/
TimedText.java 72 private final HashMap<Integer, Object> mKeyObjectMap =
73 new HashMap<Integer, Object>();
360 Object object = null; local
365 object = mStyleList;
370 object = mFontList;
375 object = mHighlightPosList;
380 object = mKaraokeList;
385 object = mHyperTextList;
391 object = mBlinkingPosList
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 103 ParsingContext(jobject object) : env(NULL), object(object), buffer(NULL), bufferSize(-1) {
167 /** The Java parser object. */
168 jobject object; member in struct:ParsingContext
455 jobject javaParser = parsingContext->object;
613 jobject javaParser = parsingContext->object;
645 jobject javaParser = parsingContext->object;
706 jobject javaParser = parsingContext->object;
726 jobject javaParser = parsingContext->object;
861 jobject object = parsingContext->object; local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
AllocationPanel.java 103 * Expected input is a {@link Client} object, elements used in the table are of type
107 public Object[] getElements(Object inputElement) {
119 return new Object[0];
126 public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
137 public Image getColumnImage(Object element, int columnIndex) {
141 public String getColumnText(Object element, int columnIndex) {
171 public boolean isLabelProperty(Object element, String property) {
554 * If a {@link ISelection} object is specified, the first {@link AllocationInfo} from thi
566 Object object = structuredSelection.getFirstElement(); local
    [all...]
DevicePanel.java 108 * and second level elements are {@link Client} object.
111 public Object[] getChildren(Object parentElement) {
115 return new Object[0];
118 public Object getParent(Object element) {
125 public boolean hasChildren(Object element) {
134 public Object[] getElements(Object inputElement) {
138 return new Object[0]
731 Object object = items[0].getData(); local
    [all...]
  /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:__anon2061
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:__anon2063
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:__anon2065
2962 GObject *object = data; local
2981 GObject *object = carray->object; local
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 41 /// Emits an instance of NSConstantString representing the object.
166 // be an undefined read and write of an object in unordered
1219 llvm::Value *object; local
    [all...]
  /external/flac/libFLAC/
metadata_iterators.c 172 FLAC__StreamMetadata *object; member in struct:__anon5616
183 cd.object = 0;
203 if(0 != cd.object)
204 FLAC__metadata_object_delete(cd.object);
211 return cd.object;
216 FLAC__StreamMetadata *object; local
221 object = get_one_metadata_block_(filename, FLAC__METADATA_TYPE_STREAMINFO);
223 if (object) {
225 *streaminfo = *object;
226 FLAC__metadata_object_delete(object);
    [all...]
  /external/llvm/include/llvm/Object/
MachOFormat.h 12 // Mach object files.
28 namespace object { namespace in namespace:llvm
86 /// Format information for Mach object files.
105 HM_Object32 = 0xFEEDFACE, ///< 32-bit mach object file
106 HM_Object64 = 0xFEEDFACF, ///< 64-bit mach object file
107 HM_Universal = 0xCAFEBABE ///< Universal object file
110 /// \brief Header common to all Mach object files.
121 /// \brief Extended header for 64-bit object files.
364 } // end namespace object
  /external/v8/src/arm/
stub-cache-arm.cc 97 // Name must be a symbol and receiver must be a heap object.
275 // Load the global or builtins object from the current context.
277 // Load the global context from the global or builtins object.
308 // Load a fast property out of a holder object (src). In-object properties
337 // Check that the object is a JS array.
347 // Generate code to check if an object is a string. If the object is a
348 // heap object, its map's instance type is left in the scratch1 register.
360 // Check that the object is a string
1537 GenerateCallFunction(masm(), object, arguments(), &miss); local
2516 GenerateCallFunction(masm(), object, arguments(), &miss); local
2609 object, local
3202 object, local
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 49 code_object_ = Handle<Object>(isolate()->heap()->undefined_value(),
55 void MacroAssembler::RecordWriteHelper(Register object,
59 // Check that the object is not in new space.
61 InNewSpace(object, scratch, not_equal, &not_in_new_space);
62 Abort("new-space object passed to RecordWriteHelper");
66 // Compute the page start address from the heap object pointer, and reuse
67 // the 'object' register for it.
68 and_(object, ~Page::kPageAlignmentMask);
76 bts(Operand(object, Page::kDirtyFlagOffset), addr);
80 void MacroAssembler::RecordWrite(Register object,
858 mov(Operand::StaticVariable(new_space_allocation_top), object); local
    [all...]
stub-cache-ia32.cc 109 // Name must be a symbol and receiver must be a heap object.
300 // Check that the object is a JS array.
310 // Generate code to check if an object is a string. If the object is
317 // Check that the object isn't a smi.
321 // Check that the object is a string.
338 // Check if the object is a string leaving the instance type in the
348 // Check if the object is a JSValue wrapper.
374 // Load a fast property out of a holder object (src). In-object propertie
2491 object, local
2680 object, local
    [all...]

Completed in 227 milliseconds

1 2 3 4 5 6 7 891011>>