HomeSort by relevance Sort by last modified time
    Searched refs:desc (Results 1 - 25 of 2035) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/chromeos/status/
input_method_menu_unittest.cc 17 InputMethodDescriptor desc("m17n:fa:isiri", // input method engine id
21 EXPECT_EQ(L"FA", InputMethodMenu::GetTextForIndicator(desc));
24 InputMethodDescriptor desc("hangul", "Korean", "us", "ko");
26 InputMethodMenu::GetTextForIndicator(desc));
29 InputMethodDescriptor desc("invalid-id", "unregistered string", "us", "xx");
31 EXPECT_EQ(L"XX", InputMethodMenu::GetTextForIndicator(desc));
36 InputMethodDescriptor desc("xkb:us:dvorak:eng", "Dvorak", "us", "eng");
37 EXPECT_EQ(L"DV", InputMethodMenu::GetTextForIndicator(desc));
40 InputMethodDescriptor desc("xkb:us:colemak:eng", "Colemak", "us", "eng");
41 EXPECT_EQ(L"CO", InputMethodMenu::GetTextForIndicator(desc));
    [all...]
  /external/chromium_org/ppapi/proxy/
serialized_structs.cc 32 const PP_FontDescription_Dev& desc) {
33 StringVar* string_var = StringVar::FromPPVar(desc.face);
36 family = desc.family;
37 size = desc.size;
38 weight = desc.weight;
39 italic = desc.italic;
40 small_caps = desc.small_caps;
41 letter_spacing = desc.letter_spacing;
42 word_spacing = desc.word_spacing;
46 const PP_BrowserFont_Trusted_Description& desc) {
    [all...]
  /system/core/toolbox/
lsusb.c 44 struct usb_device_descriptor *desc)
47 printf("\tbcdUSB: %04x\n", letoh16(desc->bcdUSB));
48 printf("\tbDeviceClass: %02x\n", desc->bDeviceClass);
49 printf("\tbDeviceSubClass: %02x\n", desc->bDeviceSubClass);
50 printf("\tbDeviceProtocol: %02x\n", desc->bDeviceProtocol);
51 printf("\tbMaxPacketSize0: %02x\n", desc->bMaxPacketSize0);
52 printf("\tidVendor: %04x\n", letoh16(desc->idVendor));
53 printf("\tidProduct: %04x\n", letoh16(desc->idProduct));
54 printf("\tbcdDevice: %04x\n", letoh16(desc->bcdDevice));
55 printf("\tiManufacturer: %s\n", get_str(dev, desc->iManufacturer))
159 struct usb_descriptor_header *desc; local
    [all...]
  /external/bison/lib/
