HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 151 - 175 of 4504) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/sqlite/src/test/
laststmtchanges.test 11 # Tests to make sure that values returned by changes() and total_changes()
35 insert into t0 values (1);
36 insert into t0 values (1);
37 insert into t0 values (2);
38 insert into t0 values (2);
39 insert into t0 values (1);
40 insert into t0 values (1);
41 insert into t0 values (1);
42 insert into t0 values (2);
109 insert into t2 values (NULL, changes(), NULL)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
ArrayData.java 38 /** {@code non-null;} initial values to be filled into an array */
39 private final ArrayList<Constant> values; field in class:ArrayData
57 * @param values {@code non-null;} initial values to be filled into an array
60 ArrayList<Constant> values,
68 if (values == null) {
69 throw new NullPointerException("values == null");
72 int sz = values.size();
75 throw new IllegalArgumentException("Illegal number of init values");
96 this.values = values
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentValues.java 40 private HashMap<String, Object> values = new HashMap<String, Object>(); field in class:ShadowContentValues
43 values = new HashMap<String, Object>(shadowOf(from).values);
48 values.put(key, value);
53 values.putAll(shadowOf(other).values);
58 values.put(key, value);
63 values.put(key, value);
68 values.put(key, value);
73 values.put(key, value)
    [all...]
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/
hal_outputs.c 50 * @param[out] values Acceleration in m/s^2 includes gravity. So while not in motion, it
57 int inv_get_sensor_type_accelerometer(float *values, int8_t *accuracy,
66 values[0] = accel[0] * ACCEL_CONVERSION;
67 values[1] = accel[1] * ACCEL_CONVERSION;
68 values[2] = accel[2] * ACCEL_CONVERSION;
77 * @param[out] values Linear Acceleration in body frame, length 3, (m/s^2). May show
84 int inv_get_sensor_type_linear_acceleration(float *values, int8_t *accuracy,
94 values[0] = accel[0] * ACCEL_CONVERSION;
95 values[1] = accel[1] * ACCEL_CONVERSION;
96 values[2] = accel[2] * ACCEL_CONVERSION;
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Video_MediaTest.java 80 ContentValues values = new ContentValues(); local
81 values.put(Media.ALBUM, "cts");
82 values.put(Media.ARTIST, "cts team");
83 values.put(Media.CATEGORY, "test");
85 values.put(Media.DATE_TAKEN, dateTaken);
86 values.put(Media.DESCRIPTION, "This is a video");
87 values.put(Media.DURATION, 8480);
88 values.put(Media.LANGUAGE, "en");
89 values.put(Media.LATITUDE, 40.689060d);
90 values.put(Media.LONGITUDE, -74.044636d)
232 ContentValues values = new ContentValues(); local
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 261 int[] values = {0, 0, 0, SmsConstants.ENCODING_7BIT, 0, 0}; local
279 values[0] = sTestMsgCounts[i];
280 values[1] = len;
281 values[2] = sSeptetUnitsRemaining[i];
283 callGsmLengthMethods(testStr, false, values);
284 callGsmLengthMethods(testStr, true, values);
285 callCdmaLengthMethods(testStr, false, values);
286 callCdmaLengthMethods(testStr, true, values);
293 int[] values = {0, 0, 0, SmsConstants.ENCODING_16BIT, 0, 0}; local
313 values[0] = sTestMsgCounts[i]
555 int[] values = android.telephony.gsm.SmsMessage.calculateLength(msgBody, use7bitOnly); local
585 int[] values = android.telephony.SmsMessage.calculateLength(msgBody, use7bitOnly); local
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 162 ContentValues values = new ContentValues(); local
163 values.put(Groups.NOTES, "New notes");
164 mResolver.update(updateUri, values, null, null);
173 ContentValues values = new ContentValues(); local
174 values.put(Groups.DIRTY, 0);
175 values.put(Groups.NOTES, "other notes");
176 assertEquals(1, mResolver.update(uri, values, null, null));
209 ContentValues values = new ContentValues(); local
210 values.put(Groups.TITLE, "title2");
211 mResolver.update(uri, values, null, null)
253 final ContentValues values = new ContentValues(); local
302 final ContentValues values = new ContentValues(); local
315 final ContentValues values = new ContentValues(); local
345 final ContentValues values = new ContentValues(); local
    [all...]
  /cts/tests/tests/permission2/src/android/permission2/cts/
WriteSocialStreamPermissionTest.java 39 ContentValues values = new ContentValues(); local
42 RawContacts.StreamItems.CONTENT_DIRECTORY), values); local
51 ContentValues values = new ContentValues(); local
52 mResolver.insert(StreamItems.CONTENT_URI, values);
  /external/ceres-solver/include/ceres/
crs_matrix.h 48 // rows, cols and values.
51 // values array. For each row i:
56 // values[rows[i]] .. values[rows[i + 1] - 1] are the values of the
59 // cols and values contain as many entries as there are non-zeros in
74 // values = [10, 4, 2, -3, 2, 1, 2]
78 vector<double> values; member in struct:ceres::CRSMatrix
  /external/chromium/chrome/browser/tabs/
pinned_tab_test_utils.h 21 const std::vector<BrowserInit::LaunchWithProfile::Tab>& values);
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedTransformListPropertyTearOff.h 45 static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values)
48 return adoptRef(new SVGAnimatedTransformListPropertyTearOff(contextElement, attributeName, animatedPropertyType, values));
52 SVGAnimatedTransformListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values)
53 : SVGAnimatedListPropertyTearOff<SVGTransformList>(contextElement, attributeName, animatedPropertyType, values)
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-gobject-enums.cc.tmpl 55 static const G@Type@Value values[] = {
66 g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
  /external/chromium_org/tools/telemetry/telemetry/page/
block_page_measurement_results.py 15 values = self.page_specific_values_for_current_page
16 if not values:
21 values[0].page.display_name]
23 for value in sorted(values, key=lambda x: x.name):
  /external/clang/test/CodeGenCXX/
