HomeSort by relevance Sort by last modified time
    Searched refs:ent (Results 376 - 400 of 622) sorted by null

<<11121314151617181920>>

  /external/libxml2/python/tests/
reader3.py 116 <!ENTITY simplestruct2.ent SYSTEM "simplestruct2.ent">
118 <struct>&simplestruct2.ent;</struct>
129 if URL == "simplestruct2.ent":
  /external/mesa3d/src/mapi/glapi/gen/
gl_XML.py 753 for ent in self.entry_points:
754 if ent not in entry_point_list:
755 if ent in self.static_entry_points:
756 self.static_entry_points.remove(ent)
757 self.entry_point_parameters.pop(ent)
759 entry_points.append(ent)
877 entry_points = [ent for ent in func.entry_points if ent in entry_point_list]
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationLockscreenUserManager.java 415 public boolean needsRedaction(NotificationData.Entry ent) {
416 int userId = ent.notification.getUserId();
423 ent.notification.getNotification().visibility == Notification.VISIBILITY_PRIVATE;
424 boolean userForcesRedaction = packageHasVisibilityOverride(ent.notification.getKey());
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
aufs_type.h 171 union au_rdu_ent_ul ent; member in struct:aufs_rdu
  /system/core/libpixelflinger/arch-mips64/
col32cb16blend.S 59 .ent scanline_col32cb16blend_mips64
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
elf-rel-got-n32.s 16 .ent fn
146 .ent fn2
elf-rel-got-n64.s 16 .ent fn
147 .ent fn2
vr5400.s 4 .ent stuff
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-alpha/
tlspic1.s 31 .ent fn1
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
got-page-3a.s 6 .ent f1
mips16-intermix-1.s 5 .ent __start
reloc-2a.s 4 .ent tstarta
reloc-2b.s 2 .ent tstartb
compressed-plt-1.s 5 .ent __call_stub_\name
  /external/libxml2/
SAX2.c 667 xmlEntityPtr ent; local
677 ent = xmlAddDocEntity(ctxt->myDoc, name, type, publicId,
679 if ((ent == NULL) && (ctxt->pedantic))
683 if ((ent != NULL) && (ent->URI == NULL) && (systemId != NULL)) {
693 ent->URI = URI;
696 ent = xmlAddDtdEntity(ctxt->myDoc, name, type, publicId,
698 if ((ent == NULL) && (ctxt->pedantic) &&
702 if ((ent != NULL) && (ent->URI == NULL) && (systemId != NULL))
903 xmlEntityPtr ent; local
    [all...]
xinclude.c 1257 * @ent: the entity
1266 xmlEntityPtr ent = (xmlEntityPtr) payload; local
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
test_searchdialogbase.py 56 self.assertEqual(self.dialog.ent.get(), 'hello')
92 self.assertIn(self.dialog.ent.get(), 'hello')
  /external/python/cpython3/Lib/idlelib/idle_test/
test_searchbase.py 56 self.assertEqual(self.dialog.ent.get(), 'hello')
93 self.assertIn(self.dialog.ent.get(), 'hello')
  /libcore/ojluni/src/main/native/
LinuxNativeDispatcher.c 175 struct mntent ent; local
187 m = getmntent_r(fp, &ent, (char*)&buf, buflen);
  /build/kati/
pathutil_test.go 50 for _, ent := range ents {
51 t.Logf(" %#v", ent)
66 func (m *mockfs) addent(name string, ent dirent) {
82 if e.name == ent.name {
86 fsCache.dirents[di] = append(fsCache.dirents[di], ent)
90 ent := t(filepath.Base(name))
91 m.addent(name, ent)
92 return ent
95 func (m *mockfs) symlink(name string, ent dirent) {
96 lent := ent
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
debug_ops_test.cc 115 struct dirent* ent; local
117 while ((ent = readdir(dir)) != nullptr) {
118 if (strcmp(ent->d_name, ".") && strcmp(ent->d_name, "..")) {
122 const string dump_file_path = io::JoinPath(device_root, ent->d_name);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 583 int ent = lookupEntity(dst, refStart, dstlen - refStart - 1); local
584 // System.err.println(" = " + ent);
585 if (ent > 0xFFFF) {
586 ent -= 0x10000;
587 dst[refStart - 1] = (char)((ent>>10) + 0xD800);
588 dst[refStart] = (char)((ent&0x3FF) + 0xDC00);
591 else if (ent != 0) {
592 dst[refStart - 1] = (char)ent;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 1671 Entity ent = (Entity) entities.item(i); local
    [all...]
  /external/dnsmasq/src/
cache.c 927 struct dirent *ent; local
937 while ((ent = readdir(dir_stream)))
940 size_t lenfile = strlen(ent->d_name);
946 ent->d_name[lenfile - 1] == '~' ||
947 (ent->d_name[0] == '#' && ent->d_name[lenfile - 1] == '#') ||
948 ent->d_name[0] == '.')
953 file is ent->d_name
961 strcmp(ah1->fname + lendir + 1, ent->d_name) == 0)
982 strcat(path, ent->d_name)
    [all...]
  /frameworks/av/media/libstagefright/foundation/
ANetworkSession.cpp 1033 struct hostent *ent= gethostbyname(remoteHost); local
1034 if (ent == NULL) {
1039 addr.sin_addr.s_addr = *(in_addr_t *)ent->h_addr;
1082 struct hostent *ent= gethostbyname(remoteHost); local
1083 if (ent == NULL) {
1088 remoteAddr.sin_addr.s_addr = *(in_addr_t *)ent->h_addr;
1175 struct hostent *ent = gethostbyname(remoteHost); local
1176 if (ent == NULL) {
1179 remoteAddr.sin_addr.s_addr = *(in_addr_t *)ent->h_addr;
    [all...]

Completed in 1122 milliseconds

<<11121314151617181920>>