/external/v8/test/mjsunit/ |
value-wrapper.js | 150 // According to ES3 15.3.4.3 the this value passed to Function.prototyle.apply 152 assertEquals('object', TypeOfThis.apply('xxx', [])); 153 assertEquals('object', TypeOfThis.apply(true, [])); 154 assertEquals('object', TypeOfThis.apply(false, [])); 155 assertEquals('object', TypeOfThis.apply(42, [])); 156 assertEquals('object', TypeOfThis.apply(3.14, []));
|
/frameworks/base/core/java/android/view/animation/ |
RotateAnimation.java | 75 * @param fromDegrees Rotation offset to apply at the start of the 78 * @param toDegrees Rotation offset to apply at the end of the animation. 90 * @param fromDegrees Rotation offset to apply at the start of the 93 * @param toDegrees Rotation offset to apply at the end of the animation. 115 * @param fromDegrees Rotation offset to apply at the start of the 118 * @param toDegrees Rotation offset to apply at the end of the animation.
|
Transformation.java | 105 * Apply this Transformation to an existing Transformation, e.g. apply 115 * @return The 3x3 Matrix representing the trnasformation to apply to the
|
/frameworks/base/docs/html/guide/topics/ui/ |
themes.jd | 18 <li><a href="#ApplyAStyle">Apply a style to a View</a></li> 19 <li><a href="#ApplyATheme">Apply a theme to an Activity or application</a></li> 68 style is applied as a theme, every View in the Activity or application will apply each style 69 property that it supports. For example, you can apply the same {@code CodeFont} style 114 style for a single View or as a theme for an entire Activity or application. How to apply a style 177 <p>The best place to find properties that apply to a specific {@link android.view.View} is the 215 apply a style to a View that does not support all of the style properties, the View will 216 apply only those properties that are supported and simply ignore the others.</p> 219 as a theme. These style properties apply to the entire window and not to any type of View. 245 <p>When you apply a style to a single {@link android.view.View} in the layout, the propertie [all...] |
/external/guava/src/com/google/common/collect/ |
Collections2.java | 143 checkArgument(predicate.apply(element)); 149 checkArgument(predicate.apply(element)); 160 // unsafe cast can result in a CCE from predicate.apply(), which we 164 return predicate.apply(e) && unfiltered.contains(element); 191 // unsafe cast can result in a CCE from predicate.apply(), which we 195 return predicate.apply(e) && unfiltered.remove(element); 206 public boolean apply(E input) { 207 return predicate.apply(input) && collection.contains(input); 216 public boolean apply(E input) { 217 return predicate.apply(input) && !collection.contains(input) [all...] |
/external/skia/src/animator/ |
SkDrawGroup.cpp | 51 // SkApply* apply = (SkApply*) *ptr; 52 // SkASSERT(apply->isApply()); 53 // SkASSERT(apply->getScope()); 54 // delete apply->getScope(); 267 SkApply* apply = (SkApply*) *ptr; local 268 SkASSERT(apply->isApply()); 269 SkASSERT(apply->getScope()); 270 *ptr = apply->getScope(); 276 bool SkGroup::resolveIDs(SkAnimateMaker& maker, SkDisplayable* orig, SkApply* apply) { 286 if (drawable->resolveIDs(maker, *originalPtr++, apply) == true [all...] |
SkAnimateActive.cpp | 29 SkActive::SkActive(SkApply& apply, SkAnimateMaker& maker) : fApply(apply), 65 void SkActive::append(SkApply* apply) { 67 SkTDAnimateArray& animates = apply->fAnimators; 81 initState(apply, oldCount); 82 SkASSERT(fApply.scope == apply->scope); 272 void SkActive::initState(SkApply* apply, int offset) { 282 state.fStartTime = state.fBegin = apply->begin + animate->begin; 283 state.fMode = apply->mode; 284 state.fTransition = apply->transition [all...] |
/external/valgrind/main/docs/lib/ |
vg-html-common.xsl | 137 <xsl:apply-templates select="$prev" mode="object.title.markup"/> 168 <xsl:apply-templates select="$next" mode="object.title.markup"/> 199 <xsl:apply-templates select="/*[1]" mode="recursive-chunk-filename"/> 236 <xsl:apply-templates select="$title"/> 240 <xsl:apply-templates select="qandaentry|qandadiv"/> 254 <xsl:apply-templates select="(blockinfo/title|title)[1]"/> 280 <xsl:apply-templates select="qandadiv|qandaentry"/> 287 <b><xsl:apply-templates/></b> 313 <xsl:apply-templates select="." mode="label.markup"/> 315 <xsl:apply-templates select="." mode="intralabel.punctuation"/ [all...] |
/frameworks/base/core/java/android/view/ |
Gravity.java | 102 * {@link #apply(int, int, int, Rect, int, int, Rect)}; you must do so 109 * {@link #apply(int, int, int, Rect, int, int, Rect)}; you must do so 126 * Apply a gravity constant to an object. This suppose that the layout direction is LTR. 138 public static void apply(int gravity, int w, int h, Rect container, Rect outRect) { method in class:Gravity 139 apply(gravity, w, h, container, 0, 0, outRect); method 143 * Apply a gravity constant to an object and take care if layout direction is RTL or not. 158 public static void apply(int gravity, int w, int h, Rect container, method in class:Gravity 161 apply(absGravity, w, h, container, 0, 0, outRect); method 165 * Apply a gravity constant to an object. 174 * @param xAdj Offset to apply to the X axis. If gravity is LEFT thi 185 public static void apply(int gravity, int w, int h, Rect container, method in class:Gravity [all...] |
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
multi-level-substitution.cpp | 197 struct apply { // expected-note 2{{template is declared here}} struct in struct:ExpandingNonTypeTemplateParameters::tuple_of_values 205 is_same<tuple_of_values<int&, float&, char, int>::apply<i, f, 'a', 17> 213 tuple_of_values<int&, float&>::apply<i, i>::type tv2; // expected-error{{non-type template parameter of reference type 'float &' cannot bind to template argument of type 'int'}} 215 tuple_of_values<int&, float&>::apply<i>::type tv3; // expected-error{{too few template arguments for class template 'apply'}} 217 tuple_of_values<int&, float&>::apply<i, f, i>::type tv4; // expected-error{{too many template arguments for class template 'apply'}}
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
SearchSettingsImpl.java | 131 SharedPreferencesCompat.apply(getSearchPreferences().edit().putBoolean(name, value)); 135 SharedPreferencesCompat.apply(getSearchPreferences().edit().putInt(name, value)); 139 SharedPreferencesCompat.apply(getSearchPreferences().edit().putLong(name, value)); 143 SharedPreferencesCompat.apply(getSearchPreferences().edit().putString(name, value)); 147 SharedPreferencesCompat.apply(getSearchPreferences().edit().remove(name)); 199 SharedPreferencesCompat.apply(prefs.edit() 256 SharedPreferencesCompat.apply(sharedPrefEditor);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/ |
AndroidPreferencePage.java | 46 * that is small and knows how to save, restore and apply itself. 103 * hide the error as appropriate but the pref panel will fail to validate the apply/ok buttons 120 * @return True if the apply/ok button should be enabled in the pref panel 129 return false; // Apply/OK must be disabled 144 return false; // Apply/OK must be disabled 150 return true; // Apply/OK must be enabled 185 l.setText("Note: The list of SDK Targets below is only reloaded once you hit 'Apply' or 'OK'.");
|
/external/freetype/src/truetype/ |
ttgxvar.c | 107 /* Read a set of points to which the following deltas will apply. */ 488 /* to apply (for intermediate coordinates). */ 504 FT_Fixed apply; local 508 apply = 0x10000L; 522 apply = 0; 528 apply = FT_MulDiv( apply, 537 apply = 0; 546 apply = FT_MulDiv( apply, temp, 0x10000L ) 1196 FT_Fixed apply; local 1393 FT_Fixed apply; local [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/ |
scope-004.js | 92 localC.apply(new Object()); 96 localC.apply(new Object(), [objTEST]); 100 localC.apply(objTEST, [objTEST]); 108 localD.apply(new Object(), [objTEST]); 112 localD.apply(objTEST, [objTEST]);
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
IntermTraverse.cpp | 107 // Traverse a unary node. Same comments in binary node apply here. 127 // Traverse an aggregate node. Same comments in binary node apply here. 183 // Traverse a selection node. Same comments in binary node apply here. 215 // Traverse a loop node. Same comments in binary node apply here. 275 // Traverse a branch node. Same comments in binary node apply here.
|
/bootable/recovery/applypatch/ |
applypatch.sh | 155 # --------------- apply patch ---------------------- 162 # Check that the partition has enough space to apply the patch without 165 testname "apply patches (with enough space)" 177 testname "apply bsdiff patch" 188 # --------------- apply patch in new location ---------------------- 193 # Check that the partition has enough space to apply the patch without 196 testname "apply patch to new location (with enough space)" 211 testname "apply bsdiff patch to new location" 225 testname "apply bsdiff patch to new location with corrupted source" 234 testname "apply bsdiff patch to new location with corrupted source and copy (no new file) [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
RemoteViewsActivityTest.java | 56 View result = r.apply(mActivity, parent); 86 result = r.apply(mActivity, parent); 112 result = r.apply(mActivity, parent);
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
array_data_model.js | 61 return this.array_.slice.apply(this.array_, arguments); 83 var rv = arr.splice.apply(arr, arguments); 101 this.splice.apply(this, args);
|
/external/clang/test/SemaTemplate/ |
default-arguments.cpp | 101 struct apply { struct in struct:add_pointer 106 template<typename T, template<typename> class X = T::template apply> 109 X4<add_pointer, add_pointer::apply> >::value? 1 : -1];
|
/external/proguard/src/proguard/ |
MemberSpecification.java | 56 * in order for the class to apply. 58 * in order for the class to apply. 61 * to apply. The name may be null to specify
|
/external/webkit/Source/WebKit/gtk/tests/ |
testwindow.c | 59 /* Test we correctly apply policy for not having scrollbars; This 78 /* Test we correctly apply policy for always having scrollbars */ 94 /* Test we correctly apply policy for having scrollbars when needed */
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
SlideshowView.java | 103 mPrevAnimation.apply(canvas); 113 mCurrentAnimation.apply(canvas); 140 public void apply(GLCanvas canvas) { method in class:SlideshowView.SlideshowAnimation
|
/external/chromium/chrome/browser/policy/ |
file_based_policy_provider_unittest.cc | 49 EXPECT_CALL(*store_, Apply(policy::kPolicySyncDisabled, _)).Times(1); 78 EXPECT_CALL(*store_, Apply(policy::kPolicySyncDisabled, _)).Times(1);
|
/external/chromium/chrome/browser/sync/glue/ |
change_processor.h | 19 // An interface used to apply changes from the sync model to the browser's 28 // and apply them to the other. Both the chrome model and sync_api are
|
/external/clang/test/Rewriter/ |
rewrite-block-pointer.mm | 20 void apply(void (^block)(int)); 27 apply(^(int sect) {
|