/external/webkit/Tools/DumpRenderTree/chromium/ |
D | WebThemeEngineDRTWin.cpp | 60 WebThemeControlDRTWin::Type ctype, in drawControl() argument 63 WebThemeControlDRTWin control(canvas, webRectToSkIRect(rect), ctype, cstate); in drawControl() 69 WebThemeControlDRTWin::Type ctype, in drawTextField() argument 75 WebThemeControlDRTWin control(canvas, webRectToSkIRect(rect), ctype, cstate); in drawTextField() 80 WebThemeControlDRTWin::Type ctype, in drawProgressBar() argument 85 WebThemeControlDRTWin control(canvas, webRectToSkIRect(barRect), ctype, cstate); in drawProgressBar() 97 WebThemeControlDRTWin::Type ctype = WebThemeControlDRTWin::UnknownType; in paintButton() local 104 ctype = WebThemeControlDRTWin::UncheckedBoxType; in paintButton() 110 ctype = WebThemeControlDRTWin::UncheckedBoxType; in paintButton() 116 ctype = WebThemeControlDRTWin::UncheckedBoxType; in paintButton() [all …]
|
/external/srtp/crypto/kernel/ |
D | crypto_kernel.c | 178 kernel_cipher_type_t *ctype = crypto_kernel.cipher_type_list; in crypto_kernel_status() local 193 while(ctype != NULL) { in crypto_kernel_status() 194 printf("cipher: %s\n", ctype->cipher_type->description); in crypto_kernel_status() 195 printf(" instance count: %d\n", ctype->cipher_type->ref_count); in crypto_kernel_status() 197 status = cipher_type_self_test(ctype->cipher_type); in crypto_kernel_status() 203 ctype = ctype->next; in crypto_kernel_status() 262 kernel_cipher_type_t *ctype = crypto_kernel.cipher_type_list; in crypto_kernel_shutdown() local 263 crypto_kernel.cipher_type_list = ctype->next; in crypto_kernel_shutdown() 266 ctype->cipher_type->description); in crypto_kernel_shutdown() 267 crypto_free(ctype); in crypto_kernel_shutdown() [all …]
|
/external/stlport/src/ |
D | ctype.cpp | 36 const size_t ctype<char>::table_size; 43 ctype<char>::classic_table() _STLP_NOTHROW { in classic_table() 200 const unsigned char _S_upper[ctype<char>::table_size] = 236 const unsigned char _S_lower[ctype<char>::table_size] = 316 ctype<char>::ctype(const ctype_base::mask * __tab, bool __del, size_t __refs) : in ctype() function in ctype 322 ctype<char>::~ctype() { in ~ctype() 331 ctype<char>::scan_is(ctype_base::mask __m, const char* __low, const char* __high) const in scan_is() 338 ctype<char>::scan_not(ctype_base::mask __m, const char* __low, const char* __high) const in scan_not() 341 char ctype<char>::do_toupper(char __c) const in do_toupper() 343 char ctype<char>::do_tolower(char __c) const in do_tolower() [all …]
|
/external/webp/src/enc/ |
D | cost.c | 358 int ctype, band, ctx; in VP8CalculateLevelCosts() local 359 for (ctype = 0; ctype < NUM_TYPES; ++ctype) { in VP8CalculateLevelCosts() 362 const uint8_t* const p = proba->coeffs_[ctype][band][ctx]; in VP8CalculateLevelCosts() 363 uint16_t* const table = proba->level_cost_[ctype][band][ctx]; in VP8CalculateLevelCosts()
|
/external/stlport/stlport/ |
D | locale | 84 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::space, c); } 88 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::print, c); } 92 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::cntrl, c); } 96 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::upper, c); } 100 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::lower, c); } 104 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alpha, c); } 108 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::digit, c); } 112 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::punct, c); } 116 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::xdigit, c); } 120 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alnum, c); } [all …]
|
/external/openssl/crypto/objects/ |
D | objects.txt | 982 id-set 0 : set-ctype : content types 989 set-ctype 0 : setct-PANData 990 set-ctype 1 : setct-PANToken 991 set-ctype 2 : setct-PANOnly 992 set-ctype 3 : setct-OIData 993 set-ctype 4 : setct-PI 994 set-ctype 5 : setct-PIData 995 set-ctype 6 : setct-PIDataUnsigned 996 set-ctype 7 : setct-HODInput 997 set-ctype 8 : setct-AuthResBaggage [all …]
|
/external/v8/src/ |
D | flag-definitions.h | 40 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \ argument 41 extern ctype FLAG_##nam; 42 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) \ argument 43 static ctype const FLAG_##nam = def; 48 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \ argument 49 ctype FLAG_##nam = def; 50 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) argument 56 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \ argument 57 static ctype const FLAGDEFAULT_##nam = def; 58 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) argument [all …]
|
/external/stlport/stlport/stl/ |
D | _ctype.h | 58 template <class charT> class ctype {}; 64 class _STLP_CLASS_DECLSPEC ctype<char> : public locale::facet, public ctype_base { 67 typedef ctype<wchar_t> _Wctype; 70 friend class ctype<wchar_t>; 77 explicit ctype(const mask* __tab = 0, bool __del = false, size_t __refs = 0); 121 ~ctype(); 147 class _STLP_CLASS_DECLSPEC ctype_byname<char>: public ctype<char> { 177 class _STLP_CLASS_DECLSPEC ctype<wchar_t> : public locale::facet, public ctype_base { 181 explicit ctype(size_t __refs = 0) : locale::facet(__refs) {} in facet() 220 ~ctype(); [all …]
|
D | _time_facets.c | 153 const ctype<_Ch>& __ct = use_facet<ctype<_Ch> >(__s.getloc()); in _STLP_WEAK() 405 const ctype<_Ch>& _Ct = use_facet<ctype<_Ch> >(__f.getloc()); in put() 429 const ctype<_Ch>& __ct = use_facet<ctype<_Ch> >(__f.getloc()); in do_put()
|
/external/bluetooth/bluez/health/ |
D | hdp_util.c | 81 int ctype, i; in parse_dict_entry() local 85 ctype = dbus_message_iter_get_arg_type(&entry); in parse_dict_entry() 86 if (ctype != DBUS_TYPE_STRING) { in parse_dict_entry() 110 int ctype; in parse_dict() local 113 ctype = dbus_message_iter_get_arg_type(iter); in parse_dict() 114 if (ctype != DBUS_TYPE_ARRAY) { in parse_dict() 121 while ((ctype = dbus_message_iter_get_arg_type(&dict)) != in parse_dict() 123 if (ctype != DBUS_TYPE_DICT_ENTRY) { in parse_dict() 147 int ctype; in parse_data_type() local 149 ctype = dbus_message_iter_get_arg_type(iter); in parse_data_type() [all …]
|
/external/stlport/test/unit/ |
D | ctype_facets_test.cpp | 29 CPPUNIT_ASSERT( has_facet<ctype<char> >(loc) ); in _ctype_facet() 30 ctype<char> const& ct = use_facet<ctype<char> >(loc); in _ctype_facet() 173 CPPUNIT_ASSERT( has_facet<ctype<wchar_t> >(loc) ); in _ctype_facet_w() 174 ctype<wchar_t> const& wct = use_facet<ctype<wchar_t> >(loc); in _ctype_facet_w() 341 locale tmp(locale::classic(), tested_locales[i], locale::ctype); in test_supported_locale() 428 CPPUNIT_ASSERT( has_facet<ctype<char> >(loc) ); in ctype_by_name() 429 ctype<char> const& ct = use_facet<ctype<char> >(loc); in ctype_by_name() 441 ctype<char> const& cfacet_byname = use_facet<ctype<char> >(loc); in ctype_by_name() 442 ctype<char> const& cfacet = use_facet<ctype<char> >(locale::classic()); in ctype_by_name()
|
/external/protobuf/src/google/protobuf/ |
D | unittest_lite.proto | 85 optional string optional_string_piece = 24 [ctype=STRING_PIECE]; 86 optional string optional_cord = 25 [ctype=CORD]; 118 repeated string repeated_string_piece = 54 [ctype=STRING_PIECE]; 119 repeated string repeated_cord = 55 [ctype=CORD]; 144 optional string default_string_piece = 84 [ctype=STRING_PIECE,default="abc"]; 145 optional string default_cord = 85 [ctype=CORD,default="123"]; 213 [ctype=STRING_PIECE]; 214 optional string optional_cord_extension_lite = 25 [ctype=CORD]; 249 [ctype=STRING_PIECE]; 250 repeated string repeated_cord_extension_lite = 55 [ctype=CORD]; [all …]
|
D | unittest_micro.proto | 83 optional string optional_string_piece = 24 [ctype=STRING_PIECE]; 84 optional string optional_cord = 25 [ctype=CORD]; 116 repeated string repeated_string_piece = 54 [ctype=STRING_PIECE]; 117 repeated string repeated_cord = 55 [ctype=CORD]; 142 optional string default_string_piece = 84 [ctype=STRING_PIECE,default="abc"]; 143 optional string default_cord = 85 [ctype=CORD,default="123"];
|
D | unittest.proto | 97 optional string optional_string_piece = 24 [ctype=STRING_PIECE]; 98 optional string optional_cord = 25 [ctype=CORD]; 129 repeated string repeated_string_piece = 54 [ctype=STRING_PIECE]; 130 repeated string repeated_cord = 55 [ctype=CORD]; 154 optional string default_string_piece = 84 [ctype=STRING_PIECE,default="abc"]; 155 optional string default_cord = 85 [ctype=CORD,default="123"]; 210 optional string optional_string_piece_extension = 24 [ctype=STRING_PIECE]; 211 optional string optional_cord_extension = 25 [ctype=CORD]; 244 repeated string repeated_string_piece_extension = 54 [ctype=STRING_PIECE]; 245 repeated string repeated_cord_extension = 55 [ctype=CORD]; [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | 2008-05-09-SinkOfInvoke.ll | 3 …%"struct.std::ctype<char>" = type { %"struct.std::locale::facet", i32*, i8, i32*, i32*, i16*, i8, … 12 define void @_ZNSt5ctypeIcEC2EPiPKtbm(%"struct.std::ctype<char>"* %this, i32* %unnamed_arg, i16* %_… 27 %tmp41 = getelementptr %"struct.std::ctype<char>"* %this, i32 0, i32 4 ; <i32**> [#uses=1]
|
/external/stlport/doc/ |
D | README.utf8 | 4 of the ctype category. However utf8 only describe how encoding must be 6 to know how to generate the whole ctype category facets of a locale 16 For the same reason building a locale with the ctype facets based on 20 std::locale loc(locale::classic(), ".utf8", std::locale::ctype);
|
/external/stlport/stlport/using/ |
D | locale | 28 // _lib.category.ctype_ and _lib.facet.ctype.special_, ctype: 30 using _STLP_NEW_IO_NAMESPACE::ctype;
|
/external/v8/tools/ |
D | grokdump.py | 74 self.ctype = Descriptor._GetCtype(fields) 75 self.size = ctypes.sizeof(self.ctype) 93 complete_ctype = self.ctype 128 ("location", MINIDUMP_LOCATION_DESCRIPTOR.ctype) 146 ("exception", MINIDUMP_EXCEPTION.ctype), 147 ("thread_context", MINIDUMP_LOCATION_DESCRIPTOR.ctype) 209 ("float_save", EnableOnFlag(MINIDUMP_FLOATING_SAVE_AREA_X86.ctype, 238 ("memory", MINIDUMP_LOCATION_DESCRIPTOR.ctype) 248 ("ranges", lambda m: MINIDUMP_MEMORY_DESCRIPTOR.ctype * m.range_count) 254 ("ranges", lambda m: MINIDUMP_MEMORY_DESCRIPTOR64.ctype * m.range_count) [all …]
|
/external/llvm/test/CodeGen/Generic/ |
D | 2009-11-16-BadKillsCrash.ll | 5 …truct.std::basic_streambuf<char,std::char_traits<char> >"*, %"struct.std::ctype<char>"*, %"struct.… 9 %"struct.std::ctype<char>" = type { %"struct.std::locale::facet", i32*, i8, i32*, i32*, i16*, i8, [… 22 declare %"struct.std::ctype<char>"* @_ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale(%"struct.std::local… 26 …%0 = invoke %"struct.std::ctype<char>"* @_ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale(%"struct.std::… 27 to label %invcont8 unwind label %lpad74 ; <%"struct.std::ctype<char>"*> [#uses=0]
|
/external/clang/tools/scan-view/ |
D | ScanView.py | 710 ctype = self.guess_type(path) 711 if ctype.startswith('text/'): 713 return self.send_patched_file(path, ctype) 720 return self.send_file(f, ctype) 722 def send_file(self, f, ctype): argument 725 self.send_header("Content-type", ctype) 732 def send_string(self, s, ctype='text/html', headers=True, mtime=None): argument 735 self.send_header("Content-type", ctype) 743 def send_patched_file(self, path, ctype): argument 759 return self.send_string(data, ctype, mtime=fs.st_mtime)
|
D | Reporter.py | 87 ctype, encoding = mimetypes.guess_type(path) 88 if ctype is None or encoding is not None: 91 ctype = 'application/octet-stream' 92 maintype, subtype = ctype.split('/', 1)
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_string_field.cc | 94 if (descriptor_->options().ctype() != FieldOptions::STRING) { in GenerateAccessorDeclarations() 110 if (descriptor_->options().ctype() != FieldOptions::STRING) { in GenerateAccessorDeclarations() 281 if (descriptor_->options().ctype() != FieldOptions::STRING) { in GenerateAccessorDeclarations() 309 if (descriptor_->options().ctype() != FieldOptions::STRING) { in GenerateAccessorDeclarations()
|
D | cpp_test_bad_identifiers.proto | 53 repeated string new_element = 5 [ctype=STRING_PIECE]; 62 message Data5 { repeated string data = 1 [ctype=STRING_PIECE]; } 63 message Data6 { repeated string data = 1 [ctype=CORD]; } 89 optional string some_cord = 28 [ctype=CORD]; 92 optional string some_string_piece = 29 [ctype=STRING_PIECE];
|
/external/bluetooth/glib/gobject/ |
D | glib-genmarshal.c | 52 const gchar *ctype; /* C type name [gchar*] */ member 59 const gchar *ctype; /* C type name [gchar*] */ member 217 iarg->ctype = args[i].ctype; in complete_in_arg() 261 oarg->ctype = args[i].ctype; in complete_out_arg() 387 ind = g_fprintf (fout, " typedef %s (*GMarshalFunc_%s) (", sig->rarg->ctype, signame); in generate_marshal() 394 g_fprintf (fout, "%s%s arg_%d,\n", indent (ind), pad (iarg->ctype), a++); in generate_marshal() 403 g_fprintf (fout, " %s v_return;\n", sig->rarg->ctype); in generate_marshal()
|
/external/stlport/test/eh/ |
D | locale.cpp | 42 const ctype<char>& char_type=use_facet<ctype<char> >(cout.getloc()); in main()
|