variadic-templates.cpp 15 int values[sizeof...(T)+1] = { T::value... }; local
  /external/icu4c/tools/toolutil/
denseranges.h 25 * @param values Sorted array of signed-integer values.
26 * @param length Number of values.
35 uprv_makeDenseRanges(const int32_t values[], int32_t length,
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
Function.java 19 import com.google.clearsilver.jsilver.values.Value;
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
NameFunction.java 21 import com.google.clearsilver.jsilver.values.Value;
22 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
23 import static com.google.clearsilver.jsilver.values.Value.literalValue;
24 import com.google.clearsilver.jsilver.values.VariableValue;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/database/
ContactUpdateUtils.java 38 // Update the primary values in the data record.
39 ContentValues values = new ContentValues(2); local
40 values.put(ContactsContract.Data.IS_SUPER_PRIMARY, 1);
41 values.put(ContactsContract.Data.IS_PRIMARY, 1);
45 values, null, null); local
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogInsertionHelper.java 22 * Helper class to be used when inserting values in the call log.
25 /** Adds to the content values those key/value pairs which needs to added automatically. */
26 public void addComputedValues(ContentValues values);
  /packages/services/Telephony/src/com/android/phone/
ClearMissedCallsService.java 48 ContentValues values = new ContentValues(); local
49 values.put(Calls.NEW, 0);
50 values.put(Calls.IS_READ, 1);
56 getContentResolver().update(Calls.CONTENT_URI, values, where.toString(),
  /external/ceres-solver/internal/ceres/
compressed_col_sparse_matrix_utils.h 73 const double* values,
76 rhs_and_solution[c] /= values[cols[c + 1] - 1];
79 const double v = values[idx];
94 const double* values,
99 const double v = values[idx];
102 rhs_and_solution[c] = rhs_and_solution[c] / values[cols[c + 1] - 1];
120 const double* values,
124 solution[rhs_nonzero_index] = 1.0 / values[cols[rhs_nonzero_index + 1] - 1];
130 const double v = values[idx];
133 solution[c] = solution[c] / values[cols[c + 1] - 1]
    [all...]
  /external/chromium_org/chromeos/network/onc/
onc_merger.cc 13 #include "base/values.h"
73 // MergeListOfValues is called with the list of values that are located at
105 std::vector<const base::Value*> values; local
111 values.push_back(value);
113 merged_value = MergeListOfValues(key, values);
124 // This function is called by MergeDictionaries for each list of values that
126 // values is the same as of the given dictionaries |dicts|. If a dictionary
130 const std::vector<const base::Value*>& values) = 0;
189 // This function is called by MergeDictionaries for each list of values that
193 const ValueParams& values) = 0
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
StructArrayTest.java 30 int[] values = {0, 1, 2, 3, 4}; local
31 S.set_i(0, values, true);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableStrokeDasharrayList.h 56 AnimatableStrokeDasharrayList(Vector<RefPtr<AnimatableValue> >& values)
57 : AnimatableRepeatable(values)
  /external/chromium_org/tools/telemetry/telemetry/value/
scalar.py 39 # Buildbot's print_perf_results method likes to get lists for all values,
50 def MergeLikeValuesFromSamePage(cls, values):
51 assert len(values) > 0
52 v0 = values[0]
55 [v.value for v in values],
59 def MergeLikeValuesFromDifferentPages(cls, values,
61 assert len(values) > 0
62 v0 = values[0]
69 [v.value for v in values],

Completed in 1817 milliseconds

1 2 3 4 5 67 8 91011>>