HomeSort by relevance Sort by last modified time
    Searched defs:note (Results 1 - 25 of 39) sorted by null

1 2

  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NoteEdit.java 69 Cursor note = mDbHelper.fetchNote(mRowId); local
70 startManagingCursor(note);
71 mTitleText.setText(note.getString(
72 note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE)));
73 mBodyText.setText(note.getString(
74 note.getColumnIndexOrThrow(NotesDbAdapter.KEY_BODY)));
  /external/sonivox/arm-fm-22k/lib_src/
eas_rtttldata.h 56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
57 EAS_I32 restTicks; /* ticks to rest after current note */
63 EAS_U8 note; /* MIDI note number */ member in struct:__anon7399
65 EAS_I8 duration; /* default note duration */
eas_imelodydata.h 54 EAS_I32 tickBase; /* basline length of 32nd note in 256th of a msec */
55 EAS_I32 tick; /* actual length of 32nd note in 256th of a msec */
56 EAS_I32 restTicks; /* ticks to rest after current note */
66 EAS_U8 note; /* MIDI note number */ member in struct:__anon7386
eas_otadata.h 62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
63 EAS_U32 restTicks; /* ticks to rest after current note */
71 EAS_U8 note; /* MIDI note number */ member in struct:__anon7389
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...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_rtttldata.h 56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
57 EAS_I32 restTicks; /* ticks to rest after current note */
63 EAS_U8 note; /* MIDI note number */ member in struct:__anon7449
65 EAS_I8 duration; /* default note duration */
eas_imelodydata.h 54 EAS_I32 tickBase; /* basline length of 32nd note in 256th of a msec */
55 EAS_I32 tick; /* actual length of 32nd note in 256th of a msec */
56 EAS_I32 restTicks; /* ticks to rest after current note */
66 EAS_U8 note; /* MIDI note number */ member in struct:__anon7436
eas_otadata.h 62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
63 EAS_U32 restTicks; /* ticks to rest after current note */
71 EAS_U8 note; /* MIDI note number */ member in struct:__anon7439
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...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_rtttldata.h 56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
57 EAS_I32 restTicks; /* ticks to rest after current note */
63 EAS_U8 note; /* MIDI note number */ member in struct:__anon7501
65 EAS_I8 duration; /* default note duration */
eas_tcdata.h 51 EAS_I32 length; /* length of current note */
55 EAS_I8 note; /* current note */ member in struct:__anon7504
56 EAS_I8 repeatCount; /* note repeat counter */
eas_imelodydata.h 54 EAS_I32 tickBase; /* basline length of 32nd note in 256th of a msec */
55 EAS_I32 tick; /* actual length of 32nd note in 256th of a msec */
56 EAS_I32 restTicks; /* ticks to rest after current note */
67 EAS_U8 note; /* MIDI note number */ member in struct:__anon7484
eas_otadata.h 62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
63 EAS_U32 restTicks; /* ticks to rest after current note */
71 EAS_U8 note; /* MIDI note number */ member in struct:__anon7491
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...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyKeyEvent.java 112 String note; local
114 note = "ACTION_UP";
116 note = "ACTION_DOWN";
120 System.out.println(":SendKey (" + note + "): "
MonkeyMotionEvent.java 135 String note; local
138 note = "DOWN";
140 note = "UP";
142 note = "MOVE";
144 System.out.println(":Sending Pointer ACTION_" + note +
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsUtils.java 104 provider.note = getXmlAttribute(context, xml, "note");
158 public String note; field in class:AccountSettingsUtils.Provider
  /external/proguard/src/proguard/
Configuration.java 294 public List note = null; field in class:Configuration
  /development/samples/NotePad/src/com/example/android/notepad/
NoteEditor.java 42 * A generic activity for editing a note in a database. This can be used
43 * either to simply view a note {@link Intent#ACTION_VIEW}, view and edit a note
44 * {@link Intent#ACTION_EDIT}, or create a new note {@link Intent#ACTION_INSERT}.
50 * Standard projection for the interesting columns of a normal note.
54 NoteColumns.NOTE, // 1
57 /** The index of the note column */
126 // If we were unable to create a new note, then just finish
130 Log.e(TAG, "Failed to insert new note into " + getIntent().getData());
149 // The text view for our note, identified by its ID in the XML file
188 String note = mCursor.getString(COLUMN_INDEX_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);
  /cts/tools/test-progress/src/
TestCoverageDoclet.java 362 String note = ""; local
364 note += "<br/>targetClass annotation missing!<br/>";
380 note+="<br/><b>E:</b> "+error;
389 printer.printRow(man==mto && note.equals("")? 2:0, classDoc.qualifiedName(), ""+ast.cntMethodWithAnnot, ""+ast.cntAllMethods,
390 ""+perc+ note);
  /device/samsung/crespo/alsa-lib/include/
seq_event.h 50 /** note on and off with duration; event data type = #snd_seq_ev_note_t */
52 /** note on; event data type = #snd_seq_ev_note_t */
54 /** note off; event data type = #snd_seq_ev_note_t */
209 * NOTE: only 8 bits available!
229 /** Note event */
232 unsigned char note; /**< note */ member in struct:snd_seq_ev_note
234 unsigned char off_velocity; /**< note-off velocity; only for #SND_SEQ_EVENT_NOTE */
235 unsigned int duration; /**< duration until note-off; only for #SND_SEQ_EVENT_NOTE */
259 void *ptr; /**< pointer to data (note: can be 64-bit) *
302 snd_seq_ev_note_t note; \/**< note information *\/ member in union:snd_seq_event::__anon1382
    [all...]
  /external/chromium/third_party/icu/source/tools/genrb/
wrtxml.cpp 415 UChar* note = NULL; local
424 note = (UChar*) uprv_malloc(U_SIZEOF_UCHAR * capacity);
428 uprv_free(note);
432 noteLen = getAt(src->fChars,src->fLength, &note, capacity, i, UPC_NOTE, status);
434 uprv_free(note);
439 print(note, noteLen,"<note>", "</note>", status);
442 uprv_free(note);
    [all...]
  /external/icu4c/tools/genrb/
wrtxml.cpp 415 UChar* note = NULL; local
424 note = (UChar*) uprv_malloc(U_SIZEOF_UCHAR * capacity);
428 uprv_free(note);
432 noteLen = getAt(src->fChars,src->fLength, &note, capacity, i, UPC_NOTE, status);
434 uprv_free(note);
439 print(note, noteLen,"<note>", "</note>", status);
442 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

Completed in 425 milliseconds

1 2