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

1 2 3 4 5 67 8 91011>>

  /external/oprofile/daemon/liblegacy/
opd_sample_files.c 71 struct mangle_values values; local
74 values.flags = 0;
76 values.flags |= MANGLE_KERNEL;
79 values.flags |= MANGLE_TGID | MANGLE_TID;
80 values.tid = image->tid;
81 values.tgid = image->tgid;
85 values.flags |= MANGLE_CPU;
86 values.cpu = cpu_nr;
89 values.event_name = event->name;
90 values.count = event->count
    [all...]
  /external/oprofile/libutil++/
unique_storage.h 3 * Unique storage of values
20 * Store values such that only one copy of the value
38 values.push_back(V());
81 typename id_map::value_type val(value, id_value(values.size()));
85 values.push_back(value);
94 if (id.id < values.size())
95 return values[id.id];
103 /// the contained values
104 stored_values values; member in class:unique_storage
  /external/skia/src/pdf/
SkPDFUtils.cpp 20 SkScalar values[6]; local
21 if (!matrix.asAffine(values)) {
22 SkMatrix::SetAffineIdentity(values);
27 for (size_t i = 0; i < SK_ARRAY_COUNT(values); i++) {
28 result->appendScalar(values[i]);
35 SkScalar values[6]; local
36 if (!matrix.asAffine(values)) {
37 SkMatrix::SetAffineIdentity(values);
39 for (size_t i = 0; i < SK_ARRAY_COUNT(values); i++) {
40 SkPDFScalar::Append(values[i], content)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
ArrayEncodedSubValue.java 43 public final EncodedValue[] values; field in class:ArrayEncodedSubValue
52 values = new EncodedValue[in.readUnsignedLeb128()];
54 for (int i=0; i<values.length; i++) {
55 values[i] = EncodedValue.readEncodedValue(dexFile, in);
60 * Constructs a new <code>ArrayEncodedSubValue</code> with the given values
61 * @param values The array values
63 public ArrayEncodedSubValue(EncodedValue[] values) {
64 this.values = values;
    [all...]
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedListPropertyTearOff.h 75 // Reinitialize the wrapper cache to be equal to the new values size, after the XML DOM changed the list.
82 PropertyType& values() { return m_values; } function in class:WebCore::SVGAnimatedListPropertyTearOff
88 static PassRefPtr<SVGAnimatedListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& values)
91 return adoptRef(new SVGAnimatedListPropertyTearOff<PropertyType>(contextElement, attributeName, values));
95 SVGAnimatedListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& values)
97 , m_values(values)
99 if (!values.isEmpty())
100 m_wrappers.fill(0, values.size());
  /external/webkit/Source/WebKit2/UIProcess/cf/
WebBackForwardListCF.cpp 76 const void* values[4] = { url.get(), title.get(), originalURL.get(), entryData.get() }; local
78 RetainPtr<CFDictionaryRef> entryDictionary(AdoptCF, CFDictionaryCreate(0, keys, values, 4, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
84 const void* values[2] = { currentIndexNumber.get(), entries.get() }; local
86 return CFDictionaryCreate(0, keys, values, 2, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
  /external/webkit/Tools/DumpRenderTree/pthreads/
JavaScriptThreadingPthreads.cpp 83 JSValueRef values[valuesCount]; local
85 values[i] = JSObjectMake(ctx, 0, 0);
  /frameworks/base/core/jni/android/graphics/
MaskFilter.cpp 31 float* values = autoDir.ptr(); local
33 direction[i] = SkFloatToScalar(values[i]);
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridScrollListener.java 43 String values[] = new String[1000]; local
46 values[i] = ((Integer)i).toString();
52 android.R.layout.simple_list_item_1, values));
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon/
RecurrenceSetTest.java 136 ContentValues values = new ContentValues(); local
137 boolean result = RecurrenceSet.populateContentValues(recurrenceComponent, values);
138 Log.d("KS", "values " + values);
144 assertEquals(rrule, values.get(android.provider.CalendarContract.Events.RRULE));
145 assertEquals(rdate, values.get(android.provider.CalendarContract.Events.RDATE));
146 assertEquals(exrule, values.get(android.provider.CalendarContract.Events.EXRULE));
147 assertEquals(exdate, values.get(android.provider.CalendarContract.Events.EXDATE));
148 assertEquals(dtstart, (long) values.getAsLong(CalendarContract.Events.DTSTART));
149 assertEquals(tzid, values.get(android.provider.CalendarContract.Events.EVENT_TIMEZONE))
    [all...]
  /libcore/luni/src/test/java/libcore/io/
MemoryTest.java 25 int[] values = { 3, 7, 31, 127, 8191, 131071, 524287, 2147483647 }; local
26 int[] swappedValues = new int[values.length];
27 for (int i = 0; i < values.length; ++i) {
28 swappedValues[i] = Integer.reverseBytes(values[i]);
33 byte[] array = (byte[]) runtime.newNonMovableArray(byte.class, scale * values.length);
37 Memory.pokeIntArray(ptr, values, 0, values.length, false);
38 assertIntsEqual(values, ptr, false);
42 Memory.pokeIntArray(ptr, values, 0, values.length, true)
61 short[] values = { 0x0001, 0x0020, 0x0300, 0x4000 }; local
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
CameraPicker.java 66 CharSequence[] values = mPreference.getEntryValues(); local
67 index = (index + 1) % values.length;
68 int newCameraId = Integer.parseInt((String) values[index]);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
CameraPicker.java 64 CharSequence[] values = mPreference.getEntryValues(); local
65 index = (index + 1) % values.length;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
phantom.h 25 __u32 values[8]; member in struct:phm_regs
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
phantom.h 25 __u32 values[8]; member in struct:phm_regs
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
phantom.h 25 __u32 values[8]; member in struct:phm_regs
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_GenresTest.java 62 ContentValues values = new ContentValues(); local
63 values.put(Genres.NAME, "POP");
64 Uri uri = mContentResolver.insert(Genres.EXTERNAL_CONTENT_URI, values);
77 values.clear();
78 values.put(Genres.NAME, "ROCK");
79 assertEquals(1, mContentResolver.update(uri, values, null, null));
91 ContentValues values = new ContentValues(); local
92 values.put(Genres.NAME, "POP");
93 Uri uri = mContentResolver.insert(Genres.INTERNAL_CONTENT_URI, values);
99 ContentValues values = Audio1.getInstance().getContentValues(true) local
    [all...]
MediaStore_Audio_Genres_MembersTest.java 88 ContentValues values = new ContentValues(); local
89 values.put(Genres.NAME, Audio1.GENRE);
90 Uri uri = mContentResolver.insert(Genres.EXTERNAL_CONTENT_URI, values);
102 values.clear();
103 values.put(Members.AUDIO_ID, mAudioIdOfJam);
106 assertNotNull(mContentResolver.insert(membersUri, values));
194 values.clear();
195 values.put(Genres.NAME, Audio1.GENRE + "-2");
196 uri = mContentResolver.insert(Genres.EXTERNAL_CONTENT_URI, values);
203 values.clear()
306 ContentValues values = new ContentValues(); local
    [all...]
MediaStore_FilesTest.java 53 // Check that inserting empty values causes an exception.
54 ContentValues values = new ContentValues(); local
56 mResolver.insert(allFilesUri, values);
65 values.put(MediaColumns.DATA, dataPath);
66 Uri fileUri = mResolver.insert(allFilesUri, values);
83 values.put(MediaColumns.DATA, updatedPath);
84 assertEquals(1, mResolver.update(fileUri, values, null, null));
100 values.clear();
103 values.put(MediaColumns.DATA, b + "/testing");
104 fileUri = mResolver.insert(allFilesUri, values);
136 ContentValues values = new ContentValues(); local
    [all...]
MediaStore_Video_MediaTest.java 67 ContentValues values = new ContentValues(); local
68 values.put(Media.ALBUM, "cts");
69 values.put(Media.ARTIST, "cts team");
70 values.put(Media.CATEGORY, "test");
72 values.put(Media.DATE_TAKEN, dateTaken);
73 values.put(Media.DESCRIPTION, "This is a video");
74 values.put(Media.DURATION, 8480);
75 values.put(Media.LANGUAGE, "en");
76 values.put(Media.LATITUDE, 40.689060d);
77 values.put(Media.LONGITUDE, -74.044636d)
218 ContentValues values = new ContentValues(); local
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
PhoneNumberUtilsTest.java 145 ContentValues values = new ContentValues(); local
146 values.put(People.NAME, "CTS test contact");
147 personRecord = cr.insert(People.CONTENT_URI, values);
149 values.clear();
150 values.put(People.Phones.TYPE, People.Phones.TYPE_HOME);
151 values.put(People.Phones.NUMBER, "+18005552871");
152 phoneRecord = cr.insert(phoneUri, values);
  /external/guava/guava-tests/test/com/google/common/cache/
PopulatedCachesTest.java 51 // we use integers as keys; make sure the range covers some values that ARE cached by
223 Collection<Object> values = cache.asMap().values(); local
226 Object[] expectedArray = Maps.newHashMap(cache.asMap()).values().toArray(new Object[0]);
227 ASSERT.that(values).hasContentsAnyOrder(expectedArray);
228 ASSERT.that(asList(values.toArray())).hasContentsAnyOrder(expectedArray);
229 ASSERT.that(asList(values.toArray(new Object[(int) cache.size()])))
232 assertEquals(WARMUP_SIZE, values.size());
235 assertTrue(values.contains(value));
236 assertTrue(values.remove(value))
    [all...]
  /libcore/json/src/main/java/org/json/
JSONArray.java 26 * A dense indexed sequence of values. Values may be any mix of
29 * Values may not be {@link Double#isNaN() NaNs}, {@link Double#isInfinite()
49 private final List<Object> values; field in class:JSONArray
52 * Creates a {@code JSONArray} with no values.
55 values = new ArrayList<Object>();
59 * Creates a new {@code JSONArray} by copying all values from the given
62 * @param copyFrom a collection whose values are of supported types.
63 * Unsupported values are not permitted and will yield an array in an
70 values.addAll(copyFromTyped)
    [all...]
  /libcore/luni/src/main/java/java/lang/
ThreadLocal.java 28 * {@code null} values.
54 Values values = values(currentThread); local
55 if (values != null) {
56 Object[] table = values.table;
57 int index = hash & values.mask;
62 values = initializeValues(currentThread);
65 return (T) values.getAfterMiss(this);
87 Values values = values(currentThread) local
104 Values values = values(currentThread); local
120 Values values(Thread current) { method in class:ThreadLocal
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
StructuredNameEditorView.java 113 ValuesDelta values = getValues(); local
117 values.put(field, mSnapshot.getAsString(field));
122 String displayName = values.getAsString(StructuredName.DISPLAY_NAME);
126 eraseFullName(values);
128 values.put(field, structuredNameMap.get(field));
133 mSnapshot.putAll(values.getCompleteValues());
138 ValuesDelta values = getValues(); local
141 values.put(StructuredName.DISPLAY_NAME,
146 Map<String, String> structuredNameMap = valuesToStructuredNameMap(values);
150 eraseStructuredName(values);
    [all...]

Completed in 1667 milliseconds

1 2 3 4 5 67 8 91011>>