HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 351 - 375 of 1385) sorted by null

<<11121314151617181920>>

  /external/icu4c/i18n/unicode/
sortkey.h 109 * Creates a collation key based on the collation key values.
110 * @param values the collation key values
111 * @param count number of collation key values, including trailing nulls.
114 CollationKey(const uint8_t* values,
163 * Returns a pointer to the collation key values. The storage is owned
166 * @param count the output parameter of number of collation key values,
168 * @return a pointer to the collation key values.
175 * Extracts the collation key values into a new array. The caller owns
177 * @param count the output parameter of number of collation key values,
    [all...]
  /external/proguard/src/proguard/classfile/
ClassPool.java 110 Iterator iterator = classes.values().iterator();
126 Iterator iterator = sortedClasses.values().iterator();
  /external/skia/include/core/
SkWriter32.h 72 void writeMul4(const void* values, size_t size) {
77 memcpy(this->reserve(size), values, size);
  /external/skia/include/utils/
SkInterpolator.h 100 /** Add or replace a key frame, copying the values[] data into the
104 @param values The array of values [elemCount] for this frame. The data
111 bool setKeyFrame(int index, SkMSec time, const SkScalar values[],
114 /** Return the computed values given the specified time. Return whether
115 those values are the result of pinning to either the first
117 nearest key values (kNormal).
119 @param (may be null) where to write the computed values.
121 Result timeToValues(SkMSec time, SkScalar values[] = NULL) const;
  /external/svox/pico/src/com/svox/pico/providers/
SettingsProvider.java 71 public Uri insert(Uri uri, ContentValues values) {
90 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
forin-001.js 103 var values = new Array();
106 values[values.length] = object[properties[properties.length-1]];
126 values[0],
268 var values = new Array();
271 values[values.length] = object[properties[properties.length-1]];
291 values[0],
  /external/webkit/JavaScriptCore/wtf/
TCPageMap.h 113 void* values[LEAF_LENGTH]; member in struct:TCMalloc_PageMap2::Leaf
131 return root_[i1]->values[i2];
138 root_[i1]->values[i2] = v;
173 for (int j = 0; j < LEAF_LENGTH; j += visitor.visit(l->values[j]))
207 void* values[LEAF_LENGTH]; member in struct:TCMalloc_PageMap3::Leaf
234 return reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3];
242 reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3] = v;
288 for (int k = 0; k < LEAF_LENGTH; k += visitor.visit(l->values[k]))
  /external/webkit/WebCore/platform/graphics/filters/
FEComponentTransfer.cpp 100 static void table(unsigned char* values, const ComponentTransferFunction& transferFunction)
113 values[i] = static_cast<unsigned char>(val);
117 static void discrete(unsigned char* values, const ComponentTransferFunction& transferFunction)
128 values[i] = static_cast<unsigned char>(val);
132 static void linear(unsigned char* values, const ComponentTransferFunction& transferFunction)
137 values[i] = static_cast<unsigned char>(val);
141 static void gamma(unsigned char* values, const ComponentTransferFunction& transferFunction)
147 values[i] = static_cast<unsigned char>(val);
  /frameworks/base/core/java/android/net/
NetworkStateTracker.java 107 * @param propertyNames the names of the system properties whose values
108 * give the IP addresses. Properties with no values are skipped.
112 * some of the passed-in names may have empty values.
192 // Setting to default values so we won't be stuck to previous values
197 // Set values in kernel
200 Log.v(TAG, "Setting TCP values: [" + bufferSizes
223 String[] values = bufferSizes.split(","); local
225 if (values.length == 6) {
227 stringToFile(prefix + "rmem_min", values[0])
    [all...]
  /frameworks/base/core/java/android/pim/vcard/
VCardInterpreterCollection.java 97 public void propertyValues(List<String> values) {
99 builder.propertyValues(values);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
Tone.java 23 * Enumeration for representing the tone values for use with PLAY TONE
161 for (Tone e : Tone.values()) {
183 return Tone.values()[in.readInt()];
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
CertificateIssuer.java 98 protected void getValues(Object object, Object[] values) {
99 values[0] = object;
  /packages/apps/Contacts/src/com/android/contacts/
AttachImage.java 121 // TODO: get these values from constants somewhere
177 * @param values the photo values
181 private void insertPhoto(ContentValues values, Uri rawContactDataUri,
198 values.put(Photo.MIMETYPE, Photo.CONTENT_ITEM_TYPE);
200 .withValues(values).build());
209 updatePhoto(values, rawContactDataUri, false);
220 private void updatePhoto(ContentValues values, Uri rawContactDataUri,
225 values.remove(Photo.MIMETYPE);
235 Photo.CONTENT_ITEM_TYPE}).withValues(values).build())
    [all...]
  /packages/apps/HTMLViewer/src/com/android/htmlviewer/
FileContentProvider.java 71 public Uri insert(Uri uri, ContentValues values) {
87 public int update(Uri uri, ContentValues values, String selection,
  /packages/apps/Mms/src/com/android/mms/transaction/
SendTransaction.java 105 ContentValues values = new ContentValues(1); local
106 values.put(Mms.DATE, date);
108 mSendReqURI, values, null, null);
145 values = new ContentValues(2);
147 values.put(Mms.RESPONSE_STATUS, respStatus);
151 mSendReqURI, values, null, null);
157 values.put(Mms.MESSAGE_ID, messageId);
159 mSendReqURI, values, null, null);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
BarrierConsumer.java 25 * A consumer that consumes a fixed number of values. When the expected number of values
26 * has been consumed, further values are rejected.
41 * @param expectedCount The number of values to consume.
52 * @return A list of values, never {@code null}.
62 // Return the values that we've gotten so far
64 ArrayList<A> values = mValues; local
66 return values;
76 // or enough values have already been consumed
  /packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/
SlowSuggestionProvider.java 75 public Uri insert(Uri uri, ContentValues values) {
80 public int update(Uri uri, ContentValues values, String selection,
  /packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/
SpammySuggestionProvider.java 69 public Uri insert(Uri uri, ContentValues values) {
74 public int update(Uri uri, ContentValues values, String selection,
  /packages/apps/Settings/src/com/android/settings/
DisplaySettings.java 84 final CharSequence[] values = screenTimeoutPreference.getEntryValues(); local
87 for (int i = 0; i < values.length; i++) {
88 long timeout = Long.valueOf(values[i].toString());
91 revisedValues.add(values[i]);
94 if (revisedEntries.size() != entries.length || revisedValues.size() != values.length) {
151 CharSequence[] values = mAnimations.getEntryValues(); local
152 for (int i=0; i<values.length; i++) {
153 //Log.i("foo", "Comparing entry "+ values[i] + " to current "
155 if (values[i].equals(value)) {
  /packages/apps/Tag/src/com/android/vcard/
VCardInterpreterCollection.java 97 public void propertyValues(List<String> values) {
99 builder.propertyValues(values);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactAggregatorTest.java 222 ContentValues values = new ContentValues(); local
223 values.put(StructuredName.DISPLAY_NAME, "604 Arizona Ave");
224 values.put(StructuredName.GIVEN_NAME, "604");
225 values.put(StructuredName.MIDDLE_NAME, "Arizona");
226 values.put(StructuredName.FAMILY_NAME, "Ave");
227 insertStructuredName(rawContactId1, values);
230 values.clear();
231 values.put(StructuredName.DISPLAY_NAME, "604 Arizona Ave");
232 values.put(StructuredName.GIVEN_NAME, "604");
233 values.put(StructuredName.FAMILY_NAME, "Arizona Ave")
240 ContentValues values = new ContentValues(); local
416 ContentValues values = new ContentValues(); local
766 ContentValues values = new ContentValues(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ListAttributeDescriptor.java 29 * Describes a text attribute that can contains some predefined values.
39 * If <code>attrInfo</code> is not null and has non-null enum values, these will be
41 * Otherwise values are automatically extracted from the FrameworkResourceManager.
52 * Creates a new {@link ListAttributeDescriptor} which uses the provided values
56 String tooltip, IAttributeInfo attrInfo, String[] values) {
58 mValues = values;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiListAttributeNode.java 46 * Represents an XML attribute which has possible built-in values, and can be modified by
112 String[] values = getPossibleValues(null); local
114 if (values == null) {
116 "FrameworkResourceManager did not provide values yet for %1$s",
119 for (String value : values) {
126 * Get the list values, either from the initial values set in the attribute
148 String[] values = null; local
152 // Get enum values from the descriptor
153 values = ((ListAttributeDescriptor) descriptor).getValues()
    [all...]
  /external/guava/src/com/google/common/collect/
ImmutableMultimap.java 32 * An immutable {@link Multimap}. Does not permit null keys or values.
108 * value orderings, allows duplicate values, and performs better than
155 * Stores a collection of values with the same key in the built multimap.
157 * @throws NullPointerException if {@code key}, {@code values}, or any
158 * element in {@code values} is null. The builder is left in an invalid
161 public Builder<K, V> putAll(K key, Iterable<? extends V> values) {
163 for (V value : values) {
170 * Stores an array of values with the same key in the built multimap.
175 public Builder<K, V> putAll(K key, V... values) {
176 return putAll(key, Arrays.asList(values));
330 Collection<V> values = map.get(key); local
474 private transient ImmutableCollection<V> values; typedefs
481 public ImmutableCollection<V> values() { method
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
PassFailButtons.java 171 ContentValues values = new ContentValues(2); local
172 values.put(TestResultsProvider.COLUMN_TEST_NAME, activity.getClass().getName());
173 values.put(TestResultsProvider.COLUMN_TEST_INFO_SEEN, 1);
176 values, null, null);
178 resolver.insert(TestResultsProvider.RESULTS_CONTENT_URI, values);

Completed in 6842 milliseconds

<<11121314151617181920>>