HomeSort by relevance Sort by last modified time
    Searched defs:note (Results 26 - 50 of 62) sorted by null

12 3

  /external/sonivox/arm-hybrid-22k/lib_src/
eas_rtttl.c 48 /* length of 32nd note in 1/256ths of a msec for 63 BPM tempo */
57 /* note used for rest */
89 /* lookup table for note values */
267 EAS_U8 note; local
284 /* check for end of note */
285 if (pData->note)
287 /* stop the note */
288 VMStopNote(pEASData->pVoiceMgr, pData->pSynth, RTTTL_CHANNEL, pData->note, 0);
289 pData->note = 0;
302 note = 0
    [all...]
eas_synth.h 279 EAS_U16 age; /* large value means old note */
284 EAS_U8 note; /* 12 <= key number <= 108 */ member in struct:s_synth_voice_tag
  /external/sonivox/arm-wt-22k/lib_src/
eas_rtttl.c 48 /* length of 32nd note in 1/256ths of a msec for 63 BPM tempo */
57 /* note used for rest */
89 /* lookup table for note values */
267 EAS_U8 note; local
284 /* check for end of note */
285 if (pData->note)
287 /* stop the note */
288 VMStopNote(pEASData->pVoiceMgr, pData->pSynth, RTTTL_CHANNEL, pData->note, 0);
289 pData->note = 0;
302 note = 0
    [all...]
eas_synth.h 279 EAS_U16 age; /* large value means old note */
284 EAS_U8 note; /* 12 <= key number <= 108 */ member in struct:s_synth_voice_tag
  /external/valgrind/main/coregrind/m_coredump/
