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

12 3 4 5 6 7 8 91011>>

  /external/perfetto/src/tracing/core/
commit_data_request.cc 68 auto* entry = proto->add_chunks_to_move(); local
69 it.ToProto(entry);
73 auto* entry = proto->add_chunks_to_patch(); local
74 it.ToProto(entry);
181 auto* entry = proto->add_patches(); local
182 it.ToProto(entry);
inode_file_config.cc 110 auto* entry = proto->add_mount_point_mapping(); local
111 it.ToProto(entry);
trace_config.cc 102 auto* entry = proto->add_buffers(); local
103 it.ToProto(entry);
107 auto* entry = proto->add_data_sources(); local
108 it.ToProto(entry);
129 auto* entry = proto->add_producers(); local
130 it.ToProto(entry);
  /external/syslinux/com32/lib/syslinux/
memscan.c 40 * Add a memscan entry to the list.
42 void syslinux_memscan_add(struct syslinux_memscan *entry)
44 list_add(&entry->next, &syslinux_memscan_head);
48 * Build a new memscan entry and add it to the list.
52 struct syslinux_memscan *entry; local
54 entry = malloc(sizeof *entry);
55 if (!entry)
58 entry->func = func;
59 syslinux_memscan_add(entry);
65 struct syslinux_memscan *entry; local
    [all...]
  /frameworks/base/libs/androidfw/tests/
