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

1 2 3 4 5

  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/guestbook/client/
main.py 37 notes = postservice.get_notes(limit=10)
38 self.response.out.write('Last %d posts...' % len(notes.notes))
39 for note in notes.notes:
guestbook.py 42 class Notes(messages.Message):
44 notes = messages.MessageField('guestbook.Note', 1, repeated=True) variable in class:Notes
49 @remote.method('guestbook.GetNotesRequest', 'guestbook.Notes')
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
note-1.d 4 #name: add notes section
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/guestbook/server/
guestbook.py 96 class Notes(messages.Message):
97 notes = messages.MessageField(Note, 1, repeated=True) variable in class:Notes
117 @remote.method(GetNotesRequest, Notes)
126 notes = []
133 notes.append(note)
136 notes.sort(key=lambda note: note.text)
138 return Notes(notes=notes)
  /external/vboot_reference/firmware/lib/include/
vboot_audio_private.h 21 uint32_t checksum; /* crc32 over count & all notes */
22 uint32_t count; /* number of notes */
23 VbDevMusicNote notes[1]; /* gcc allows [0], MSVC doesn't */ member in struct:VbDevMusic
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
Notepadv1.java 66 // Get all of the notes from the database and create the item list
74 SimpleCursorAdapter notes = local
76 setListAdapter(notes);
  /external/google-breakpad/src/common/linux/
file_id_unittest.cc 52 using google_breakpad::synth_elf::Notes;
168 Notes notes(kLittleEndian);
169 notes.AddNote(NT_GNU_BUILD_ID, "GNU", kExpectedIdentifier,
171 elf.AddSection(".note.gnu.build-id", notes, SHT_NOTE);
200 Notes notes(kLittleEndian);
201 notes.AddNote(0, "Linux",
203 notes.AddNote(NT_GNU_BUILD_ID, "GNU", kExpectedIdentifier,
205 int note_idx = elf.AddSection(".note", notes, SHT_NOTE)
    [all...]
synth_elf_unittest.cc 45 using google_breakpad::synth_elf::Notes;
376 Notes notes(kLittleEndian);
378 ASSERT_TRUE(notes.GetContents(&contents));
382 TEST_F(ElfNotesTest, Notes) {
383 Notes notes(kLittleEndian);
384 notes.AddNote(1, "Linux", reinterpret_cast<const uint8_t *>("\x42\x02\0\0"),
386 notes.AddNote(2, "a", reinterpret_cast<const uint8_t *>("foobar"),
404 EXPECT_EQ(kExpectedNotesSize, notes.Size())
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
Notepadv2.java 63 SimpleCursorAdapter notes = local
65 setListAdapter(notes);
  /external/elfutils/libdwfl/
core-file.c 126 dwfl_report_core_segments (Dwfl *dwfl, Elf *elf, size_t phnum, GElf_Phdr *notes)
133 if (notes != NULL)
134 notes->p_type = PT_NULL;
152 if (notes != NULL)
154 *notes = *phdr;
155 notes = NULL;
497 Elf_Data *notes = elf_getdata_rawchunk (elf, local
501 if (likely (notes != NULL))
507 while ((pos = gelf_getnote (notes, pos, &nhdr,
510 && !memcmp (notes->d_buf + name_pos, "CORE", sizeof "CORE")
    [all...]
linux-kernel-modules.c 60 #define KNOTESFILE "/sys/kernel/notes"
61 #define MODNOTESFMT "/sys/module/%s/notes"
470 intuit_kernel_bounds (Dwarf_Addr *start, Dwarf_Addr *end, Dwarf_Addr *notes)
480 *notes = 0;
491 if (*notes == 0 && !strcmp (state.p, "__start_notes\n"))
492 *notes = *end;
649 Dwarf_Addr notes; local
651 zero NOTES will be initialized. Fake the initialization. */
652 asm ("" : "=m" (notes));
653 int result = intuit_kernel_bounds (&start, &end, &notes);
    [all...]
dwfl_segment_report_module.c 461 void *notes; local
463 notes = data;
466 notes = malloc (filesz);
467 if (unlikely (notes == NULL))
472 xlateto.d_buf = notes;
479 const GElf_Nhdr *nh = notes;
480 while ((const void *) nh < (const void *) notes + filesz)
484 if (unlikely ((size_t) ((const void *) notes + filesz
493 build_id_vaddr = note_desc - (const void *) notes + vaddr;
505 if (notes != data
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
Notepadv3.java 63 SimpleCursorAdapter notes = local
65 setListAdapter(notes);
  /system/media/camera/docs/
metadata_template.mako 153 % if value.notes is not None:
154 <notes>${value.notes}</notes>
CameraMetadataEnums.mako 34 % if value.notes:
35 ${value.notes | javadoc(metadata)}\
ndk_camera_metadata_tags.mako 153 % if (val.notes or val.deprecated):
155 % if val.notes:
156 ${val.notes | ndkdoc(metadata)}\
metadata_parser_xml.py 231 notes = value.find('notes')
232 if notes is not None:
233 enum_notes[value_body] = notes.string
  /external/vboot_reference/firmware/lib/
vboot_audio.c 59 * pad out the user's notes to a full 30 seconds. The caller should free it
97 * How many notes will fit in the flash region? One more than you'd
131 VBDEBUG(("VbGetDevMusicNotes: custom notes struct at %p\n", hdr));
141 this_msecs = hdr->notes[i].msec ;
145 hdr->notes[i].frequency >= 100 &&
146 hdr->notes[i].frequency <= 2000)
174 Memcpy(notebuf, hdr->notes, hdr->count * sizeof(VbDevMusicNote));
198 /* No custom notes, use the default. The count is already set. */
199 VBDEBUG(("VbGetDevMusicNotes: using %d default notes\n", count));
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
Notepadv2.java 65 SimpleCursorAdapter notes = local
67 setListAdapter(notes);
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
Notepadv3.java 65 SimpleCursorAdapter notes = local
67 setListAdapter(notes);
  /external/vboot_reference/tests/
vboot_audio_tests.c 27 /* Builtin notes */
54 /* Set correct checksum for custom notes */
57 hdr->count * sizeof(hdr->notes[0]));
71 use_notes = use_hdr->notes;
78 /* Compare two sets of notes */
vboot_api_devmode_tests.c 45 note_event_t notes[MAX_NOTE_EVENTS]; member in struct:__anon26003
314 expected_event = test[i].notes;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
VCardResourceEntry.java 107 List<NoteData> notes = mVCard.getNotes(); local
108 if (notes == null || notes.size() == 0) {
112 for (NoteData note : notes) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
feedPublish.emf.properties 43 releaseNotesURL=http://www.eclipse.org/emf/news/release-notes.php?version=%%version%%
feedPublish.uml2.properties 43 releaseNotesURL=http://www.eclipse.org/modeling/mdt/news/release-notes.php?project=uml2-uml&amp;version=%%version%%

Completed in 407 milliseconds

1 2 3 4 5