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

1 2 3

  /external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/
AbstractFragmentsActivity.java 19 private final List<Page> notes; field in class:AbstractFragmentsActivity
23 protected AbstractFragmentsActivity(int title, int layout, List<Page> notes) {
26 this.notes = notes;
72 if (page > notes.size() - 1) {
77 actionBar.setSubtitle(notes.get(page).getSubtitle());
AbstractPagesActivity.java 21 private final List<Page> notes; field in class:AbstractPagesActivity
23 protected AbstractPagesActivity(int title, int layout, List<Page> notes) {
26 this.notes = notes;
78 if (page > notes.size() - 1) {
83 actionBar.setSubtitle(notes.get(page).getSubtitle());
85 ((TextView)findViewById(R.id.note)).setText(notes.get(page).getText());
86 findViewById(R.id.next).setVisibility(page >= notes.size() - 1 ? View.INVISIBLE : View.VISIBLE);
  /external/libevent/test/
regress.rpc 21 array string notes = 4;
  /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
  /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...]
  /external/dynamic_depth/includes/dynamic_depth/
vendor_info.h 35 // Notes is general comments.
38 const string& notes);
51 // Returns the Notes.
69 string notes_; // The notes.
  /external/grpc-grpc/examples/ruby/errors_and_cancellation/
error_examples_server.rb 47 def route_chat(notes)
  /external/dynamic_depth/internal/dynamic_depth/
vendor_info.cc 17 const char kNotes[] = "Notes";
39 const string& notes) {
47 vendor_info->notes_ = notes;
  /external/grpc-grpc/examples/ruby/route_guide/
route_guide_server.rb 130 def route_chat(notes)
131 RouteChatEnumerator.new(notes, @received_notes).each_item
136 def initialize(notes, received_notes)
137 @notes = notes
143 @notes.each do |n|
  /external/grpc-grpc-java/examples/src/main/java/io/grpc/examples/routeguide/
RouteGuideServer.java 219 List<RouteNote> notes = getOrCreateNotes(note.getLocation());
221 // Respond with all previous notes at this location.
222 for (RouteNote prevNote : notes.toArray(new RouteNote[0])) {
227 notes.add(note);
243 * Get the notes list for the given location. If missing, create it.
246 List<RouteNote> notes = Collections.synchronizedList(new ArrayList<RouteNote>());
247 List<RouteNote> prevNotes = routeNotes.putIfAbsent(location, notes);
248 return prevNotes != null ? prevNotes : notes;
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_sched.c 245 check_instr(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes,
278 notes->addr_conflict = true;
284 notes->pred_conflict = true;
309 notes->blocked_kill = true;
322 find_instr_recursive(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes,
353 if (check_instr(ctx, notes, instr)) {
363 candidate = find_instr_recursive(ctx, notes, src);
367 if (check_instr(ctx, notes, candidate)) {
379 find_eligible_instr(struct ir3_sched_ctx *ctx, struct ir3_sched_notes *notes,
395 candidate = find_instr_recursive(ctx, notes, instr)
532 struct ir3_sched_notes notes = {0}; local
    [all...]
  /external/grpc-grpc/examples/csharp/RouteGuide/RouteGuideServer/
RouteGuideImpl.cs 120 /// Adds a note for location and returns a list of pre-existing notes for that location (not containing the newly added note).
126 List<RouteNote> notes;
127 if (!routeNotes.TryGetValue(location, out notes)) {
128 notes = new List<RouteNote>();
129 routeNotes.Add(location, notes);
131 var preexistingNotes = new List<RouteNote>(notes);
132 notes.Add(note);
  /external/libtextclassifier/utils/
flatbuffers_test.cc 283 auto notes = reminder->Repeated<std::string>("notes"); local
284 notes->Add("note A");
285 notes->Add("note B");
290 auto notes = reminder->Repeated<std::string>("notes"); local
291 notes->Add("note i");
292 notes->Add("note ii");
293 notes->Add("note iii");
303 EXPECT_THAT(entity_data->reminders[0]->notes,
    [all...]
  /external/elfutils/libdwfl/
core-file.c 125 dwfl_report_core_segments (Dwfl *dwfl, Elf *elf, size_t phnum, GElf_Phdr *notes)
132 if (notes != NULL)
133 notes->p_type = PT_NULL;
151 if (notes != NULL)
153 *notes = *phdr;
154 notes = NULL;
496 Elf_Data *notes = elf_getdata_rawchunk (elf, local
502 if (likely (notes != NULL))
508 while ((pos = gelf_getnote (notes, pos, &nhdr,
511 && !memcmp (notes->d_buf + name_pos, "CORE", sizeof "CORE")
    [all...]
dwfl_segment_report_module.c 474 void *notes; local
476 notes = data;
479 notes = malloc (filesz);
480 if (unlikely (notes == NULL))
486 xlateto.d_buf = notes;
493 const GElf_Nhdr *nh = notes;
501 note_name = notes + len;
505 note_desc = notes + len;
515 build_id_vaddr = note_desc - (const void *) notes + vaddr;
525 nh = (void *) notes + len
    [all...]
  /external/u-boot/tools/patman/
commit.py 23 notes: List of lines in the commit (not series) notes
32 self.notes = []
patchstream.py 68 self.notes = [] # Series notes
89 if name == 'notes':
105 if name == 'notes':
189 elif self.in_section == 'notes':
191 self.series.notes += self.section
192 elif self.in_section == 'commit-notes':
194 self.commit.notes += self.section
211 elif self.in_section == 'notes':
213 self.series.notes += self.sectio
    [all...]
  /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));
  /external/grpc-grpc/examples/php/route_guide/
route_guide_client.php 157 $notes = array( variable
165 foreach ($notes as $n) {
  /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 */
  /external/grpc-grpc/examples/node/dynamic_codegen/route_guide/
route_guide_client.js 181 var notes = [{
206 for (var i = 0; i < notes.length; i++) {
207 var note = notes[i];
  /external/grpc-grpc/examples/node/static_codegen/route_guide/
route_guide_client.js 175 var notes = [{
200 for (var i = 0; i < notes.length; i++) {
201 var note = notes[i];
  /external/python/cpython2/Lib/plat-irix5/
cddb.py 84 self.notes = []
108 elif name2 == 'notes':
109 self.notes.append(value)
190 for note in self.notes:
191 f.write('album.notes:\t' + note + '\n')
  /external/python/cpython2/Lib/plat-irix6/
cddb.py 84 self.notes = []
108 elif name2 == 'notes':
109 self.notes.append(value)
190 for note in self.notes:
191 f.write('album.notes:\t' + note + '\n')
  /external/curl/tests/
testcurl.pl 49 # --notes=[notes] More human-readable information about this configuration
75 $timestamp $notes);
113 elsif ($ARGV[0] =~ /--notes=/) {
114 $notes = (split(/=/, shift @ARGV, 2))[1];
323 print F "notes='$notes'\n";
346 logit "NOTES = $notes";

Completed in 851 milliseconds

1 2 3