cloexec.c 28 /* Set the 'FD_CLOEXEC' flag of DESC if VALUE is true,
32 Note that on MingW, this function does NOT protect DESC from being
34 followed by closing the original DESC, or use interfaces such as
35 open or pipe2 that accept flags like O_CLOEXEC to create DESC
39 set_cloexec_flag (int desc, bool value)
43 int flags = fcntl (desc, F_GETFD, 0);
50 || fcntl (desc, F_SETFD, newflags) != -1)
60 if (desc < 0)
65 if (dup2 (desc, desc) < 0
    [all...]
cloexec.h 22 /* Set the 'FD_CLOEXEC' flag of DESC if VALUE is true,
26 Note that on MingW, this function does NOT protect DESC from being
28 followed by closing the original DESC, or use interfaces such as
29 open or pipe2 that accept flags like O_CLOEXEC to create DESC
32 int set_cloexec_flag (int desc, bool value);
  /external/chromium_org/third_party/WebKit/Source/web/
WebFontDescription.cpp 40 WebFontDescription::WebFontDescription(const FontDescription& desc,
43 family = desc.family().family();
44 genericFamily = static_cast<GenericFamily>(desc.genericFamily());
45 size = desc.specifiedSize();
46 italic = desc.italic();
47 smallCaps = desc.smallCaps();
48 weight = static_cast<Weight>(desc.weight());
49 smoothing = static_cast<Smoothing>(desc.fontSmoothing());
59 FontDescription desc; local
60 desc.setFamily(fontFamily)
    [all...]
  /external/chromium/chrome/common/
nacl_types.h 19 inline HANDLE ToNativeHandle(const FileDescriptor& desc) {
20 return reinterpret_cast<HANDLE>(desc);
24 inline int ToNativeHandle(const FileDescriptor& desc) {
25 return desc.fd;
  /external/llvm/test/MC/AsmParser/
directive_desc.s 4 # CHECK: .desc foo,16
5 # CHECK: .desc bar,4
7 .desc foo,0x10
8 .desc bar, 1 +3
  /external/libvpx/libvpx/vpx_mem/memory_manager/
hmm_largest.c 18 U(size_aau) U(largest_available)(U(descriptor) *desc) {
21 if (!(desc->avl_tree_root))
26 AUDIT_BLOCK(PTR_REC_TO_HEAD(desc->avl_tree_root))
33 (U(avl_avl) *) & (desc->avl_tree_root),
37 if (desc->last_freed) {
42 AUDIT_BLOCK(desc->last_freed)
45 lf_size = BLOCK_BAUS(desc->last_freed);
hmm_alloc.c 18 void *U(alloc)(U(descriptor) *desc, U(size_aau) n) {
21 if (desc->avl_tree_root)
22 AUDIT_BLOCK(PTR_REC_TO_HEAD(desc->avl_tree_root))
25 if (desc->last_freed) {
27 AUDIT_BLOCK(desc->last_freed)
30 U(into_free_collection)(desc, (head_record *)(desc->last_freed));
32 desc->last_freed = 0;
50 (U(avl_avl) *) & (desc->avl_tree_root), (U(size_bau)) n,
56 U(alloc_from_bin)(desc, ptr_rec_ptr, (U(size_bau)) n) : 0)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportdescriptionfactory.cc 50 talk_base::scoped_ptr<TransportDescription> desc(new TransportDescription());
54 desc->transport_type = NS_JINGLE_ICE_UDP;
56 desc->transport_type = NS_JINGLE_ICE_UDP;
57 desc->AddOption(ICE_OPTION_GICE);
59 desc->transport_type = NS_GINGLE_P2P;
64 desc->ice_ufrag = talk_base::CreateRandomString(ICE_UFRAG_LENGTH);
65 desc->ice_pwd = talk_base::CreateRandomString(ICE_PWD_LENGTH);
67 desc->ice_ufrag = current_description->ice_ufrag;
68 desc->ice_pwd = current_description->ice_pwd;
75 if (!SetSecurityInfo(desc.get(), CONNECTIONROLE_ACTPASS))
    [all...]
  /bionic/libc/bionic/
malloc_debug_qemu.cpp 162 MallocDesc* desc; member in struct:MallocDescQuery
232 const MallocDesc* desc);
317 * desc - MallocDesc instance to dump.
320 #define log_mdesc(type, desc, fmt, ...) \
329 (desc)); \
363 * desc - Allocation descriptor.
367 static inline void* mallocdesc_user_ptr(const MallocDesc* desc) {
368 return static_cast<char*>(desc->ptr) + desc->prefix_size;
374 * desc - Allocation descriptor
678 MallocDesc desc; local
713 MallocDesc desc; local
769 MallocDesc desc; local
    [all...]
  /external/qemu/android/protocol/
core-connection.h 55 * desc Descriptor to free. Note that this routine will simply free the memory
58 void core_connection_free(CoreConnection* desc);
62 * desc Console client descriptor. Note that if the descriptor has been already
68 int core_connection_open(CoreConnection* desc);
72 * desc Console client descriptor opened with core_connection_open.
74 void core_connection_close(CoreConnection* desc);
79 * desc Console client descriptor opened with core_connection_open.
87 int core_connection_write(CoreConnection* desc,
95 * desc Console client descriptor opened with core_connection_open.
103 int core_connection_read(CoreConnection* desc,
    [all...]
core-connection.c 145 CoreConnection* desc; local
146 ANEW0(desc);
147 desc->console_address = console_address[0];
148 desc->ssocket = NULL;
149 desc->stream_name = NULL;
151 return desc;
155 core_connection_free(CoreConnection* desc)
157 if (desc == NULL) {
160 if (desc->ssocket != NULL) {
161 syncsocket_free(desc->ssocket)
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_truetype_font_android.cc 12 const ppapi::proxy::SerializedTrueTypeFontDesc& desc) {
  /external/linux-tools-perf/bench/
mem-memcpy-arch.h 4 #define MEMCPY_FN(fn, name, desc) \
  /external/llvm/include/llvm/CodeGen/
CommandFlags.h 26 MArch("march", cl::desc("Architecture to generate code for (see --version)"));
30 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
37 cl::desc("Target specific attributes (-mattr=help for details)"),
42 cl::desc("Choose relocation model"),
57 cl::desc("Choose code model"),
73 cl::desc("When used with filetype=obj, "
78 cl::desc("Choose a file type (not all types are supported by all targets):"),
89 cl::desc("Do not use .loc entries"));
92 cl::desc("Do not use .cfi_* directives"));
95 cl::desc("Use .file directives with an explicit directory."))
    [all...]
  /external/chromium_org/ppapi/shared_impl/
ppb_image_data_shared.cc 47 const PP_ImageDataDesc& desc) {
48 return PP_FromBool(IsImageDataFormatSupported(desc.format) &&
49 desc.size.width > 0 &&
50 desc.size.height > 0 &&
51 desc.stride > 0);
  /external/chromium_org/third_party/re2/util/
flags.h 13 #define DEFINE_flag(type, name, deflt, desc) \
19 #define DEFINE_bool(name, deflt, desc) DEFINE_flag(bool, name, deflt, desc)
20 #define DEFINE_int32(name, deflt, desc) DEFINE_flag(int32, name, deflt, desc)
21 #define DEFINE_string(name, deflt, desc) DEFINE_flag(string, name, deflt, desc)
  /external/regex-re2/util/
flags.h 13 #define DEFINE_flag(type, name, deflt, desc) \
19 #define DEFINE_bool(name, deflt, desc) DEFINE_flag(bool, name, deflt, desc)
20 #define DEFINE_int32(name, deflt, desc) DEFINE_flag(int32, name, deflt, desc)
21 #define DEFINE_string(name, deflt, desc) DEFINE_flag(string, name, deflt, desc)
  /external/qemu/
qerror.c 26 * The 'desc' parameter is a printf-like string, the format of the format
49 .desc = "Device '%(device)' can't go on a %(bad_bus_type) bus",
53 .desc = "Bus '%(bus)' not found",
57 .desc = "Bus '%(bus)' does not support hotplugging",
61 .desc = "The command %(name) has not been found",
65 .desc = "Device '%(device)' is encrypted",
69 .desc = "Device '%(device)' could not be initialized",
73 .desc = "Device '%(device)' is in use",
77 .desc = "Device '%(device)' is locked",
81 .desc = "Device '%(device)' has multiple child busses"
    [all...]
  /external/chromium_org/ppapi/examples/font/
simple_font.cc 34 pp::BrowserFontDescription desc; local
35 desc.set_family(PP_BROWSERFONT_TRUSTED_FAMILY_SANSSERIF);
36 desc.set_size(100);
37 pp::BrowserFont_Trusted font(this, desc);
49 pp::BrowserFontDescription desc; local
50 pp::BrowserFont_Trusted default_font(this, desc);
57 pp::BrowserFontDescription desc; local
58 desc.set_family(PP_BROWSERFONT_TRUSTED_FAMILY_SERIF);
59 pp::BrowserFont_Trusted serif_font(this, desc);
66 pp::BrowserFontDescription desc; local
75 pp::BrowserFontDescription desc; local
92 pp::BrowserFontDescription desc; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format.h 399 const struct util_format_description *desc = util_format_description(format); local
401 assert(desc);
402 if (!desc) {
406 return desc->name;
412 const struct util_format_description *desc = util_format_description(format); local
414 assert(desc);
415 if (!desc) {
419 return desc->short_name;
428 const struct util_format_description *desc = util_format_description(format); local
434 return desc->layout == UTIL_FORMAT_LAYOUT_PLAIN ? TRUE : FALSE
440 const struct util_format_description *desc = util_format_description(format); local
460 const struct util_format_description *desc = util_format_description(format); local
473 const struct util_format_description *desc = util_format_description(format); local
494 const struct util_format_description *desc = util_format_description(format); local
508 const struct util_format_description *desc = util_format_description(format); local
651 const struct util_format_description *desc = util_format_description(format); local
677 const struct util_format_description *desc = util_format_description(format); local
690 const struct util_format_description *desc = util_format_description(format); local
744 const struct util_format_description *desc = util_format_description(format); local
785 const struct util_format_description *desc = util_format_description(format); local
920 const struct util_format_description *desc = util_format_description(format); local
931 const struct util_format_description *desc = util_format_description(format); local
    [all...]
  /external/javassist/src/main/javassist/runtime/
Desc.java 24 public class Desc {
57 + "' (Desc.useContextClassLoader: "
66 public static Class[] getParams(String desc) {
67 if (desc.charAt(0) != '(')
70 return getType(desc, desc.length(), 1, 0);
77 public static Class getType(String desc) {
78 Class[] result = getType(desc, desc.length(), 0, 0);
85 private static Class[] getType(String desc, int descLen
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format.h 399 const struct util_format_description *desc = util_format_description(format); local
401 assert(desc);
402 if (!desc) {
406 return desc->name;
412 const struct util_format_description *desc = util_format_description(format); local
414 assert(desc);
415 if (!desc) {
419 return desc->short_name;
428 const struct util_format_description *desc = util_format_description(format); local
434 return desc->layout == UTIL_FORMAT_LAYOUT_PLAIN ? TRUE : FALSE
440 const struct util_format_description *desc = util_format_description(format); local
460 const struct util_format_description *desc = util_format_description(format); local
473 const struct util_format_description *desc = util_format_description(format); local
494 const struct util_format_description *desc = util_format_description(format); local
508 const struct util_format_description *desc = util_format_description(format); local
651 const struct util_format_description *desc = util_format_description(format); local
677 const struct util_format_description *desc = util_format_description(format); local
690 const struct util_format_description *desc = util_format_description(format); local
744 const struct util_format_description *desc = util_format_description(format); local
785 const struct util_format_description *desc = util_format_description(format); local
920 const struct util_format_description *desc = util_format_description(format); local
931 const struct util_format_description *desc = util_format_description(format); local
    [all...]

Completed in 684 milliseconds

1 2 3 4 5 6 7 8 91011>>