Home
last modified time | relevance | path

Searched refs:ctype (Results 1 – 25 of 156) sorted by relevance

1234567

/external/webkit/Tools/DumpRenderTree/chromium/
DWebThemeEngineDRTWin.cpp60 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/
Dcrypto_kernel.c178 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/
Dctype.cpp36 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/
Dcost.c358 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/
Dlocale84 { 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/
Dobjects.txt1004 id-set 0 : set-ctype : content types
1011 set-ctype 0 : setct-PANData
1012 set-ctype 1 : setct-PANToken
1013 set-ctype 2 : setct-PANOnly
1014 set-ctype 3 : setct-OIData
1015 set-ctype 4 : setct-PI
1016 set-ctype 5 : setct-PIData
1017 set-ctype 6 : setct-PIDataUnsigned
1018 set-ctype 7 : setct-HODInput
1019 set-ctype 8 : setct-AuthResBaggage
[all …]
/external/v8/src/
Dflag-definitions.h40 #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;
49 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \ argument
50 ctype FLAG_##nam = def;
51 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) argument
58 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \ argument
59 static ctype const FLAGDEFAULT_##nam = def;
60 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) argument
[all …]
/external/stlport/stlport/stl/
D_ctype.h58 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 …]
/external/bluetooth/bluez/health/
Dhdp_util.c81 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/
Dctype_facets_test.cpp29 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/
Dunittest_lite.proto85 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 …]
Dunittest_micro.proto83 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"];
Dunittest.proto97 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/
D2008-05-09-SinkOfInvoke.ll3 …%"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/
DREADME.utf84 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/clang/test/SemaTemplate/
Dnested-template.cpp147 template< class Topology, class ctype >
152 template< class Topology, class ctype >
154 …class ReferenceElement< Topology, ctype > :: BaryCenterArray // expected-error{{out-of-line defini…
/external/stlport/stlport/using/
Dlocale28 // _lib.category.ctype_ and _lib.facet.ctype.special_, ctype:
30 using _STLP_NEW_IO_NAMESPACE::ctype;
/external/clang/tools/scan-view/
DScanView.py710 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)
DReporter.py87 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/
Dcpp_string_field.cc94 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()
Dcpp_test_bad_identifiers.proto53 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/llvm/test/CodeGen/Generic/
D2009-11-16-BadKillsCrash.ll5 …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, […
20 declare %"struct.std::ctype<char>"* @_ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale(%"struct.std::local…
24 …%0 = invoke %"struct.std::ctype<char>"* @_ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale(%"struct.std::…
25 to label %invcont8 unwind label %lpad74 ; <%"struct.std::ctype<char>"*> [#uses=0]
/external/openssh/
Dserverloop.c1051 char *ctype; in server_input_channel_open() local
1055 ctype = packet_get_string(&len); in server_input_channel_open()
1061 ctype, rchan, rwindow, rmaxpack); in server_input_channel_open()
1063 if (strcmp(ctype, "session") == 0) { in server_input_channel_open()
1065 } else if (strcmp(ctype, "direct-tcpip") == 0) { in server_input_channel_open()
1067 } else if (strcmp(ctype, "tun@openssh.com") == 0) { in server_input_channel_open()
1071 debug("server_input_channel_open: confirm %s", ctype); in server_input_channel_open()
1084 debug("server_input_channel_open: failure %s", ctype); in server_input_channel_open()
1094 xfree(ctype); in server_input_channel_open()
1188 c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0) in server_input_channel_req()
/external/bluetooth/glib/gobject/
Dglib-genmarshal.c52 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/regex-re2/
DREADME.android15 < #include <ctype.h>
18 < #include <ctype.h>

1234567