Searched refs:values (Results 251 - 275 of 2102) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_state_constants.c111 const float (*values)[4])
143 values[i],
152 values[i][0],
153 values[i][1],
154 values[i][2],
155 values[i][3]);
163 values[j],
171 values[j][0],
172 values[j][1],
173 values[
107 emit_const_range(struct svga_context *svga, unsigned shader, unsigned offset, unsigned count, const float (*values)[4]) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DSetNavigationTester.java45 private List<E> values; field in class:SetNavigationTester
53 values = Helpers.copyToList(getSubjectGenerator().getSampleElements(
55 Collections.sort(values, navigableSet.comparator());
58 if (values.size() >= 1) {
59 a = values.get(0);
60 if (values.size() >= 3) {
61 b = values.get(1);
62 c = values.get(2);
156 values.subList(1, values
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_constants.c111 const float (*values)[4])
143 values[i],
152 values[i][0],
153 values[i][1],
154 values[i][2],
155 values[i][3]);
163 values[j],
171 values[j][0],
172 values[j][1],
173 values[
107 emit_const_range(struct svga_context *svga, unsigned shader, unsigned offset, unsigned count, const float (*values)[4]) argument
[all...]
/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/
H A DBuildResults.java41 double[][] values; field in class:BuildResults
60 * Clean values when several measures has been done for the same build.
63 int length = this.values.length;
65 int vLength = this.values[dim_id].length;
68 IStatus status = new Status(IStatus.WARNING, PerformanceTestPlugin.PLUGIN_ID, "Clean "+vLength+" values for "+this.parent+">"+this.name+" ("+this.count[dim_id]+" measures)..."); //$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$//$NON-NLS-4$ //$NON-NLS-5$
74 this.average[dim_id] += this.values[dim_id][i];
79 double deviation= this.average[dim_id] - this.values[dim_id][i];
83 this.values[dim_id] = null;
86 if (this.values[i] != null) {
90 this.values
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_MapTest2.java46 assertTrue("Should not have values", !map.values().iterator()
60 assertTrue("Should not have values", !map.values().iterator()
/external/ceres-solver/include/ceres/
H A Dproblem.h263 void AddParameterBlock(double* values, int size);
269 void AddParameterBlock(double* values,
287 void RemoveParameterBlock(double* values);
301 void SetParameterBlockConstant(double* values);
304 void SetParameterBlockVariable(double* values);
312 void SetParameterization(double* values,
332 int ParameterBlockSize(const double* values) const;
337 int ParameterBlockLocalSize(const double* values) const;
393 // Note 1: The evaluation will use the values stored in the memory
/external/chromium_org/chrome/browser/resources/gaia_auth_host/
H A Dgaia_auth_host.js126 var populateParams = function(nameList, values) {
127 if (!values)
132 if (values[name])
133 params.push(name + '=' + encodeURIComponent(values[name]));
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
H A Dcontroller.js78 var values, accumulator, operator, operand;
80 values = this.model.handle(input);
81 accumulator = values.accumulator;
82 operator = values.operator;
83 operand = values.operand;
90 this.view.addValues({operator: values.operator});
98 Controller.prototype.updateValues_ = function(values) {
102 var after = !before.accumulator ? values : {};
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dtcmalloc_heap_profiler.py38 for values in properties.itervalues():
40 'getprop ' + values[0])
43 print 'Setting device property ', values[0], values[1]
45 'setprop ' + values[0] + ' ' + str(values[1]))
82 for key, values in env_vars.iteritems():
84 msg += '%s=%s ' % (key, str(values[1]))
/external/guava/guava/src/com/google/common/collect/
H A DForwardingListMultimap.java51 @Override public List<V> replaceValues(K key, Iterable<? extends V> values) { argument
52 return delegate().replaceValues(key, values);
H A DForwardingSetMultimap.java53 @Override public Set<V> replaceValues(K key, Iterable<? extends V> values) { argument
54 return delegate().replaceValues(key, values);
H A DForwardingSortedSetMultimap.java53 K key, Iterable<? extends V> values) {
54 return delegate().replaceValues(key, values);
52 replaceValues( K key, Iterable<? extends V> values) argument
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSResultCode.java130 for (DNSResultCode aCode : DNSResultCode.values()) {
138 for (DNSResultCode aCode : DNSResultCode.values()) {
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
H A DAddFunction.java21 import com.google.clearsilver.jsilver.values.Value;
22 import static com.google.clearsilver.jsilver.values.Value.literalValue;
/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
H A DCrcFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
/external/libyuv/
H A Dsetup_env.bat1 :: This script must not rely on any external tools or PATH values.
/external/smack/src/org/jivesoftware/smackx/
H A DReportedData.java84 // The field is created with all the values of the data form's field
85 List<String> values = new ArrayList<String>();
87 values.add(it.next());
89 fieldList.add(new Field(field.getVariable(), values));
229 * Returns the values of the field whose variable matches the requested variable.
232 * @return the values of the field whose variable matches the requested variable.
256 private List<String> values; field in class:ReportedData.Field
258 public Field(String variable, List<String> values) { argument
260 this.values = values;
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DAnnotationEncodedValue.java49 * Constructs a new <code>AnnotationEncodedValue</code> with the given values. names and values must be the same
53 * @param values An array of the values of the elements on the annotation
55 public AnnotationEncodedValue(TypeIdItem annotationType, StringIdItem[] names, EncodedValue[] values) { argument
56 super(annotationType, names, values);
/external/chromium/chrome/browser/autofill/
H A Dautofill_host.h45 virtual void AutoFillSuggestionsReturned(const std::vector<string16>& values, const std::vector<string16>& labels, const std::vector<string16>& icons, const std::vector<int>& unique_ids) = 0;
/external/chromium/webkit/glue/
H A Didb_bindings.h23 std::vector<WebKit::WebIDBKey>* values);
/external/chromium_org/base/threading/
H A Dthread_local_storage_unittest.cc97 int values[kNumThreads]; local
105 values[index] = kInitialTlsValue;
106 thread_delegates[index] = new ThreadLocalStorageRunner(&values[index]);
119 EXPECT_EQ(values[index], kFinalTlsValue);
/external/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_expanded_state_tracker.cc9 #include "base/values.h"
100 ListValue values;
102 values.Set(values.GetSize(),
106 pref_service_->Set(prefs::kBookmarkEditorExpandedNodes, values);
/external/chromium_org/chrome/browser/extensions/
H A Dstandard_management_policy_provider_unittest.cc7 #include "base/values.h"
33 base::DictionaryValue values; local
34 values.SetString(extension_manifest_keys::kName, "test");
35 values.SetString(extension_manifest_keys::kVersion, "0.1");
38 base::FilePath(), location, values, Extension::NO_FLAGS, &error);
/external/chromium_org/chrome/browser/ui/webui/sync_file_system_internals/
H A Dextension_statuses_handler.h27 base::ListValue* values);
/external/chromium_org/content/browser/resources/media/
H A Dssrc_info_manager.js11 * is the object containing timestamp and values, which is an array of
29 if (report.stats && report.stats.values) {
30 for (var i = 0; i < report.stats.values.length - 1; i += 2) {
31 if (report.stats.values[i] == 'ssrc') {
32 return report.stats.values[i + 1];

Completed in 4406 milliseconds

<<11121314151617181920>>