Searched refs:detail (Results 26 - 50 of 116) sorted by relevance

12345

/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebEditorClient.cpp687 GrammarDetail detail; local
688 if (FAILED(detailObj->length(&detail.length)))
690 if (FAILED(detailObj->location(&detail.location)))
695 detail.userDescription = String(userDesc, SysStringLen(userDesc));
705 detail.guesses.append(String(guess, SysStringLen(guess)));
709 details.append(detail);
713 void WebEditorClient::updateSpellingUIWithGrammarString(const String& string, const WebCore::GrammarDetail& detail) argument
720 for (unsigned i = 0; i < detail.guesses.size(); i++) {
721 BString guess(detail.guesses[i]);
724 BString userDescriptionBSTR(detail
[all...]
H A DWebEditorClient.h105 virtual void updateSpellingUIWithGrammarString(const WTF::String&, const WebCore::GrammarDetail& detail);
/external/valgrind/main/
H A Dglibc-2.X-drd.supp277 # boost::detail::this_thread_epoch. See also the source file
287 drd-libboost-boost::detail::get_once_per_thread_epoch()
291 # Suppress the race reports on boost::detail::current_thread_tls_key. See also
295 drd-libboost-boost::detail::get_current_thread_data()
301 drd-libboost-boost::detail::set_current_thread_data(boost::detail::thread_data_base*)
/external/webkit/Source/WebCore/dom/
H A DMouseEvent.idl39 in long detail,
H A DMouseRelatedEvent.cpp78 int detail, int screenX, int screenY, int windowX, int windowY,
80 : UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shiftKey, metaKey)
77 MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<AbstractView> abstractView, int detail, int screenX, int screenY, int windowX, int windowY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated) argument
/external/libvpx/vpx/internal/
H A Dvpx_codec_internal.h442 char detail[80]; member in struct:vpx_internal_error_info
459 size_t sz = sizeof(info->detail);
463 vsnprintf(info->detail, sz - 1, fmt, ap);
465 info->detail[sz-1] = '\0';
/external/llvm/include/llvm/Support/
H A DFileSystem.h719 namespace detail { namespace in namespace:llvm::sys::fs
745 IntrusiveRefCntPtr<detail::DirIterState> State;
749 State = new detail::DirIterState;
751 ec = detail::directory_iterator_construct(*State,
756 State = new detail::DirIterState;
757 ec = detail::directory_iterator_construct(*State, de.path());
761 directory_iterator() : State(new detail::DirIterState) {}
783 namespace detail { namespace in namespace:llvm::sys::fs
800 IntrusiveRefCntPtr<detail::RecDirIterState> State;
805 : State(new detail
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h434 static void encode(ArgumentEncoder* encoder, const WebCore::GrammarDetail& detail) argument
436 encoder->encodeInt32(detail.location);
437 encoder->encodeInt32(detail.length);
438 encoder->encode(detail.guesses);
439 encoder->encode(detail.userDescription);
442 static bool decode(ArgumentDecoder* decoder, WebCore::GrammarDetail& detail) argument
444 if (!decoder->decodeInt32(detail.location))
446 if (!decoder->decodeInt32(detail.length))
448 if (!decoder->decode(detail.guesses))
450 if (!decoder->decode(detail
[all...]
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DTextCheckerMac.mm259 GrammarDetail detail;
265 detail.location = detailNSRange.location;
266 detail.length = detailNSRange.length;
267 detail.userDescription = [incomingDetail objectForKey:NSGrammarUserDescription];
270 detail.guesses.append(String(guess));
271 result.details.append(detail);
360 [[NSSpellChecker sharedSpellChecker] updateSpellingPanelWithGrammarString:badGrammarPhrase detail:grammarDetailDict.get()];
/external/llvm/include/llvm/ADT/
H A DHashing.h149 namespace detail { namespace in namespace:llvm::hashing
476 } // namespace detail
488 return ::llvm::hashing::detail::hash_combine_range_impl(first, last);
494 namespace detail { namespace in namespace:llvm::hashing
644 } // namespace detail
663 ::llvm::hashing::detail::hash_combine_recursive_helper helper;
676 ::llvm::hashing::detail::hash_combine_recursive_helper helper;
683 ::llvm::hashing::detail::hash_combine_recursive_helper helper;
690 ::llvm::hashing::detail::hash_combine_recursive_helper helper;
696 ::llvm::hashing::detail
716 namespace detail { namespace in namespace:llvm::hashing
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DScrollbarThemeGtk2.cpp180 const char* detail = orientation == VerticalScrollbar ? "vscrollbar" : "hscrollbar"; local
184 widgetContext.gtkPaintBox(buttonRect, widget, stateType, shadowType, detail);
211 widgetContext.gtkPaintArrow(arrowRect, widget, stateType, shadowType, arrowType, detail);
H A DRenderThemeGtk2.cpp179 const char* detail = 0; local
181 detail = "radiobutton";
182 widgetContext.gtkPaintOption(buttonRect, widget, toggleState, shadowType, detail);
184 detail = "checkbutton";
185 widgetContext.gtkPaintCheck(buttonRect, widget, toggleState, shadowType, detail);
191 widgetContext.gtkPaintFocus(focusRect, widget, toggleState, detail);
504 const char* detail = 0; local
508 detail = "hscale";
512 detail = "vscale";
523 widgetContext.gtkPaintSlider(thumbRect, widget, getGtkStateType(this, object), GTK_SHADOW_OUT, detail, orientatio
[all...]
/external/webkit/Source/WebKit/win/
H A DDOMEventsClasses.h250 virtual HRESULT STDMETHODCALLTYPE detail(
258 /* [in] */ long detail);
359 virtual HRESULT STDMETHODCALLTYPE detail( function in class:DOMKeyboardEvent
360 /* [retval][out] */ long* result) { return DOMUIEvent::detail(result); }
367 /* [in] */ long detail) { return DOMUIEvent::initUIEvent(type, canBubble, cancelable, view, detail); }
507 virtual HRESULT STDMETHODCALLTYPE detail( function in class:DOMMouseEvent
508 /* [retval][out] */ long* result) { return DOMUIEvent::detail(result); }
515 /* [in] */ long detail) { return DOMUIEvent::initUIEvent(type, canBubble, cancelable, view, detail); }
362 initUIEvent( BSTR type, BOOL canBubble, BOOL cancelable, IDOMWindow* view, long detail) argument
510 initUIEvent( BSTR type, BOOL canBubble, BOOL cancelable, IDOMWindow* view, long detail) argument
866 virtual HRESULT STDMETHODCALLTYPE detail( function in class:DOMWheelEvent
869 initUIEvent( BSTR type, BOOL canBubble, BOOL cancelable, IDOMWindow* view, long detail) argument
[all...]
/external/valgrind/main/coregrind/
H A Dm_tooliface.c68 #define DETAILS(type, detail) \
69 extern void VG_(details_##detail)(type detail) \
71 VG_(details).detail = detail; \
/external/v8/src/
H A Dliveobjectlist.cc564 // Utility function for filling in a line of detail in a verbose dump.
573 Handle<JSObject> detail,
578 detail = factory->NewJSObject(isolate->object_function());
579 if (detail->IsFailure()) {
580 error = detail;
599 { MaybeObject* maybe_result = detail->SetProperty(*id_sym,
605 { MaybeObject* maybe_result = detail->SetProperty(*desc_sym,
611 { MaybeObject* maybe_result = detail->SetProperty(*size_sym,
618 arr->set(index, *detail);
679 Handle<JSObject> detail; local
565 AddObjDetail(Handle<FixedArray> arr, int index, int obj_id, Handle<HeapObject> target, const char* desc_str, Handle<String> id_sym, Handle<String> desc_sym, Handle<String> size_sym, Handle<JSObject> detail, Handle<String> desc, Handle<Object> error) argument
1432 Handle<JSObject> detail = factory->NewJSObject(isolate->object_function()); local
1569 Handle<JSObject> detail = local
1734 Handle<JSObject> detail; local
1788 Handle<JSObject> detail; local
[all...]
/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp25 namespace detail { namespace in namespace:boost
369 if(last - first < detail::MIN_SORT_SIZE)
372 detail::spread_sort(first, last, *first >> 0, *first);
379 if(last - first < detail::MIN_SORT_SIZE)
382 detail::spread_sort(first, last, shift(*first, 0), *first, shift, comp);
389 if(last - first < detail::MIN_SORT_SIZE)
392 detail::spread_sort(first, last, shift(*first, 0), *first, shift);
416 namespace detail { namespace in namespace:boost
965 if(last - first < detail::MIN_SORT_SIZE)
968 detail
1000 namespace detail { namespace in namespace:boost
[all...]
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebEditorClient.mm761 for (NSDictionary *detail in grammarDetails) {
762 ASSERT(detail);
764 NSValue *detailRangeAsNSValue = [detail objectForKey:NSGrammarRange];
771 grammarDetail.userDescription = [detail objectForKey:NSGrammarUserDescription];
772 NSArray *guesses = [detail objectForKey:NSGrammarCorrections];
804 GrammarDetail detail;
810 detail.location = detailNSRange.location;
811 detail.length = detailNSRange.length;
812 detail.userDescription = [incomingDetail objectForKey:NSGrammarUserDescription];
815 detail
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/h264/
H A DAvcConfigurationBox.java341 String detail = "not parsable";
343 detail = SeqParameterSet.read(new ByteArrayInputStream(sequenceParameterSet)).toString();
347 l.add(detail);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DEditorClientAndroid.h111 virtual void updateSpellingUIWithGrammarString(const String&, const GrammarDetail& detail);
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.h108 virtual void updateSpellingUIWithGrammarString(const String&, const GrammarDetail& detail);
/external/stlport/stlport/
H A Dmemory85 namespace detail{
/external/webkit/Source/WebCore/page/
H A DEditorClient.h173 virtual void updateSpellingUIWithGrammarString(const String&, const GrammarDetail& detail) = 0;
/external/webkit/Tools/DumpRenderTree/gtk/
H A DAccessibilityCallbacks.cpp97 g_quark_to_string(signalHint->detail)));
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DChannelManager.java124 String detail = c.getReasonClosed();
126 if (detail == null)
127 detail = "state: " + c.state;
129 throw new IOException("Could not open channel (" + detail + ")");
192 String detail = c.getReasonClosed();
194 if (detail == null)
195 detail = "state: " + c.state;
197 throw new IOException("This SSH2 channel is not open (" + detail + ")");
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCTableCombo.java219 switch (event.detail) {
230 e.detail = event.detail;
471 switch (event.detail) {
487 e.detail = event.detail;

Completed in 3528 milliseconds

12345