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

12 3 4

  /external/dng_sdk/source/
dng_iptc.cpp 12 /* $Author: tknoll $ */
519 dng_string author; local
521 ParseString (stream, author, charSet);
523 if (author.NotEmpty ())
525 fAuthors.Append (author);
  /hardware/libhardware/include/hardware/
hardware.h 138 /** Author/owner/implementor of the module */
139 const char *author; member in struct:hw_module_t
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_decorators.py 12 def author(name): member in class:MiscDecorators
14 func.__dict__['author'] = name
88 @decorators.author('Cleese')
91 self.assertEqual(foo.author, 'Cleese')
  /external/libpng/contrib/gregbook/
writepng.h 10 express or implied. In no event shall the author or contributors
102 char *author; member in struct:_mainprog_info
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectsource_test.cc 69 using google::protobuf::testing::Author;
344 Author author; local
345 author.set_id(12345);
348 DoTest(author, Author::descriptor());
352 Author* author = new Author(); local
353 author->set_name("Tolstoy")
368 Author author; local
400 Author author; local
    [all...]
protostream_objectwriter_test.cc 64 using google::protobuf::testing::Author;
222 Author* robert = book.mutable_author();
235 ->StartObject("author")
254 Author* robert = book.mutable_author();
259 ->StartObject("author")
436 Author* author = expected.mutable_author(); local
437 author->set_name("The Author");
438 author->add_pseudonym("first")
454 Author* author = expected.mutable_author(); local
468 Author* author = expected.mutable_author(); local
534 Author* author = expected.mutable_author(); local
582 Author* author = expected.mutable_author(); local
663 Author* author = expected.mutable_author(); local
    [all...]
  /external/python/cpython2/Lib/test/
test_decorators.py 12 def author(name): member in class:MiscDecorators
14 func.__dict__['author'] = name
88 @decorators.author('Cleese')
91 self.assertEqual(foo.author, 'Cleese')
  /external/python/cpython3/Lib/test/
test_decorators.py 11 def author(name): member in class:MiscDecorators
13 func.__dict__['author'] = name
87 @decorators.author('Cleese')
90 self.assertEqual(foo.author, 'Cleese')
  /external/skia/tools/shape/
using_skia_and_harfbuzz.cpp 107 StringOption author = StringOption("-a", "PDF author", "---"); member in struct:Config
121 &page_width, &page_height, &title, &author, &subject,
183 pdf_info.fAuthor = config.author.value.c_str();
  /external/skqp/src/pdf/
SkPDFMetadata.cpp 41 {"Author", &SkDocument::PDFMetadata::fAuthor},
259 "%s" // author
291 SkString author = local
324 creator.c_str(), title.c_str(), subject.c_str(), author.c_str(),
  /external/skqp/tools/shape/
using_skia_and_harfbuzz.cpp 107 StringOption author = StringOption("-a", "PDF author", "---"); member in struct:Config
121 &page_width, &page_height, &title, &author, &subject,
183 pdf_info.fAuthor = config.author.value.c_str();
  /external/tensorflow/tensorflow/tools/pip_package/
setup.py 212 author='Google Inc.', variable
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_decorators.py 12 def author(name): member in class:MiscDecorators
14 func.__dict__['author'] = name
88 @decorators.author('Cleese')
91 self.assertEqual(foo.author, 'Cleese')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_decorators.py 12 def author(name): member in class:MiscDecorators
14 func.__dict__['author'] = name
88 @decorators.author('Cleese')
91 self.assertEqual(foo.author, 'Cleese')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_decorators.py 12 def author(name): member in class:MiscDecorators
14 func.__dict__['author'] = name
88 @decorators.author('Cleese')
91 self.assertEqual(foo.author, 'Cleese')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_decorators.py 12 def author(name): member in class:MiscDecorators
14 func.__dict__['author'] = name
88 @decorators.author('Cleese')
91 self.assertEqual(foo.author, 'Cleese')
  /external/skia/src/pdf/
SkPDFMetadata.cpp 107 {"Author", &SkDocument::PDFMetadata::fAuthor},
324 "%s" // author
356 SkString author = local
389 creator.c_str(), title.c_str(), subject.c_str(), author.c_str(),
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 233 Element author = entry.getChild(ATOM_NAMESPACE, "author"); local
234 author.getChild(ATOM_NAMESPACE, "name")
  /frameworks/av/media/libnblog/include/media/nblog/
NBLog.h 57 EVENT_AUTHOR, // author index (present in merged logs) tracks entry's
79 // * author entry of the thread that generated it (optional, present in merged log)
150 // entry's author index (-1 if none present)
151 // a Merger has a vector of Readers, author simply points to the index of the
154 virtual int author() const = 0;
156 // copy entry, adding author before timestamp, returns iterator to end of entry
158 int author) const = 0;
180 // Format arguments (excluding format string, timestamp and author)
189 // entry's author index (-1 if none present)
190 // a Merger has a vector of Readers, author simply points to the index of th
251 int author; member in struct:android::NBLog::HistTsEntryWithAuthor
    [all...]
  /frameworks/av/media/libnblog/
NBLog.cpp 106 // Skip author if present
132 int NBLog::FormatEntry::author() const { function in class:android::NBLog::FormatEntry
140 // if there is an author entry, return it, return -1 otherwise
148 std::unique_ptr<audio_utils_fifo_writer> &dst, int author) const {
155 // insert author entry
156 size_t authorEntrySize = NBLog::Entry::kOverhead + sizeof(author);
161 sizeof(author);
162 *(int*) (&authorEntry[offsetof(entry, data)]) = author;
242 int NBLog::HistogramEntry::author() const { function in class:android::NBLog::HistogramEntry
245 return it.payload<HistTsEntryWithAuthor>().author;
1105 int author = entry.author(); local
    [all...]
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperPreview.java 222 CharSequence author = info.loadAuthor(pm); local
223 if (TextUtils.isEmpty(author)) {
226 mAttributionSubtitle1.setText(author);
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/
doxia-sink-api-1.0.jar 
  /external/autotest/frontend/afe/
models.py 1035 author = dbmodels.CharField(max_length=255) variable in class:Test
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/reporting/maven-reporting-impl/2.0.5/
maven-reporting-impl-2.0.5.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-module-apt/1.0/
doxia-module-apt-1.0.jar 

Completed in 1008 milliseconds

12 3 4