/external/skia/src/animator/ |
SkDisplayApply.cpp | 570 for (int inner = 0; inner < animators; inner++) { 571 SkAnimateBase* animate = fActive->fAnimators[inner]; 585 SkMSec time = fActive->getTime(rawTime, inner); 586 SkActive::SkState& state = fActive->fState[inner]; 597 fActive->restoreInterpolatorValues(inner); 617 SkInterpolatorBase::Result interpResult = fActive->fInterpolators[inner]->timeToValues( 636 save(inner); // save existing value 637 applyValues(inner, formulaValues.begin(), count, animate->getValuesType(), innerTime) [all...] |
/external/skia/tests/ |
PathOpsCubicIntersectionTest.cpp | 363 static void oneOff(skiatest::Reporter* reporter, int outer, int inner) { 365 const SkDCubic& cubic2 = testSet[inner]; 369 static void newOneOff(skiatest::Reporter* reporter, int outer, int inner) { 371 const SkDCubic& cubic2 = newTestSet[inner]; 377 for (size_t inner = outer + 1; inner < testSetCount; ++inner) { 378 oneOff(reporter, outer, inner); 382 for (size_t inner = outer + 1; inner < newTestSetCount; ++inner) [all...] |
/external/speex/libspeex/ |
cb_search_bfin.h | 59 "LOOP inner%= LC1 = P0;\n\t" 60 "LOOP_BEGIN inner%=;\n\t" 62 "LOOP_END inner%=;\n\t"
|
/frameworks/base/docs/html/guide/practices/ui_guidelines/ |
icon_design_dialog.jd | 40 interaction. They use a light gradient and inner 141 dark background, they are built up using a light gradient and inner shadow.</p> 156 <tr><td><em>2.</em></td><td>Inner shadow:</td><td>black | 25% opacity | <br>angle -90° | distance 1px | size 0px</td></tr>
|
/frameworks/base/docs/html/training/articles/ |
perf-tips.jd | 15 <li><a href="#PackageInner">Consider Package Instead of Private Access with Private Inner Classes</a></li> 251 <h2 id="PackageInner">Consider Package Instead of Private Access with Private Inner Classes</h2> 257 private class Inner { 266 Inner in = new Inner(); 276 <p>What's important here is that we define a private inner class 277 (<code>Foo$Inner</code>) that directly accesses a private method and a private 282 private members from <code>Foo$Inner</code> to be illegal because 283 <code>Foo</code> and <code>Foo$Inner</code> are different classes, even though 284 the Java language allows an inner class to access an outer class' privat [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
HolographicOutlineHelper.java | 148 // calculate the inner blur 169 // mask out the inner blur 178 // draw the inner and outer blur
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
HolographicOutlineHelper.java | 156 // calculate the inner blur 177 // mask out the inner blur 186 // draw the inner and outer blur
|
/external/chromium_org/third_party/skia/src/core/ |
SkScan_Antihair.cpp | 959 // We want the inverse of B-T, since we're the inner-stroke 1035 SkIRect inner; 1036 // set inner to the inner rect of the middle section 1037 inner.set(FDot8Floor(L), FDot8Floor(T), FDot8Ceil(R), FDot8Ceil(B)); 1040 fillcheckrect(outer.fLeft, outer.fTop, outer.fRight, inner.fTop, 1042 fillcheckrect(outer.fLeft, inner.fTop, inner.fLeft, inner.fBottom, 1044 fillcheckrect(inner.fRight, inner.fTop, outer.fRight, inner.fBottom [all...] |
/external/skia/src/core/ |
SkScan_Antihair.cpp | 959 // We want the inverse of B-T, since we're the inner-stroke 1035 SkIRect inner; 1036 // set inner to the inner rect of the middle section 1037 inner.set(FDot8Floor(L), FDot8Floor(T), FDot8Ceil(R), FDot8Ceil(B)); 1040 fillcheckrect(outer.fLeft, outer.fTop, outer.fRight, inner.fTop, 1042 fillcheckrect(outer.fLeft, inner.fTop, inner.fLeft, inner.fBottom, 1044 fillcheckrect(inner.fRight, inner.fTop, outer.fRight, inner.fBottom [all...] |
/external/clang/include/clang/ASTMatchers/ |
ASTMatchersInternal.h | 374 : Inner(Matcher.clone()) {} 379 return Inner->matches(ast_type_traits::DynTypedNode::create(Node), Finder, 384 const OwningPtr<DynTypedMatcher> Inner; 531 /// \brief If getDecl exists as a member of U, returns whether the inner 541 /// whether the inner matcher matches on it. 553 /// and returns whether the inner matches on it. 562 /// the inner matcher matches on it. 569 /// inner matcher matches on it. 577 /// whether the inner matcher matches on it. 584 /// \brief Returns whether the inner matcher \c Node. Returns false if \c Nod [all...] |
/cts/tools/dex-tools/test/dex/reader/ |
DexFileReaderTests.java | 285 " class Inner{}" + 296 DexFile dexFile = javaToDexUtil.getFrom(toSet(Outer0), toStringSet("Outer0", "Outer0$Inner", "Outer0$StaticInner")); 308 DexClass inner = getClass(dexFile, "LOuter0$Inner;"); local 310 assertTrue(innerTypeNames.contains(inner.getName()));
|
/external/ceres-solver/internal/ceres/ |
trust_region_minimizer.cc | 310 // Check if performing an inner iteration will make it better. 323 VLOG(2) << "Inner iteration failed."; 327 // Boost the model_cost_change, since the inner iteration 330 VLOG(2) << "Inner iteration succeeded; current cost: " << cost 341 // Disable inner iterations once the relative improvement 344 VLOG(2) << "Disabling inner iterations. Progress : " 413 // the trust region radius. However, when inner iterations are 415 // inner iterations and its not fair to credit it all to the 423 // change in solution quality due to inner iterations is so large 428 // get around this, we expicitly check if the inner iteration [all...] |
/external/chromium_org/url/ |
gurl_unittest.cc | 198 const GURL* inner = url2.inner_url(); local 199 ASSERT_TRUE(inner); 200 EXPECT_EQ("https", inner->scheme()); 201 EXPECT_EQ("user", inner->username()); 202 EXPECT_EQ("pass", inner->password()); 203 EXPECT_EQ("google.com", inner->host()); 204 EXPECT_EQ("99", inner->port()); 205 EXPECT_EQ(99, inner->IntPort()); 206 EXPECT_EQ("/t", inner->path()); 207 EXPECT_EQ("", inner->query()) [all...] |
/external/clang/test/Analysis/ |
ctor.mm | 171 class Inner { 175 Inner() {} 176 Inner(const Inner &Other) 180 Inner(Inner &&Other) 185 Inner &operator=(const Inner &Other) 191 Inner &operator=(Inner &&Other [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTextControlSingleLine.cpp | 103 // - Center the inner elements vertically if the input height is taller than 104 // the intrinsic height of the inner elements. 105 // - Shrink the inner elment heights if the input height is samller than the 106 // intrinsic heights of the inner elements. 171 // Ignores the paddings for the inner spin button. 217 // Say that we hit the inner text element if 218 // - we hit a node inside the inner text element,
|
/external/clang/docs/tools/ |
dump_ast_matchers.py | 141 result, inner, name = m.groups() 142 if not inner: 143 inner = result 144 add_matcher(result, name, 'Matcher<%s>...' % inner, 154 inner, name = m.groups() 155 add_matcher('Type', name, 'Matcher<%s>...' % inner, 159 # add_matcher('TypeLoc', '%sLoc' % name, 'Matcher<%sLoc>...' % inner,
|
/frameworks/base/tools/layoutlib/create/ |
README.txt | 123 all inner classes and references in methods and types. Note that other classes are 196 references in internal inner classes and methods. 212 This won't rename/replace the inner static methods of a given class. 226 mentioned above, some inner static classes are used to pass around 231 example, the inner class Paint$Style in the Paint class should be discarded and the 248 as its first argument. If the original method is an inner non-static method, it also 249 receives the inner 'this' as the second argument.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
timeit.py | 81 def inner(_it, _timer): 96 def inner(_it, _timer, _func=func): function in function:_template_func 103 return inner 138 self.inner = ns["inner"] 147 self.inner = _template_func(setup, stmt) 195 timing = self.inner(it, self.timer)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
timeit.py | 81 def inner(_it, _timer): 96 def inner(_it, _timer, _func=func): function in function:_template_func 103 return inner 138 self.inner = ns["inner"] 147 self.inner = _template_func(setup, stmt) 195 timing = self.inner(it, self.timer)
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrAARectRenderer.cpp | 321 // the inner rect (for AA) and 2 for the inner rect. 364 * inner edge: 16~19 365 * inner AA line: 20~23 399 // Draw the stroke, from outer edge to inner edge, shift is 8. 409 // Draw the inner AA, from inner edge to inner AA line, shift is 16. 783 // edge, while vertex number of inner edge is 4, the same as miter-stroke. [all...] |
/external/skia/src/gpu/ |
GrAARectRenderer.cpp | 321 // the inner rect (for AA) and 2 for the inner rect. 364 * inner edge: 16~19 365 * inner AA line: 20~23 399 // Draw the stroke, from outer edge to inner edge, shift is 8. 409 // Draw the inner AA, from inner edge to inner AA line, shift is 16. 783 // edge, while vertex number of inner edge is 4, the same as miter-stroke. [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
html.css | 574 input[type="date"]::-webkit-inner-spin-button, 575 input[type="datetime"]::-webkit-inner-spin-button, 576 input[type="datetime-local"]::-webkit-inner-spin-button, 577 input[type="month"]::-webkit-inner-spin-button, 578 input[type="time"]::-webkit-inner-spin-button, 579 input[type="week"]::-webkit-inner-spin-button { 604 input::-webkit-inner-spin-button { 605 -webkit-appearance: inner-spin-button; 621 input:enabled:read-write:-webkit-any(:focus,:hover)::-webkit-inner-spin-button { 832 input[type="date"]:disabled::-webkit-inner-spin-button [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8WindowShell.cpp | 167 // an outer window and an inner window. The inner window is the hidden 168 // prototype of the outer window. The inner window is the default 170 // scope is a property of the inner window. 176 // inner window. 178 // When a frame navigates to a new page, the inner window is cut off 180 // the frame. However, a new inner window is created for the new page. 181 // If there are JS code holds a closure to the old inner window, 323 // outer, inner, and DOMWindow instance all appear to be the same 364 // We also stash a reference to the document on the inner global object so tha [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
e_select2.test | 347 # EVIDENCE-OF: R-46122-14930 If the join-op is "CROSS JOIN", "INNER 352 # EVIDENCE-OF: R-46256-57243 There is no difference between the "INNER 356 # same data as the "INNER JOIN", "JOIN" and "," operators 359 test_join $tn.1.2 "t1 INNER JOIN t2" {t1 t2} 363 test_join $tn.1.6 "t2 INNER JOIN t3" {t2 t3} 367 test_join $tn.1.10 "t2 INNER JOIN t2 AS x" {t2 t2} 394 test_join $tn.7 "t1 NATURAL INNER JOIN t2" { 400 test_join $tn.9 "t1 NATURAL INNER JOIN t2" { 412 test_join $tn.13 "t2 NATURAL INNER JOIN t1" { 418 test_join $tn.15 "t2 NATURAL INNER JOIN t1" [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_deblocking.c | 137 enum { TOP = 0, LEFT = 1, INNER = 2 }; 326 Function to calculate boundary strength value bs for an inner 361 Function to calculate boundary strength value bs for an inner [all...] |