HomeSort by relevance Sort by last modified time
    Searched refs:strong (Results 51 - 75 of 163) sorted by null

1 23 4 5 6 7

  /build/make/tools/droiddoc/templates-pdk/assets/
yui-3.3.0-reset-min.css 8 html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2 (…)
  /external/webrtc/talk/app/webrtc/objctests/
RTCSessionDescriptionSyncObserver.m 39 @property(nonatomic, strong) NSCondition* condition;
  /packages/apps/Camera2/src/com/android/camera/widget/
PeekView.java 92 * @param strong {@code true} if the animation is the strong version which
97 public void startPeekAnimation(final Bitmap bitmap, boolean strong,
145 mRotateScale = (strong ? 1.0f : 0.5f);
  /prebuilts/go/darwin-x86/src/crypto/rand/
rand.go 12 // strong pseudo-random generator.
  /prebuilts/go/linux-x86/src/crypto/rand/
rand.go 12 // strong pseudo-random generator.
  /sdk/templates/docs/
cssreset-min.css 7 html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#000}#yui3-css-stamp.cssreset{display:none}
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
libdso-15b.d 8 # GOT/PLT-generating relocs, using weak aliases where the strong
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/
ARDVideoCallViewController.m 21 @property(nonatomic, strong) RTCVideoTrack *localVideoTrack;
22 @property(nonatomic, strong) RTCVideoTrack *remoteVideoTrack;
  /system/core/libutils/
Threads.cpp 679 // hold a strong reference on ourself
715 sp<Thread> strong(self->mHoldSelf);
716 wp<Thread> weak(strong);
740 // The caller therefore does not retain a strong reference to
766 // Release our strong reference, to let a chance to the thread
768 strong.clear();
769 // And immediately, re-acquire a strong reference for the next loop
770 strong = weak.promote();
771 } while(strong != 0);
  /external/libnl/doc/stylesheets/
xhtml11.css 25 strong {
284 dt.hdlist1.strong, td.hdlist1.strong {
flask.css 45 strong {
281 dt.hdlist1.strong, td.hdlist1.strong {
571 strong { color: #3E4349; }
volnitsky.css 45 strong {
286 dt.hdlist1.strong, td.hdlist1.strong {
asciidoc.css 41 strong {
281 dt.hdlist1.strong, td.hdlist1.strong {
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfweak/
elfweak.exp 457 build_exec "ELF weak func first" foo "main.o bar.o" "" strong "" strong.sym
458 build_exec "ELF weak func last" foo "bar.o main.o" "" strong "" strong.sym
  /build/make/tools/droiddoc/templates-sac/
sdkpage.cs 55 <p><strong>This is NOT the current Android SDK release.</strong></p>
200 <p class="table-caption"><strong>ADT Bundle</strong></p>
256 <p class="table-caption"><strong>SDK Tools Only</strong></p>
  /toolchain/binutils/binutils-2.25/etc/
texi2pod.pl 296 $ic =~ s/\@(?:samp|strong|key|gcctabopt|env)/B/;
313 # @strong{...} is used a @headitem work-alike
314 $column =~ s/^\@strong{(.*)}$/$1/;
379 s/\@(?:gccoptlist|samp|strong|key|option|env|command|b)\{([^\}]*)\}/B<$1>/g;
  /external/markdown/markdown/
inlinepatterns.py 41 * finally we apply strong and emphasis
68 STRONG_RE = r'(\*{2}|_{2})(.+?)\2' # **strong**
69 STRONG_EM_RE = r'(\*{3}|_{3})(.+?)\2' # ***strong***
203 Useful for strong emphasis etc.
  /external/okhttp/website/static/
html5shiv.min.js 6 c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
  /external/fmtlib/doc/bootstrap/
normalize.less 118 strong {
  /art/runtime/
intern_table.cc 59 os << "Intern table: " << StrongSize() << " strong; " << WeakSize() << " weak\n";
72 // The GC moved a root in the log. Need to search the strong interns and update the
231 // Check the strong table for a match.
232 ObjPtr<mirror::String> strong = LookupStrongLocked(s); local
233 if (strong != nullptr) {
234 return strong;
253 // There is no match in the strong table, check the weak table.
257 // A match was found in the weak table. Promote to the strong table.
263 // No match in the strong table or the weak table. Insert into the strong / weak table
    [all...]
  /build/soong/cc/config/
x86_linux_bionic_host.go 37 "-fstack-protector-strong",
  /external/llvm/docs/_ocamldoc/
style.css 6 small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,
  /external/nanopb-c/docs/
lsr.css 40 a.strong {
  /external/webrtc/talk/app/webrtc/objc/
RTCEAGLVideoView.m 41 // a retain cycle since CADisplayLink takes a strong reference onto its target.
110 @property(atomic, strong) RTCI420Frame* i420Frame;
  /external/webrtc/webrtc/api/objc/
RTCEAGLVideoView.m 20 // a retain cycle since CADisplayLink takes a strong reference onto its target.
89 @property(atomic, strong) RTCVideoFrame *videoFrame;

Completed in 2154 milliseconds

1 23 4 5 6 7