HomeSort by relevance Sort by last modified time
    Searched refs:ext (Results 51 - 75 of 707) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/brew/
MIMETypeRegistryBrew.cpp 66 String MIMETypeRegistry::getMIMETypeForExtension(const String &ext)
70 String str = ext.lower();
  /external/webkit/Source/WebCore/platform/efl/
MIMETypeRegistryEfl.cpp 76 String MIMETypeRegistry::getMIMETypeForExtension(const String &ext)
80 String s = ext.lower();
  /external/webkit/Source/WebCore/platform/gtk/
MIMETypeRegistryGtk.cpp 66 String MIMETypeRegistry::getMIMETypeForExtension(const String &ext)
70 String s = ext.lower();
  /external/webkit/Source/WebCore/platform/wx/
MimeTypeRegistryWx.cpp 63 String MIMETypeRegistry::getMIMETypeForExtension(const String &ext)
67 String s = ext.lower();
  /external/ipsec-tools/src/include-glibc/net/
pfkeyv2.h 60 #define PFKEY_ADDR_PREFIX(ext) \
61 (((struct sadb_address *)(ext))->sadb_address_prefixlen)
62 #define PFKEY_ADDR_PROTO(ext) \
63 (((struct sadb_address *)(ext))->sadb_address_proto)
64 #define PFKEY_ADDR_SADDR(ext) \
65 ((struct sockaddr *)((caddr_t)(ext) + sizeof(struct sadb_address)))
  /external/webkit/Source/WebCore/platform/chromium/
MIMETypeRegistryChromium.cpp 46 String MIMETypeRegistry::getMIMETypeForExtensionThreadSafe(const String &ext)
48 return PlatformBridge::mimeTypeForExtension(ext);
56 String MIMETypeRegistry::getMIMETypeForExtension(const String &ext)
58 return PlatformBridge::mimeTypeForExtension(ext);
69 String ext = PlatformBridge::preferredExtensionForMIMEType(type); local
70 if (!ext.isEmpty() && ext[0] == '.')
71 ext = ext.substring(1);
73 return ext;
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/rc_binomial_heap_/
rc_binomial_heap_.hpp 45 #include <ext/pb_ds/detail/cond_dealtor.hpp>
46 #include <ext/pb_ds/detail/type_utils.hpp>
47 #include <ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp>
48 #include <ext/pb_ds/detail/rc_binomial_heap_/rc.hpp>
183 #include <ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp>
184 #include <ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp>
185 #include <ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp>
186 #include <ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp>
187 #include <ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp>
188 #include <ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
rc_binomial_heap_.hpp 45 #include <ext/pb_ds/detail/cond_dealtor.hpp>
46 #include <ext/pb_ds/detail/type_utils.hpp>
47 #include <ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp>
48 #include <ext/pb_ds/detail/rc_binomial_heap_/rc.hpp>
183 #include <ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp>
184 #include <ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp>
185 #include <ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp>
186 #include <ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp>
187 #include <ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp>
188 #include <ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
rc_binomial_heap_.hpp 45 #include <ext/pb_ds/detail/cond_dealtor.hpp>
46 #include <ext/pb_ds/detail/type_utils.hpp>
47 #include <ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp>
48 #include <ext/pb_ds/detail/rc_binomial_heap_/rc.hpp>
183 #include <ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp>
184 #include <ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp>
185 #include <ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp>
186 #include <ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp>
187 #include <ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp>
188 #include <ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
    [all...]
  /external/webkit/Source/WebCore/platform/win/
MIMETypeRegistryWin.cpp 39 String ext = "." + extension; local
44 HRESULT result = SHGetValue(HKEY_CLASSES_ROOT, ext.charactersWithNullTermination(), L"Content Type", &keyType, (LPVOID)contentTypeStr, &contentTypeStrLen);
67 String MIMETypeRegistry::getMIMETypeForExtension(const String &ext)
71 if (ext.isEmpty())
101 String result = mimetypeMap.get(ext);
103 result = mimeTypeForExtension(ext);
105 mimetypeMap.add(ext, result);
  /external/openssl/crypto/x509v3/
