/external/llvm/include/llvm/Support/ |
D | Endian.h | 29 namespace detail { 53 (detail::PickAlignment<value_type, alignment>::value)), in read() 64 (detail::PickAlignment<value_type, alignment>::value)), in write() 70 namespace detail { 91 typedef detail::packed_endian_specific_integral 93 typedef detail::packed_endian_specific_integral 95 typedef detail::packed_endian_specific_integral 97 typedef detail::packed_endian_specific_integral 100 typedef detail::packed_endian_specific_integral 102 typedef detail::packed_endian_specific_integral [all …]
|
D | FileSystem.h | 721 namespace detail { 747 IntrusiveRefCntPtr<detail::DirIterState> State; 751 State = new detail::DirIterState; in directory_iterator() 753 ec = detail::directory_iterator_construct(*State, in directory_iterator() 758 State = new detail::DirIterState; in directory_iterator() 759 ec = detail::directory_iterator_construct(*State, de.path()); in directory_iterator() 763 directory_iterator() : State(new detail::DirIterState) {} in directory_iterator() 785 namespace detail { 802 IntrusiveRefCntPtr<detail::RecDirIterState> State; 807 : State(new detail::RecDirIterState) { in recursive_directory_iterator()
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
D | SFTPException.java | 28 String[] detail = ErrorCodes.getDescription(errorCode); in constructMessage() local 30 if (detail == null) in constructMessage() 33 return s + " (" + detail[0] + ": " + detail[1] + ")"; in constructMessage() 71 String[] detail = ErrorCodes.getDescription(sftpErrorCode); in getServerErrorCodeSymbol() local 73 if (detail == null) in getServerErrorCodeSymbol() 76 return detail[0]; in getServerErrorCodeSymbol() 86 String[] detail = ErrorCodes.getDescription(sftpErrorCode); in getServerErrorCodeVerbose() local 88 if (detail == null) in getServerErrorCodeVerbose() 91 return detail[1]; in getServerErrorCodeVerbose()
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | WidgetRenderingContext.cpp | 147 …ct& rect, GtkWidget* widget, GtkStateType stateType, GtkShadowType shadowType, const gchar* detail) in gtkPaintBox() argument 160 widget, detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height); in gtkPaintBox() 163 …ct& rect, GtkWidget* widget, GtkStateType stateType, GtkShadowType shadowType, const gchar* detail) in gtkPaintFlatBox() argument 167 widget, detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height); in gtkPaintFlatBox() 170 …:gtkPaintFocus(const IntRect& rect, GtkWidget* widget, GtkStateType stateType, const gchar* detail) in gtkPaintFocus() argument 174 detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height); in gtkPaintFocus() 177 …* widget, GtkStateType stateType, GtkShadowType shadowType, const gchar* detail, GtkOrientation or… in gtkPaintSlider() argument 181 … detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height, orientation); in gtkPaintSlider() 184 …ct& rect, GtkWidget* widget, GtkStateType stateType, GtkShadowType shadowType, const gchar* detail) in gtkPaintCheck() argument 188 detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height); in gtkPaintCheck() [all …]
|
/external/webkit/Source/WebCore/editing/ |
D | TextCheckingHelper.cpp | 296 const GrammarDetail* detail = &result->details[j]; in findFirstMisspellingOrBadGrammar() local 297 ASSERT(detail->length > 0 && detail->location >= 0); in findFirstMisspellingOrBadGrammar() 298 …detail->location >= currentStartOffset && result->location + detail->location + detail->length <= … in findFirstMisspellingOrBadGrammar() 300 grammarDetailLocation = result->location + detail->location; in findFirstMisspellingOrBadGrammar() 364 const GrammarDetail* detail = &grammarDetails[i]; in findFirstGrammarDetail() local 365 ASSERT(detail->length > 0 && detail->location >= 0); in findFirstGrammarDetail() 367 int detailStartOffsetInParagraph = badGrammarPhraseLocation + detail->location; in findFirstGrammarDetail() 378 …subrange(m_range.get(), badGrammarPhraseLocation - startOffset + detail->location, detail->length); in findFirstGrammarDetail() 380 …t()->markers()->addMarker(badGrammarRange.get(), DocumentMarker::Grammar, detail->userDescription); in findFirstGrammarDetail() 385 if (earliestDetailIndex < 0 || earliestDetailLocationSoFar > detail->location) { in findFirstGrammarDetail() [all …]
|
/external/chromium/chrome/browser/resources/file_manager/css/ |
D | file_manager.css | 45 /* Container for the detail and thumbnail (not implemented yet) list views. */ 99 button.detail-view > img, 156 /* Text box used for renaming in the detail list. */ 157 .detail-table input.rename { 170 .detail-table { 186 .detail-table:focus { 227 .detail-table li.table-row .table-row-cell:first-child div { 253 .detail-name, .detail-size, .detail-date { 257 .detail-icon-container { 265 .detail-icon { [all …]
|
/external/webkit/Source/WebCore/dom/ |
D | UIEvent.h | 40 …nst AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail) in create() argument 42 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail)); in create() 46 …t(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail); 49 int detail() const { return m_detail; } in detail() function 66 …t(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
|
D | MouseEvent.cpp | 34 …ype, PassRefPtr<AbstractView> view, const PlatformMouseEvent& event, int detail, PassRefPtr<Node> … in create() argument 41 detail, event.globalX(), event.globalY(), event.x(), event.y(), in create() 53 int detail, int screenX, int screenY, int pageX, int pageY, in MouseEvent() argument 57 : MouseRelatedEvent(eventType, canBubble, cancelable, view, detail, screenX, screenY, in MouseEvent() 71 int detail, int screenX, int screenY, int clientX, int clientY, in initMouseEvent() argument 78 initUIEvent(type, canBubble, cancelable, view, detail); in initMouseEvent() 182 if (event()->type() == eventNames().clickEvent && event()->detail() == 2) { in dispatchEvent() 185 … event()->detail(), event()->screenX(), event()->screenY(), event()->clientX(), event()->clientY(), in dispatchEvent()
|
D | MouseEvent.h | 43 int detail, int screenX, int screenY, int pageX, int pageY, 47 …return adoptRef(new MouseEvent(type, canBubble, cancelable, view, detail, screenX, screenY, pageX,… 50 …ing& eventType, PassRefPtr<AbstractView>, const PlatformMouseEvent&, int detail, PassRefPtr<Node> … 55 int detail, int screenX, int screenY, int clientX, int clientY, 79 int detail, int screenX, int screenY, int pageX, int pageY,
|
D | CustomEvent.cpp | 41 …ent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail) in initCustomEvent() argument 48 m_detail = detail; in initCustomEvent()
|
D | CustomEvent.h | 44 …oid initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail); 48 ScriptValue detail() const { return m_detail; } in detail() function
|
/external/smack/src/org/apache/harmony/javax/security/sasl/ |
D | AuthenticationException.java | 28 public AuthenticationException(String detail) { in AuthenticationException() argument 29 super(detail); in AuthenticationException() 32 public AuthenticationException(String detail, Throwable ex) { in AuthenticationException() argument 33 super(detail, ex); in AuthenticationException()
|
D | SaslException.java | 35 public SaslException(String detail) { in SaslException() argument 36 super(detail); in SaslException() 39 public SaslException(String detail, Throwable ex) { in SaslException() argument 40 super(detail); in SaslException()
|
/external/clang/test/SemaCXX/ |
D | discrim-union.cpp | 13 namespace detail { namespace 69 detail::either_impl<T...> impl; 75 elem(impl_t::index(detail::type<U>())), in either() 76 impl(detail::select<impl_t::index(detail::type<U>())>(), move(t.value)) {} in either() 85 decltype(static_cast<const impl_t&>(impl).get(detail::select<N>{})); 92 : impl.get(detail::select<N>{})); in get() 97 return get<impl_t::index(detail::type<U>())>(); in get()
|
/external/webkit/Source/WebCore/accessibility/gtk/ |
D | AXObjectCacheAtk.cpp | 167 CString detail; in emitTextChanged() local 170 detail = "text-changed::insert"; in emitTextChanged() 173 detail = "text-changed::delete"; in emitTextChanged() 177 if (!detail.isNull()) in emitTextChanged() 178 g_signal_emit_by_name(wrapper, detail.data(), offset, count); in emitTextChanged()
|
/external/libvpx/libvpx/test/ |
D | decode_test_driver.h | 70 const char *detail = vpx_codec_error_detail(&decoder_); in DecodeError() local 71 return detail ? detail : vpx_codec_error(&decoder_); in DecodeError()
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
D | WebEditorClient.cpp | 687 GrammarDetail detail; in checkGrammarOfString() local 688 if (FAILED(detailObj->length(&detail.length))) in checkGrammarOfString() 690 if (FAILED(detailObj->location(&detail.location))) in checkGrammarOfString() 695 detail.userDescription = String(userDesc, SysStringLen(userDesc)); in checkGrammarOfString() 705 detail.guesses.append(String(guess, SysStringLen(guess))); in checkGrammarOfString() 709 details.append(detail); in checkGrammarOfString() 713 …ient::updateSpellingUIWithGrammarString(const String& string, const WebCore::GrammarDetail& detail) in updateSpellingUIWithGrammarString() argument 720 for (unsigned i = 0; i < detail.guesses.size(); i++) { in updateSpellingUIWithGrammarString() 721 BString guess(detail.guesses[i]); in updateSpellingUIWithGrammarString() 724 BString userDescriptionBSTR(detail.userDescription); in updateSpellingUIWithGrammarString() [all …]
|
/external/webkit/Source/WebKit2/Shared/ |
D | WebCoreArgumentCoders.h | 434 static void encode(ArgumentEncoder* encoder, const WebCore::GrammarDetail& detail) 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) 444 if (!decoder->decodeInt32(detail.location)) 446 if (!decoder->decodeInt32(detail.length)) 448 if (!decoder->decode(detail.guesses)) 450 if (!decoder->decode(detail.userDescription))
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/ |
D | AssertionFailedException.java | 34 public AssertionFailedException(String detail) { in AssertionFailedException() argument 35 super(detail); in AssertionFailedException()
|
/external/llvm/lib/Support/ |
D | Hashing.cpp | 23 size_t llvm::hashing::detail::fixed_seed_override = 0; 28 hashing::detail::fixed_seed_override = fixed_value; in set_fixed_execution_hash_seed()
|
/external/libvpx/libvpx/examples/ |
D | decoder_tmpl.txt | 11 const char *detail = vpx_codec_error_detail(ctx); 14 if(detail) 15 printf(" %s\n",detail);
|
D | encoder_tmpl.txt | 11 const char *detail = vpx_codec_error_detail(ctx); 14 if(detail) 15 printf(" %s\n",detail);
|
/external/chromium/chrome/browser/resources/touch_ntp/tools/ |
D | externs.js | 23 function(eventType, bubbles, cancellable, detail) {}; argument 25 CustomEvent.prototype.detail; method in CustomEvent
|
/external/chromium/chrome/browser/resources/ntp4/tools/ |
D | externs.js | 23 function(eventType, bubbles, cancellable, detail) {}; argument 25 CustomEvent.prototype.detail; method in CustomEvent
|
/external/llvm/include/llvm/ADT/ |
D | Hashing.h | 149 namespace detail { 488 return ::llvm::hashing::detail::hash_combine_range_impl(first, last); 494 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::hash_combine_recursive_helper helper; 701 ::llvm::hashing::detail::hash_combine_recursive_helper helper; 706 ::llvm::hashing::detail::hash_combine_recursive_helper helper; [all …]
|