HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 451 - 475 of 1097) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/view/inputmethod/
InputMethodInfo.java 2 * Copyright (C) 2007-2008 The Android Open Source Project
217 InputMethodInfo(Parcel source) {
218 mId = source.readString();
219 mSettingsActivityName = source.readString();
220 mIsDefaultResId = source.readInt();
221 mIsAuxIme = source.readInt() == 1;
222 mService = ResolveInfo.CREATOR.createFromParcel(source);
223 source.readTypedList(mSubtypes, InputMethodSubtype.CREATOR);
455 public InputMethodInfo createFromParcel(Parcel source) {
456 return new InputMethodInfo(source);
    [all...]
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerInfo.java 2 * Copyright (C) 2011 The Android Open Source Project
139 public SpellCheckerInfo(Parcel source) {
140 mLabel = source.readInt();
141 mId = source.readString();
142 mSettingsActivityName = source.readString();
143 mService = ResolveInfo.CREATOR.createFromParcel(source);
144 source.readTypedList(mSubtypes, SpellCheckerSubtype.CREATOR);
192 public SpellCheckerInfo createFromParcel(Parcel source) {
193 return new SpellCheckerInfo(source);
  /frameworks/base/core/jni/
android_view_GLES20DisplayList.cpp 2 * Copyright (C) 2012 The Android Open Source Project
204 SkMatrix* source = displayList->getStaticMatrix(); local
205 if (source) {
206 matrix->setConcat(SkMatrix::I(), *source); local
  /frameworks/base/include/androidfw/
InputDevice.h 2 * Copyright (C) 2012 The Android Open Source Project
62 uint32_t source; member in struct:android::InputDeviceInfo::MotionRange
83 const MotionRange* getMotionRange(int32_t axis, uint32_t source) const;
85 void addSource(uint32_t source);
86 void addMotionRange(int32_t axis, uint32_t source,
  /frameworks/base/services/input/
InputListener.h 2 * Copyright (C) 2011 The Android Open Source Project
57 uint32_t source; member in struct:android::NotifyKeyArgs
68 NotifyKeyArgs(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags,
84 uint32_t source; member in struct:android::NotifyMotionArgs
101 NotifyMotionArgs(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags,
  /frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java 2 * Copyright (C) 2008 The Android Open Source Project
136 private void scanForApkFiles(File source, String packageName,
138 if (source.getPath().endsWith(".apk")) {
139 findClassesInApk(source.getPath(), packageName, classNames, subpackageNames);
141 File[] files = source.listFiles();
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 2 * Copyright (C) 2008 The Android Open Source Project
153 ClassPathPackageInfoSource source = PackageInfoSources.forClassPath(classLoader); local
154 ClassPathPackageInfo packageInfo = source.getPackageInfo(packageName);
  /frameworks/compile/mclinker/lib/MC/
SymbolCategory.cpp 5 // This file is distributed under the University of Illinois Open Source
107 Category::Type source = Category::categorize(pSourceInfo); local
110 int distance = target - source;
116 // source and target are not in the same category
117 // find the category of source
120 if (source == current->type)
128 // find the position of source
  /frameworks/wilhelm/src/itf/
IOutputMixExt.c 2 * Copyright (C) 2010 The Android Open Source Project
237 const stereo *source = (const stereo *) track->mReader; local
243 for (j = 0; j < actual; j += sizeof(stereo), ++mixBuffer, ++source) {
244 mixBuffer->left += (short) (source->left * track->mGains[0]);
245 mixBuffer->right += (short) (source->right * track->mGains[1]);
249 for (j = 0; j < actual; j += sizeof(stereo), ++mixBuffer, ++source) {
250 mixBuffer->left += source->left;
251 mixBuffer->right += source->right;
257 for (j = 0; j < actual; j += sizeof(stereo), ++mixBuffer, ++source) {
258 mixBuffer->left = (short) (source->left * track->mGains[0])
    [all...]
  /hardware/samsung_slsi/exynos5/include/
media.h 11 *** source file (e.g. under external/kernel-headers/original/) then
106 struct media_pad_desc source; member in struct:media_link_desc
  /hardware/samsung_slsi/exynos5/libv4l2/
exynos_mc.c 2 * Copyright (C) 2011 The Android Open Source Project
19 * \brief source file for libexynosv4l2
131 struct media_entity *source; local
134 source = exynos_media_get_entity_by_id(media, link->source.entity);
136 if (source == NULL || sink == NULL) {
138 id, i, link->source.entity,
139 link->source.index,
144 fwdlink = __media_entity_add_link(source);
145 fwdlink->source = &source->pads[link->source.index]
675 struct media_pad *source; local
    [all...]
  /hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
media.h 112 struct media_pad_desc source; member in struct:media_link_desc
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderTest.java 2 * Copyright (C) 2007 The Android Open Source Project
527 InputStream source = new ByteArrayInputStream("<a>&foo;</a>".getBytes()); local
539 d = db.parse(source);
548 source = new ByteArrayInputStream("</a>".getBytes());
557 d = db.parse(source);
569 InputStream source = new ByteArrayInputStream("</a>".getBytes()); local
577 db.parse(source);
588 source = new ByteArrayInputStream("</a>".getBytes());
593 db.parse(source);
603 InputStream source = new ByteArrayInputStream("<a>&foo;</a>".getBytes()) local
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
ParserAdapterTest.java 2 * Copyright (C) 2007 The Android Open Source Project
207 InputSource source = new InputSource("foo"); local
210 adapter.parse(source);
218 assertEquals(new Object[] { source }, logger.getArgs());
XMLReaderAdapterTest.java 2 * Copyright (C) 2007 The Android Open Source Project
173 InputSource source = new InputSource("foo"); local
176 adapter.parse(source);
184 assertEquals(new Object[] { source }, logger.getArgs());
  /packages/apps/Browser/src/com/android/browser/
IntentHandler.java 2 * Copyright (C) 2010 The Android Open Source Project
47 // "source" parameter for Google search suggested by the browser
49 // "source" parameter for Google search from unknown source
243 String searchSource = "&source=android-" + GOOGLE_SEARCH_SOURCE_SUGGEST + "&";
245 String source = null; local
248 source = appData.getString(Search.SOURCE);
250 if (TextUtils.isEmpty(source)) {
251 source = GOOGLE_SEARCH_SOURCE_UNKNOWN
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/
RawContactDeltaTests.java 2 * Copyright (C) 2009 The Android Open Source Project
93 final RawContactDelta source = RawContactDelta.fromBefore(before); local
97 final RawContactDelta merged = RawContactDelta.mergeAfter(dest, source);
98 assertEquals("Unexpected change when merging", source, merged);
103 final RawContactDelta source = RawContactDelta.fromBefore(before); local
111 source.addEntry(ValuesDelta.fromAfter(phone));
114 final RawContactDelta merged = RawContactDelta.mergeAfter(dest, source);
115 assertEquals("Unexpected change when merging", source, merged);
121 final RawContactDelta source = RawContactDelta.fromBefore(before); local
124 final ValuesDelta child = source.getEntry(TEST_PHONE_ID)
135 final RawContactDelta source = RawContactDelta.fromBefore(before); local
167 final RawContactDelta source = RawContactDelta.fromBefore(before); local
178 final RawContactDelta source = RawContactDelta.fromBefore(before); local
215 final RawContactDelta source = RawContactDelta.fromBefore(before); local
260 final RawContactDelta source = RawContactDelta.fromBefore(before); local
294 final RawContactDelta source = RawContactDelta.fromBefore(before); local
322 final RawContactDelta source = new RawContactDelta(values); local
343 final RawContactDelta source = new RawContactDelta(values); local
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 2 * Copyright (C) 2010 The Android Open Source Project
179 public static Bitmap rotateBitmap(Bitmap source, int rotation, boolean recycle) {
180 if (rotation == 0) return source;
181 int w = source.getWidth();
182 int h = source.getHeight();
185 Bitmap bitmap = Bitmap.createBitmap(source, 0, 0, w, h, m, true);
186 if (recycle) source.recycle();
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoFallbackEffect.java 2 * Copyright (C) 2010 The Android Open Source Project
40 public Rect source; field in class:PhotoFallbackEffect.Entry
44 public Entry(Path path, Rect source, RawTexture texture) {
46 this.source = source;
97 Rect s = entry.source;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
EventLogLogger.java 2 * Copyright (C) 2009 The Android Open Source Project
118 String source = cursor.getSuggestionSource().getName(); local
122 sb.append(source).append(':').append(type).append(':').append(shortcut);
ShortcutsProvider.java 2 * Copyright (C) 2010 The Android Open Source Project
133 Source source = getCorpora().getSource(sourceComponent.flattenToShortString()); local
134 if (source == null) {
135 Log.w(TAG, "Unknown shortcut source " + sourceComponent);
143 cursor.add(makeSuggestion(source, shortcut));
158 private SuggestionData makeSuggestion(Source source, ContentValues shortcut) {
175 SuggestionData suggestion = new SuggestionData(source);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DefaultSuggestionView.java 2 * Copyright (C) 2009 The Android Open Source Project
20 import com.android.quicksearchbox.Source;
42 * sources, and suggestions under each source.
73 // override default icon (when no other available) with default source icon
75 protected String getFallbackIconId(Source source) {
76 return source.getSourceIconUri().toString();
79 protected Drawable getFallbackIcon(Source source) {
80 return source.getSourceIcon()
190 handleNewDrawable(icon.getNow(), uniqueIconId, source); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
multiway_merge.h 572 int source; local
577 source = lt.get_min_source();
579 *(target++) = *(seqs_begin[source].first++);
582 if (seqs_begin[source].first == seqs_begin[source].second)
585 // Replace from same source.
586 lt.delete_min_insert(*seqs_begin[source].first, false);
648 int source; local
658 source = lt.get_min_source();
661 _GLIBCXX_PARALLEL_ASSERT(0 <= source && source < k)
    [all...]
random_shuffle.h 58 /** @brief Begin iterator of the source. */
59 RandomAccessIterator& source; member in struct:__gnu_parallel::DRandomShufflingGlobalData
84 : source(_source) { }
200 RandomAccessIterator source = sd->source; local
211 value_type(*(source + i + start));
230 std::copy(begin, end, sd->source + global_offset +
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_arcnet.h 112 uint8_t source, /* source ARCnet - filled in automagically */ member in struct:arc_hardware

Completed in 1609 milliseconds

<<11121314151617181920>>