v3conf.c 77 X509_EXTENSION *ext; local
117 ext = X509_get_ext(cert, i);
118 printf("%s", OBJ_nid2ln(OBJ_obj2nid(ext->object)));
119 if(ext->critical) printf(",critical:\n");
121 X509V3_EXT_print_fp(stdout, ext, 0, 0);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 44 #include <ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp>
45 #include <ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp>
46 #include <ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp>
47 #include <ext/pb_ds/detail/binary_heap_/binary_heap_.hpp>
48 #include <ext/pb_ds/detail/thin_heap_/thin_heap_.hpp>
standard_policies.hpp 45 #include <ext/pb_ds/hash_policy.hpp>
46 #include <ext/pb_ds/list_update_policy.hpp>
47 #include <ext/pb_ds/tree_policy.hpp>
48 #include <ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp>
49 #include <ext/pb_ds/trie_policy.hpp>
50 #include <ext/pb_ds/tag_and_trait.hpp>
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 44 #include <ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp>
45 #include <ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp>
46 #include <ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp>
47 #include <ext/pb_ds/detail/binary_heap_/binary_heap_.hpp>
48 #include <ext/pb_ds/detail/thin_heap_/thin_heap_.hpp>
standard_policies.hpp 45 #include <ext/pb_ds/hash_policy.hpp>
46 #include <ext/pb_ds/list_update_policy.hpp>
47 #include <ext/pb_ds/tree_policy.hpp>
48 #include <ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp>
49 #include <ext/pb_ds/trie_policy.hpp>
50 #include <ext/pb_ds/tag_and_trait.hpp>
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 44 #include <ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp>
45 #include <ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp>
46 #include <ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp>
47 #include <ext/pb_ds/detail/binary_heap_/binary_heap_.hpp>
48 #include <ext/pb_ds/detail/thin_heap_/thin_heap_.hpp>
standard_policies.hpp 45 #include <ext/pb_ds/hash_policy.hpp>
46 #include <ext/pb_ds/list_update_policy.hpp>
47 #include <ext/pb_ds/tree_policy.hpp>
48 #include <ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp>
49 #include <ext/pb_ds/trie_policy.hpp>
50 #include <ext/pb_ds/tag_and_trait.hpp>
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binary_heap_/
binary_heap_.hpp 50 #include <ext/pb_ds/detail/cond_dealtor.hpp>
51 #include <ext/pb_ds/detail/cond_dealtor.hpp>
52 #include <ext/pb_ds/detail/type_utils.hpp>
53 #include <ext/pb_ds/detail/binary_heap_/entry_cmp.hpp>
54 #include <ext/pb_ds/detail/binary_heap_/entry_pred.hpp>
55 #include <ext/pb_ds/detail/binary_heap_/resize_policy.hpp>
56 #include <ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp>
57 #include <ext/pb_ds/detail/binary_heap_/const_iterator.hpp>
61 #include <ext/pb_ds/detail/type_utils.hpp>
338 #include <ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/
binary_heap_.hpp 50 #include <ext/pb_ds/detail/cond_dealtor.hpp>
51 #include <ext/pb_ds/detail/cond_dealtor.hpp>
52 #include <ext/pb_ds/detail/type_utils.hpp>
53 #include <ext/pb_ds/detail/binary_heap_/entry_cmp.hpp>
54 #include <ext/pb_ds/detail/binary_heap_/entry_pred.hpp>
55 #include <ext/pb_ds/detail/binary_heap_/resize_policy.hpp>
56 #include <ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp>
57 #include <ext/pb_ds/detail/binary_heap_/const_iterator.hpp>
61 #include <ext/pb_ds/detail/type_utils.hpp>
338 #include <ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/
binary_heap_.hpp 50 #include <ext/pb_ds/detail/cond_dealtor.hpp>
51 #include <ext/pb_ds/detail/cond_dealtor.hpp>
52 #include <ext/pb_ds/detail/type_utils.hpp>
53 #include <ext/pb_ds/detail/binary_heap_/entry_cmp.hpp>
54 #include <ext/pb_ds/detail/binary_heap_/entry_pred.hpp>
55 #include <ext/pb_ds/detail/binary_heap_/resize_policy.hpp>
56 #include <ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp>
57 #include <ext/pb_ds/detail/binary_heap_/const_iterator.hpp>
61 #include <ext/pb_ds/detail/type_utils.hpp>
338 #include <ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
    [all...]
  /external/icu4c/tools/genuca/
genteststub.py 24 ext=fname.find(".txt"); variable
27 elif (ext>0) :
28 wFname = fname[:ext+1]+"_STUB.txt"
  /external/webkit/Source/WebCore/platform/qt/
MIMETypeRegistryQt.cpp 74 String MIMETypeRegistry::getMIMETypeForExtension(const String &ext)
78 String s = ext.lower();
  /external/webkit/Tools/RebaselineQueueServer/handlers/
pages.py 29 from google.appengine.ext import webapp
30 from google.appengine.ext.webapp import template
  /external/webkit/Tools/RebaselineQueueServer/
main.py 33 from google.appengine.ext import webapp
34 from google.appengine.ext.webapp import util
  /external/webkit/Tools/wx/build/
wxpresets.py 75 ext = ''
88 ext += 'u'
92 ext += 'h'
95 ext += 'd'
98 configdir = os.path.join(libdir, 'msw' + ext)
111 return 'wxbase%s%s' % (version_str_nodot, ext)
113 return "wxmsw%s%s_%s" % (version_str_nodot, ext, name)
117 libs.extend(["wxmsw%s%s" % (version_str_nodot, ext)])

Completed in 806 milliseconds

1 23 4 5 6 7 8 91011>>