/external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/ |
ParticleInfluencer.java | 34 * to the velocity variation set in {@link ParticleEmitter#setVelocityVariation(float) }. 47 * @param variation 48 * Set the variation by which the initial velocity 49 * of the particle is determined. <code>variation</code> should be a value 54 void setVelocityVariation(float variation); 57 * This method returns the velocity variation. 58 * @return the velocity variation
|
DefaultParticleInfluencer.java | 15 * The direction may vary a little if the velocity variation is non zero. 25 /** The velocity's variation of the particles. */ 35 * This method applies the variation to the particle with already set velocity. 52 oc.write(velocityVariation, "variation", 0.2f); 59 velocityVariation = ic.readFloat("variation", 0.2f); 84 public void setVelocityVariation(float variation) { 85 this.velocityVariation = variation;
|
EmptyParticleInfluencer.java | 39 public void setVelocityVariation(float variation) {
|
/external/chromium_org/chrome/common/metrics/proto/ |
chrome_experiments.proto | 14 // A list of Chrome experiment variation IDs that are active.
|
/external/chromium_org/chrome/browser/metrics/variations/ |
variations_http_header_provider.h | 49 // Sets *additional* variation ids to be encoded in the X-Client-Data 69 // This will add the variation ID associated with |trial_name| and 70 // |group_name| to the variation ID cache. 75 // Prepares the variation IDs cache with initial values if not already done. 77 // new variation IDs. 85 // Checks whether variation headers should be appended to requests to the 96 // Keep a cache of variation IDs that are transmitted in headers to Google.
|
variations_registry_syncer_win.cc | 57 DVLOG(1) << "Error reading Variation labels from the registry."; 79 DVLOG(1) << "Error writing Variation labels to the registry: "
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
InputTypeUtils.java | 67 private static boolean isWebEmailAddressVariation(int variation) { 68 return variation == TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS; 71 public static boolean isEmailVariation(final int variation) { 72 return variation == TYPE_TEXT_VARIATION_EMAIL_ADDRESS 73 || isWebEmailAddressVariation(variation); 100 final int variation = TYPE_MASK_VARIATION & inputType; local 102 if (variation == fieldVariation) return false;
|
/external/clang/test/SemaCXX/ |
cxx0x-return-init-list.cpp | 3 // Test that a very basic variation of generalized initializer returns (that
|
/external/chromium_org/components/variations/ |
variations_associated_data.h | 17 // data related to Chrome variations, such as parameters and Google variation 23 // variation configs, but may also be used for client-only field trials by 26 // Experiment code can then use the getter APIs to retrieve variation parameters 109 // variation IDs for all active FieldTrial groups. Thread safe. 114 // Associates the specified set of key-value |params| with the variation 116 // specified variation already has params associated with it or the field trial 122 // Retrieves the set of key-value |params| for the variation associated with 133 // variation associated with the specified field trial, based on its selected
|
/external/chromium_org/third_party/skia/include/utils/ |
SkPathUtils.h | 23 This variation iterates the binary data sequentially (as in scanline fashion) 31 This variation utilizes the SkRegion class to generate paths, adding
|
/external/skia/include/utils/ |
SkPathUtils.h | 23 This variation iterates the binary data sequentially (as in scanline fashion) 31 This variation utilizes the SkRegion class to generate paths, adding
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
InputAttributes.java | 63 final int variation = inputType & InputType.TYPE_MASK_VARIATION; local 77 || InputTypeUtils.isEmailVariation(variation) 78 || InputType.TYPE_TEXT_VARIATION_URI == variation 79 || InputType.TYPE_TEXT_VARIATION_FILTER == variation 93 if ((variation == InputType.TYPE_TEXT_VARIATION_WEB_EDIT_TEXT 126 Log.i(TAG, "Variation:"); 174 Log.i(TAG, " Unknown variation");
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
SQL_Results.java | 87 this.queryAllVariations = this.fConnection.prepareStatement("select KEYVALPAIRS from VARIATION where KEYVALPAIRS like ? order by KEYVALPAIRS"); //$NON-NLS-1$ 124 String statement = "select distinct SCENARIO.ID, SCENARIO.NAME , SCENARIO.SHORT_NAME from SCENARIO, SAMPLE, VARIATION where " + //$NON-NLS-1$ 125 "SAMPLE.VARIATION_ID = VARIATION.ID and VARIATION.KEYVALPAIRS LIKE ? and " + //$NON-NLS-1$ 177 String statement = "select DATAPOINT.ID, DATAPOINT.STEP, VARIATION.KEYVALPAIRS from SAMPLE, DATAPOINT, VARIATION where " + //$NON-NLS-1$ 181 "SAMPLE.VARIATION_ID = VARIATION.ID " + //$NON-NLS-1$ 195 String statement = "select DATAPOINT.ID, DATAPOINT.STEP, VARIATION.KEYVALPAIRS from SAMPLE, DATAPOINT, VARIATION where " + //$NON-NLS-1$ 196 "SAMPLE.VARIATION_ID = VARIATION.ID and VARIATION.KEYVALPAIRS LIKE ? and " + //$NON-NLS-1 [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/ |
BCStrictStyle.java | 8 * Variation of BCStyle that insists on strict ordering for equality
|
/external/chromium_org/content/public/browser/ |
resource_controller.h | 13 // any time. CancelAndIgnore is a variation of Cancel that also causes the
|
/development/samples/ApiDemos/res/values/ |
styles.xml | 18 <!-- A custom theme that is a variation on the light them with a different 28 been defined. Look at values-11/styles.xml for a variation that is 35 been defined. Look at values-11/styles.xml for a variation that is 48 <!-- Variation on our application theme that forces a plain 54 <!-- Variation on our application theme that has a black 82 <!-- Variation on our application theme that has a transparent
|
/frameworks/base/core/java/android/text/ |
InputType.java | 50 * understand, assume {@link #TYPE_CLASS_TEXT} with NO variation 56 * Mask of bits that determine the variation of 92 * variation, normal should be assumed. 196 * Default variation of {@link #TYPE_CLASS_TEXT}: plain old normal text. 201 * Variation of {@link #TYPE_CLASS_TEXT}: entering a URI. 206 * Variation of {@link #TYPE_CLASS_TEXT}: entering an e-mail address. 211 * Variation of {@link #TYPE_CLASS_TEXT}: entering the subject line of 217 * Variation of {@link #TYPE_CLASS_TEXT}: entering a short, possibly informal 223 * Variation of {@link #TYPE_CLASS_TEXT}: entering the content of a long, possibly 229 * Variation of {@link #TYPE_CLASS_TEXT}: entering the name of a person [all...] |
/external/chromium_org/chrome/common/metrics/variations/ |
variation_ids.h | 10 // A list of Chrome Variation IDs. These IDs are associated with FieldTrials 43 // The smallest possible Chrome Variation ID in the reserved range. The 95 // The smallest possible Chrome Variation ID for use in real FieldTrials. If 96 // you are defining variation IDs for your own FieldTrials, NEVER use a value 100 // Add new variation IDs below. 287 // The largest possible Chrome variation ID in the reserved range. When 288 // defining your variation IDs, DO NOT exceed this value - GWS will ignore
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
VaryingConfiguration.java | 50 /** Variation version; see {@link #setVariation(int)} */ 53 /** Variation version count; see {@link #setVariationCount(int)} */ 127 * Sets the variation version for this 130 * {@link Configuration}. The variation version allows them to choose 134 * Also updates the variation count if necessary. 136 * @param variation variation version 138 public void setVariation(int variation) { 139 mVariation = variation; 140 mVariationCount = Math.max(mVariationCount, variation + 1) [all...] |
/development/samples/Support4Demos/res/values/ |
styles.xml | 20 been defined. Look at values-11/styles.xml for a variation that is
|
/external/chromium_org/remoting/base/ |
running_average.h | 16 // This is typically used to smooth out random variation in point samples
|
/external/chromium_org/third_party/ots/src/ |
cmap.h | 53 // Platform 0, Encoding 5, Format 14, Unicode Variation Sequence table.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/doc/ |
help.html | 32 <p>The X axis represents percentage of the variation vs. the given baseline</p> 50 The variation between the baseline and the build is displayed as a percentage on top of both bars.</p> 90 In this case, a warning icon is shown after the variation value and flying over it gives the offending error value:</td></tr> 100 In this case, a warning icon is shown after the scenario title and flying over it gives the build ID used to compute the variation:</td></tr>
|
/external/kernel-headers/original/linux/ |
calc64.h | 31 * Sign aware variation of the above. On some architectures a
|
/external/llvm/test/CodeGen/X86/ |
stack-update-frame-opcode.ll | 10 ; There is a 2x2 variation matrix here:
|