ResourceUtils_test.cpp 24 StringPiece package, type, entry; local
25 ASSERT_TRUE(ExtractResourceName("android:string/foo", &package, &type, &entry));
28 EXPECT_EQ("foo", entry);
30 ASSERT_TRUE(ExtractResourceName("@android:string/foo", &package, &type, &entry));
33 EXPECT_EQ("foo", entry);
35 ASSERT_TRUE(ExtractResourceName("string/foo", &package, &type, &entry));
38 EXPECT_EQ("foo", entry);
40 ASSERT_TRUE(ExtractResourceName("@string/foo", &package, &type, &entry));
43 EXPECT_EQ("foo", entry);
45 ASSERT_TRUE(ExtractResourceName("foo", &package, &type, &entry));
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
CSVFormatter.java 42 public String getOutput(TrackerEntry entry) {
45 rowOutput.append(entry.getTimestamp());
47 rowOutput.append(entry.getTag());
49 //rowOutput.append(entry.getType());
51 if (entry.getType() == EntryType.LOCATION_TYPE) {
52 if (entry.getLocation().hasAccuracy()) {
53 rowOutput.append(entry.getLocation().getAccuracy());
56 rowOutput.append(entry.getLocation().getLatitude());
58 rowOutput.append(entry.getLocation().getLongitude());
60 if (entry.getLocation().hasAltitude())
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
copy.pass.cpp 66 const path entry = *it; local
73 TEST_CHECK(*it2 == entry);
move.pass.cpp 68 const path entry = *it; local
75 TEST_CHECK(*it2 == entry);
  /system/extras/iotop/
tasklist.cpp 37 dirent* entry; local
38 while ((entry = readdir(dir.get())) != nullptr) {
39 if (isdigit(entry->d_name[0])) {
40 pid_t pid = atoi(entry->d_name);
  /toolchain/binutils/binutils-2.27/gold/
gc.cc 41 Section_id entry = this->worklist().back(); local
43 if (!this->referenced_list().insert(entry).second)
46 this->section_reloc_map().find(entry);
50 // Scan the vector of references for each work_list entry.
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
SortedMapGenerators.java 31 import java.util.Map.Entry;
47 @Override public SortedMap<String, String> create(Entry<String, String>[] entries) {
49 for (Entry<String, String> entry : entries) {
50 checkNotNull(entry);
51 builder.put(entry.getKey(), entry.getValue());
58 implements TestListGenerator<Entry<String, Integer>> {
61 public SampleElements<Entry<String, Integer>> samples() {
62 return new SampleElements<Entry<String, Integer>>
91 Entry<String, Integer> entry = (Entry<String, Integer>) o; local
    [all...]
  /bionic/tests/
mntent_test.cpp 29 struct mntent entry; local
31 while (getmntent_r(fp, &entry, buf, sizeof(buf)) != NULL) {
32 if (strcmp(entry.mnt_fsname, "proc") == 0 && strcmp(entry.mnt_dir, "/proc") == 0) {
  /external/ImageMagick/Magick++/tests/
coderInfo.cpp 24 list<CoderInfo>::iterator entry = coderList.begin(); local
25 while( entry != coderList.end() )
29 (( entry->isReadable() && isReadable_ != CoderInfo::TrueMatch ) ||
30 ( !entry->isReadable() && isReadable_ != CoderInfo::FalseMatch )) )
32 cout << "Entry \""
33 << entry->name()
35 << static_cast<int>(entry->isReadable())
43 (( entry->isWritable() && isWritable_ != CoderInfo::TrueMatch ) ||
44 ( !entry->isWritable() && isWritable_ != CoderInfo::FalseMatch )) )
46 cout << "Entry \""
    [all...]
  /external/ImageMagick/coders/
fd.c 158 *entry;
160 entry=AcquireMagickInfo("FD","FD","Read image from a file descriptor");
161 entry->decoder=(DecodeImageHandler *) ReadFDImage;
162 entry->flags|=CoderStealthFlag;
163 (void) RegisterMagickInfo(entry);
155 *entry; local
mpr.c 137 *entry;
139 entry=AcquireMagickInfo("MPR","MPR","Magick Persistent Registry");
140 entry->decoder=(DecodeImageHandler *) ReadMPRImage;
141 entry->encoder=(EncodeImageHandler *) WriteMPRImage;
142 entry->flags^=CoderAdjoinFlag;
143 entry->format_type=ImplicitFormatType;
144 entry->flags|=CoderStealthFlag;
145 (void) RegisterMagickInfo(entry);
146 entry=AcquireMagickInfo("MPR","MPRI","Magick Persistent Registry");
147 entry->decoder=(DecodeImageHandler *) ReadMPRImage
133 *entry; local
    [all...]
x.c 140 *entry;
142 entry=AcquireMagickInfo("X","X","X Image");
144 entry->decoder=(DecodeImageHandler *) ReadXImage;
145 entry->encoder=(EncodeImageHandler *) WriteXImage;
147 entry->format_type=ImplicitFormatType;
148 (void) RegisterMagickInfo(entry);
136 *entry; local
  /external/freetype/src/base/
ftsnames.c 59 TT_Name entry = ttface->name_table.names + idx; local
63 if ( entry->stringLength > 0 && !entry->string )
69 if ( FT_NEW_ARRAY ( entry->string, entry->stringLength ) ||
70 FT_STREAM_SEEK( entry->stringOffset ) ||
71 FT_STREAM_READ( entry->string, entry->stringLength ) )
73 FT_FREE( entry->string );
74 entry->stringLength = 0
114 TT_LangTag entry = ttface->name_table.langTags + local
    [all...]
  /external/libcxx/test/std/experimental/filesystem/class.directory_iterator/directory_iterator.members/
copy_assign.pass.cpp 43 const path entry = *from; local
48 TEST_CHECK(*to == entry);
49 TEST_CHECK(*from == entry);
77 const path entry = *it; local
82 TEST_CHECK(entry2 != entry);
86 TEST_CHECK(*it2 == entry);
move_assign.pass.cpp 49 const path entry = *from; local
54 TEST_CHECK(*to == entry);
81 const path entry = *it; local
86 TEST_CHECK(entry2 != entry);
90 TEST_CHECK(*it2 == entry);
  /external/mesa3d/src/util/tests/hash_table/
delete_and_lookup.c 49 struct hash_entry *entry; local
59 entry = _mesa_hash_table_search(ht, str2);
60 assert(strcmp(entry->key, str2) == 0);
62 entry = _mesa_hash_table_search(ht, str1);
63 assert(strcmp(entry->key, str1) == 0);
65 _mesa_hash_table_remove(ht, entry);
67 entry = _mesa_hash_table_search(ht, str1);
68 assert(entry == NULL);
70 entry = _mesa_hash_table_search(ht, str2);
71 assert(strcmp(entry->key, str2) == 0)
    [all...]
  /external/python/cpython2/Demo/tkinter/ttk/
roundframe.py 101 entry = ttk.Entry(frame, text='Test') variable
102 entry.pack(fill='x')
103 entry.bind("<FocusIn>", lambda evt: frame.state(["focus"]))
104 entry.bind("<FocusOut>", lambda evt: frame.state(["!focus"]))
  /external/swiftshader/src/Reactor/
LLVMRoutine.hpp 39 //int getFunctionSize(); // Includes constants before the entry point
45 const void *entry; member in class:sw::LLVMRoutine
  /external/syslinux/gpxe/src/arch/i386/prefix/
nbiprefix.S 20 .word entry, 0x07c0 /* Start execution at 0x07c0:entry */
49 * NBI entry point
52 entry: label
74 .size entry, . - entry
  /external/toybox/toys/posix/
who.c 29 struct utmpx *entry; local
33 while ((entry = getutxent())) {
34 if ((toys.optflags & FLAG_a) || entry->ut_type == USER_PROCESS) {
39 time = entry->ut_tv.tv_sec;
42 printf("%s\t%s\t%*.*s\t(%s)\n", entry->ut_user, entry->ut_line,
43 time_size, time_size, ctime(&time), entry->ut_host);
  /frameworks/base/core/java/android/content/res/
ConfigurationBoundResourceCache.java 38 final ConstantState<T> entry = get(key, theme); local
39 if (entry != null) {
40 return entry.newInstance(resources, theme);
47 public boolean shouldInvalidateEntry(ConstantState<T> entry, @Config int configChanges) {
48 return Configuration.needNewResources(configChanges, entry.getChangingConfigurations());

Completed in 845 milliseconds

12 3 4 5 6 7 8 91011>>