HomeSort by relevance Sort by last modified time
    Searched refs:sourceId (Results 1 - 25 of 45) sorted by null

1 2

  /frameworks/base/core/java/android/webkit/
ConsoleMessage.java 42 public ConsoleMessage(String message, String sourceId, int lineNumber, MessageLevel msgLevel) {
44 mSourceId = sourceId;
57 public String sourceId() {
WebChromeClient.java 356 * @param sourceID The name of the source file that caused the error.
361 public void onConsoleMessage(String message, int lineNumber, String sourceID) { }
372 consoleMessage.sourceId());
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/audio/
OpenALAudio.java 81 int sourceID = alGenSources();
83 allSources.add(sourceID);
137 int sourceId = idleSources.get(i);
138 int state = alGetSourcei(sourceId, AL_SOURCE_STATE);
143 if (sourceToSoundId.containsKey(sourceId)) {
144 long soundId = sourceToSoundId.get(sourceId);
145 sourceToSoundId.remove(sourceId);
150 sourceToSoundId.put(sourceId, soundId);
151 soundIdToSource.put(soundId, sourceId);
153 alSourceStop(sourceId);
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/audio/
OpenALAudio.java 104 int sourceID = alGenSources();
106 allSources.add(sourceID);
160 int sourceId = idleSources.get(i);
161 int state = alGetSourcei(sourceId, AL_SOURCE_STATE);
166 if (sourceToSoundId.containsKey(sourceId)) {
167 long soundId = sourceToSoundId.get(sourceId);
168 sourceToSoundId.remove(sourceId);
173 sourceToSoundId.put(sourceId, soundId);
174 soundIdToSource.put(soundId, sourceId);
176 alSourceStop(sourceId);
    [all...]
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/ts/
TsParser.java 219 public void onEitParsed(int sourceId, List<EitItem> items) {
220 if (DEBUG) Log.d(TAG, "onEITParsed " + sourceId);
221 EventSourceEntry entry = new EventSourceEntry(mPid, sourceId);
223 handleEvents(sourceId);
227 public void onEttParsed(int sourceId, List<EttItem> descriptions) {
229 Log.d(TAG, String.format("onETTParsed sourceId: %d, descriptions.size(): %d",
230 sourceId, descriptions.size()));
235 mSourceIdToVctItemDescriptionMap.put(sourceId, item.text);
236 VctItem vctItem = mSourceIdToVctItemMap.get(sourceId);
249 EventSourceEntry entry = new EventSourceEntry(mPid, sourceId);
    [all...]
SectionParser.java 304 void onEitParsed(int sourceId, List<EitItem> items);
305 void onEttParsed(int sourceId, List<EttItem> descriptions);
335 int sourceId = mParsedEttItems.keyAt(i);
337 mListener.onEttParsed(sourceId, descriptions);
535 int sourceId = ((data[pos + 28] & 0xff) << 8) | (data[pos + 29] & 0xff);
566 programNumber, majorNumber, minorNumber, sourceId));
588 int sourceId = ((data[3] & 0xff) << 8) | (data[4] & 0xff);
643 mListener.onEitParsed(sourceId, results);
657 int sourceId = ((data[9] & 0xff) << 8) | (data[10] & 0xff);
660 List<EttItem> ettItems = mParsedEttItems.get(sourceId);
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 66 String accountName, long rawContactId, String sourceId,
77 if (sourceId == null) {
83 if (appendEscapedSourceId(lookupKey, sourceId)) {
89 private static boolean appendEscapedSourceId(StringBuilder sb, String sourceId) {
93 int index = sourceId.indexOf('.', start);
95 sb.append(sourceId, start, sourceId.length());
100 sb.append(sourceId, start, index);
DataRowHandlerForGroupMembership.java 167 final String sourceId = values.getAsString(GroupMembership.GROUP_SOURCE_ID);
168 final long groupId = getOrMakeGroup(db, rawContactId, sourceId,
176 * Returns the group id of the group with sourceId and the same account as rawContactId.
181 * @param sourceId the source ID of the group to query or create
188 private long getOrMakeGroup(SQLiteDatabase db, long rawContactId, String sourceId,
209 ArrayList<GroupIdCacheEntry> entries = mGroupIdCache.get(sourceId);
212 mGroupIdCache.put(sourceId, entries);
225 entry.sourceId = sourceId;
228 // look up the group that contains this sourceId and has the same account as the contac
    [all...]
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSSound.java 63 if (soundSource.sourceId() == -1) return -1;
64 streamIds.insert(0, soundSource.sourceId());
65 return soundSource.sourceId();
160 if (source.sourceId() == soundId) return source;
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityCache.java 132 final long sourceId = event.getSourceNodeId();
135 clearSubTreeLocked(windowId, sourceId);
137 refreshCachedNodeLocked(windowId, sourceId);
158 private void refreshCachedNodeLocked(int windowId, long sourceId) {
167 AccessibilityNodeInfo cachedInfo = nodes.get(sourceId);
177 clearSubTreeLocked(windowId, sourceId);
268 final long sourceId = info.getSourceNodeId();
269 AccessibilityNodeInfo oldInfo = nodes.get(sourceId);
298 nodes.put(sourceId, clone);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CommandDetails.java 94 public int sourceId;
ValueParser.java 71 devIds.sourceId = rawValue[valueIndex] & 0xff;
CatService.java 696 private void eventDownload(int event, int sourceId, int destinationId,
718 buf.write(sourceId); // source device id
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ProfileAggregator.java 54 String accountName, long rawContactId, String sourceId, String displayName) {
AbstractContactAggregator.java     [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprofWriter.java 240 int sourceId = writeString(stackFrame.getFileName());
247 writeId(sourceId);
  /frameworks/base/core/java/android/security/net/config/
XmlConfigSource.java 189 int sourceId = parser.getAttributeResourceValue(null, "src", -1);
195 if (sourceId != -1) {
196 // TODO: Cache ResourceCertificateSources by sourceId
197 source = new ResourceCertificateSource(sourceId, mContext);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 189 protected long createGroup(Account account, String sourceId, String title) {
190 return createGroup(account, sourceId, title, 1, false, false);
193 protected long createGroup(Account account, String sourceId, String title, int visible) {
194 return createGroup(account, sourceId, title, visible, false, false);
202 protected long createGroup(Account account, String sourceId, String title,
205 values.put(Groups.SOURCE_ID, sourceId);
392 protected Uri insertGroupMembership(long rawContactId, String sourceId) {
396 values.put(GroupMembership.GROUP_SOURCE_ID, sourceId);
687 protected long assertSingleGroup(Long rowId, Account account, String sourceId, String title) {
691 long actualRowId = assertGroup(c, rowId, account, sourceId, title)
    [all...]
  /external/webrtc/webrtc/modules/audio_device/win/
audio_mixer_manager_win.cc 146 UINT sourceId(0);
158 for (sourceId = 0; sourceId < destLine.cConnections; sourceId++)
160 GetSourceLineInfo(mixId, destId, sourceId, sourceLine, true);
319 for (DWORD sourceId = 0; sourceId < destLine.cConnections; sourceId++)
321 GetSourceLineInfo(mixId, destId, sourceId, sourceLine, false);
327 WideToUTF8(sourceLine.szName), sourceId);
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
EmailServiceStub.java 164 long sourceId = Utility.getFirstRowLong(mContext, Body.CONTENT_URI,
168 if (sourceId != -1) {
170 EmailContent.Message.restoreMessageWithId(mContext, sourceId);
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/data/
PsipData.java 168 int programNumber, int majorChannelNumber, int minorChannelNumber, int sourceId) {
176 mSourceId = sourceId;
214 + "ProgramNumber:%d %d-%d SourceId: %x",
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/objectal/
ALSource.java 399 @Selector("sourceId")
400 public native int sourceId();
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationViewFragment.java 425 consoleMessage.sourceId(), consoleMessage.lineNumber(),
429 consoleMessage.sourceId(), consoleMessage.lineNumber(),
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 802 milliseconds

1 2