coredump-elf.c 139 struct note { struct
140 struct note *next;
141 ESZ(Nhdr) note;
145 static UInt note_size(const struct note *n)
148 + VG_ROUNDUP(n->note.n_descsz, 4);
152 static void add_note(struct note **list, const Char *name, UInt type,
156 Int notelen = sizeof(struct note) +
159 struct note *n = VG_(arena_malloc)(VG_AR_CORE, "coredump-elf.an.1", notelen);
166 n->note.n_type = type;
167 n->note.n_namesz = namelen
507 struct note *notelist, *note; local
    [all...]
  /development/samples/NotePad/src/com/example/android/notepad/
NoteEditor.java 42 * This Activity handles "editing" a note, where editing is responding to
43 * {@link Intent#ACTION_VIEW} (request to view data), edit a note
44 * {@link Intent#ACTION_EDIT}, create a note {@link Intent#ACTION_INSERT}, or
45 * create a new note from the current contents of the clipboard {@link Intent#ACTION_PASTE}.
47 * NOTE: Notice that the provider operations in this Activity are taking place on the UI thread.
57 * Creates a projection that returns the note ID and the note contents.
166 // Sets the Activity state to INSERT, gets the general note URI, and inserts an
172 * If the attempt to insert the new note fails, shuts down this Activity. The
179 Log.e(TAG, "Failed to insert new note into " + getIntent().getData())
290 String note = mCursor.getString(colNoteIndex); local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsUtils.java 125 provider.note = getXmlAttribute(context, xml, "note");
227 public String note; field in class:AccountSettingsUtils.Provider
AccountSetupBasics.java 88 * Note: For accounts that require the full email address in the login, encode the @ as %40.
89 * Note: Exchange accounts that require device security policies cannot be created automatically.
110 // NOTE: If you change this value, confirm that the new interval exists in arrays.xml
529 if (mProvider.note != null) {
531 NoteDialogFragment.newInstance(mProvider.note);
701 * Dialog fragment to show "setup note" dialog
707 private final static String BUNDLE_KEY_NOTE = "NoteDialogFragment.Note";
712 public static NoteDialogFragment newInstance(String note) {
715 b.putString(BUNDLE_KEY_NOTE, note);
723 final String note = getArguments().getString(BUNDLE_KEY_NOTE) local
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 63 Notification note = new Notification(this, R.drawable.rss_icon, "RSS Service", local
65 mNM.notify(NOTIFY_ID, note);
  /development/samples/NotePad/tests/src/com/example/android/notepad/
NotePadProviderTest.java 40 * This class tests the content provider for the Note Pad sample application.
59 new NoteInfo("Note0", "This is note 0"),
60 new NoteInfo("Note1", "This is note 1"),
61 new NoteInfo("Note2", "This is note 2"),
62 new NoteInfo("Note3", "This is note 3"),
63 new NoteInfo("Note4", "This is note 4"),
64 new NoteInfo("Note5", "This is note 5"),
65 new NoteInfo("Note6", "This is note 6"),
66 new NoteInfo("Note7", "This is note 7"),
67 new NoteInfo("Note8", "This is note 8")
620 NoteInfo note = new NoteInfo( local
796 String note; field in class:NotePadProviderTest.NoteInfo
    [all...]
  /external/chromium/webkit/glue/
webmediaplayer_impl.cc 907 // Note: stopping the pipeline might block for a long time.
909 media::PipelineStatusNotification note; local
910 pipeline_->Stop(note.Callback());
911 note.Wait();
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
emux_synth.h 123 struct timer_list tlist; /* for pending note-offs */
171 #define SNDRV_EMUX_ST_ON 0x01 /* Note on */
172 #define SNDRV_EMUX_ST_RELEASED (0x02|SNDRV_EMUX_ST_ON) /* Note released */
173 #define SNDRV_EMUX_ST_SUSTAINED (0x04|SNDRV_EMUX_ST_ON) /* Note sustained */
175 #define SNDRV_EMUX_ST_PENDING (0x10|SNDRV_EMUX_ST_ON) /* Note will be released */
179 unsigned char note; /* Note currently assigned to this voice */ member in struct:snd_emux_voice
181 unsigned char velocity; /* Velocity of current note */
183 struct snd_sf_zone *zone; /* Zone assigned to this note */
185 struct snd_midi_channel *chan; /* Midi channel for this note */
    [all...]
seq_midi_emul.h 50 unsigned char note[128]; /* Current status for all notes */ member in struct:snd_midi_channel
83 void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
84 void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release note */
85 void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
86 void (*note_terminate)(void *private_data, int note, struct snd_midi_channel *chan); /* terminate note immediately */
167 /* MIDI note state */
opl3.h 253 unsigned char note; /* Note currently assigned to this voice */ member in struct:snd_opl3_voice
255 unsigned long note_off; /* note-off time */
256 int note_off_check; /* check note-off time */
260 struct snd_midi_channel *chan; /* Midi channel for this note */
311 struct timer_list tlist; /* timer for note-offs and effects */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
emux_synth.h 123 struct timer_list tlist; /* for pending note-offs */
171 #define SNDRV_EMUX_ST_ON 0x01 /* Note on */
172 #define SNDRV_EMUX_ST_RELEASED (0x02|SNDRV_EMUX_ST_ON) /* Note released */
173 #define SNDRV_EMUX_ST_SUSTAINED (0x04|SNDRV_EMUX_ST_ON) /* Note sustained */
175 #define SNDRV_EMUX_ST_PENDING (0x10|SNDRV_EMUX_ST_ON) /* Note will be released */
179 unsigned char note; /* Note currently assigned to this voice */ member in struct:snd_emux_voice
181 unsigned char velocity; /* Velocity of current note */
183 struct snd_sf_zone *zone; /* Zone assigned to this note */
185 struct snd_midi_channel *chan; /* Midi channel for this note */
    [all...]
seq_midi_emul.h 50 unsigned char note[128]; /* Current status for all notes */ member in struct:snd_midi_channel
83 void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
84 void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release note */
85 void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
86 void (*note_terminate)(void *private_data, int note, struct snd_midi_channel *chan); /* terminate note immediately */
167 /* MIDI note state */
opl3.h 253 unsigned char note; /* Note currently assigned to this voice */ member in struct:snd_opl3_voice
255 unsigned long note_off; /* note-off time */
256 int note_off_check; /* check note-off time */
260 struct snd_midi_channel *chan; /* Midi channel for this note */
311 struct timer_list tlist; /* timer for note-offs and effects */
  /external/icu4c/tools/genrb/
wrtxml.cpp 417 UChar* note = NULL; local
426 note = (UChar*) uprv_malloc(U_SIZEOF_UCHAR * capacity);
430 uprv_free(note);
434 noteLen = getAt(src->fChars,src->fLength, &note, capacity, i, UPC_NOTE, status);
436 uprv_free(note);
441 print(note, noteLen,"<note>", "</note>", status);
444 uprv_free(note);
    [all...]
  /external/sonivox/arm-fm-22k/host_src/
eas_types.h 236 EAS_U8 note; member in struct:s_ext_audio_event_tag
  /external/sonivox/arm-fm-22k/lib_src/
eas_synth.h 279 EAS_U16 age; /* large value means old note */
284 EAS_U8 note; /* 12 <= key number <= 108 */ member in struct:s_synth_voice_tag
  /external/sonivox/arm-hybrid-22k/host_src/
eas_types.h 236 EAS_U8 note; member in struct:s_ext_audio_event_tag
  /external/sonivox/arm-wt-22k/host_src/
eas_types.h 241 EAS_U8 note; member in struct:s_ext_audio_event_tag
  /dalvik/vm/compiler/codegen/arm/
CodegenDriver.cpp 396 /* NOTE: marking card based on object head */
504 //NOTE: max live temps(4) here.
628 /* NOTE: marking card here based on object head */
707 /* NOTE - result is in r2/r3 instead of r0/r1 */
815 /* NOTE: returns in r1 */
4346 const char *note; local
    [all...]
  /dalvik/vm/compiler/codegen/mips/
CodegenDriver.cpp 462 /* NOTE: marking card based on object head */
571 //NOTE: max live temps(4) here.
689 /* NOTE: marking card here based on object head */
4469 const char *note; local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readelf.c 244 the size be 1. Note that sym->st_size has type UWord,
924 ElfXX_Nhdr* note = (ElfXX_Nhdr*)(image + offset) local
958 ElfXX_Nhdr* note = (ElfXX_Nhdr*)(image + offset); local
    [all...]

Completed in 2260 milliseconds

12 3