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

1 2 3 4 5

  /test/vts-testcase/kernel/ltp/shell_environment/definitions/
loop_device_support.py 23 note = "Kernel does not have loop device support" variable in class:LoopDeviceSupport
  /external/llvm/utils/llvm-build/llvmbuild/
util.py 8 note = lambda message: _write_message('note', message) variable
13 __all__ = ['note', 'warning', 'error', 'fatal']
  /external/python/cpython2/Doc/includes/
mp_webserver.py 26 def note(format, *args): function
33 note(format, *args)
36 note('starting server')
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
LitConfig.py 100 self.note("Unable to find 'bash.exe'.")
118 def note(self, message): member in class:LitConfig
119 self._write_message('note', message)
  /frameworks/compile/mclinker/include/mcld/Support/
MsgHandling.h 33 MsgHandler note(unsigned int pID);
61 inline mcld::MsgHandler mcld::note(unsigned int pID) { function in class:mcld
62 return getDiagnosticEngine().report(pID, DiagnosticEngine::Note);
  /external/llvm/utils/Misc/
zkill 19 note = lambda message: _write_message('note', message) variable
219 note('using signal %d (SIG%s)' % (signal, name))
221 note('using signal %d' % signal)
265 note('kill(%r, %s) # (user=%r, executable=%r, CPU=%2.2f%%, time=%r, vmem=%r, rss=%r)' %
  /external/llvm/utils/lit/lit/
LitConfig.py 97 self.note('load_config from %r' % path)
140 def note(self, message): member in class:LitConfig
141 self._write_message('note', message)
  /hardware/interfaces/audio/common/all-versions/test/utility/include/utility/
Documentation.h 56 /** Add a note to the test. */
57 void note(const std::string& note) { function in namespace:android::hardware::audio::common::test::utility::doc
58 LOG(INFO) << "Test " << detail::getTestName() << " noted: " << note;
59 ::testing::Test::RecordProperty("note", note);
  /test/vts-testcase/kernel/ltp/
test_case.py 40 note: string, a place to store additional note for the test case
51 self.note = ""
56 def note(self): member in class:TestCase
57 """Get the note"""
60 @note.setter
61 def note(self, note): member in class:TestCase
62 """Set the note"""
63 self._note = note
    [all...]
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
Log.java 78 Notification note = builder.build(); local
79 note.contentView.getLayoutId();
80 notificationManager.notify(NotificationIdFactory.create(), note); local
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_core_dumper.cc 140 ElfCoreDump::Note note = core_.GetFirstNote(); local
141 if (!note.IsValid()) {
148 ElfCoreDump::Word type = note.GetType();
149 MemoryRange name = note.GetName();
150 MemoryRange description = note.GetDescription();
246 note = note.GetNextNote();
247 } while (note.IsValid());
  /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:__anon35134
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:__anon35137
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:__anon35117
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:__anon35124
  /external/valgrind/coregrind/m_syswrap/
syswrap-amd64-solaris.c 477 VexEmNote note; local
539 note = LibVEX_GuestAMD64_fxrstor((HWord)fs, &tst->arch.vex);
540 if (note != EmNote_NONE)
543 tid, LibVEX_EmNote_string(note));
  /test/vti/dashboard/src/main/webapp/js/
test_acknowledgments.js 152 * @param note (String) The note in the acknowledgment.
154 function saveCallback(ack, modal, key, test, branchSet, deviceSet, testCaseSet, note) {
179 'note': note
182 var newAck = createAcknowledgment(newKey, test, branches, devices, testCaseNames, note);
205 * @param note (String) The note in the acknowledgment.
207 function showModal(ack, key, test, branches, devices, testCases, note) {
271 row.append('<div class="col s12"><h5><b>Note:</b></h5></div>')
178 'testCaseNames' : testCaseNames, property in class:saveCallback.data
    [all...]
  /test/vts-testcase/kernel/ltp/shell_environment/definitions/base_definitions/
check_setup_cleanup.py 36 note: string, used by GetNote to generate error message if fail.
44 self.note = None
47 def note(self): member in class:CheckSetupCleanup
50 @note.setter
51 def note(self, note): member in class:CheckSetupCleanup
52 self._note = note
74 self.note = "Error: Environment definition context not set"
98 """Get a string note as error message. Can be override by sub-class"""
99 if not self.note
    [all...]
  /test/vti/dashboard/src/test/java/com/android/vts/entity/
TestAcknowledgmentEntityTest.java 66 Text note = new Text("note"); local
68 new TestAcknowledgmentEntity(key, user, branches, devices, testCaseNames, note);
83 Assert.assertEquals(note, e.getProperty(TestAcknowledgmentEntity.NOTE));
92 Assert.assertEquals(note.getValue(), deserialized.note);
110 Assert.assertFalse(e.hasProperty(TestAcknowledgmentEntity.NOTE));
119 Assert.assertNull(deserialized.note);
133 Text note = new Text("note") local
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyKeyEvent.java 102 String note; local
104 note = "ACTION_UP";
106 note = "ACTION_DOWN";
110 Logger.out.println(":Sending Key (" + note + "): "
114 Logger.out.println(":Sending Key (" + note + "): "
  /external/google-breakpad/src/common/linux/
elf_core_dump_unittest.cc 197 ElfCoreDump::Note note = core.GetFirstNote(); local
198 while (note.IsValid()) {
199 MemoryRange name = note.GetName();
200 MemoryRange description = note.GetDescription();
204 switch (note.GetType()) {
244 note = note.GetNextNote();
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/
MarkedYAMLException.java 25 private String note; field in class:MarkedYAMLException
28 Mark problemMark, String note) {
29 this(context, contextMark, problem, problemMark, note, null);
33 Mark problemMark, String note, Throwable cause) {
39 this.note = note;
79 if (note != null) {
80 lines.append(note);
  /external/ImageMagick/MagickCore/
magick.h 65 *note, member in struct:_MagickInfo
  /external/autotest/frontend/server/
models.py 25 'Note : %(note)s\n')
37 note = dbmodels.TextField(null=True, blank=True) variable in class:Server
58 'note': self.note}
91 details['note'] = self.note
  /external/libexif/libexif/fuji/
exif-mnote-data-fuji.c 256 ExifMnoteDataFuji *note = (ExifMnoteDataFuji *) d; local
258 if (!note) return 0;
259 if (note->count <= n) return 0;
260 return note->entries[n].tag;

Completed in 740 milliseconds

1 2 3 4 5