Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 2562) sorted by relevance

12345678910>>...103

/external/chromium/chrome/browser/resources/keyboard/
Dmain.js97 getPadding: function(mode, height) { argument
107 sizeElement: function(mode, height) { argument
108 var padding = this.getPadding(mode, height);
116 this.modeElements_[mode].style.width = (width - extraWidth) + 'px';
117 this.modeElements_[mode].style.height = (height - extraHeight) + 'px';
118 this.modeElements_[mode].style.marginLeft = margin + 'px';
119 this.modeElements_[mode].style.fontSize = (height / 3.5) + 'px';
120 this.modeElements_[mode].style.paddingTop = padding + 'px';
140 makeDOM: function(mode, height) { argument
170 makeDOM: function(mode, height) { argument
[all …]
/external/e2fsprogs/tests/f_journal/
Dexpect.12 Clearing orphaned inode 37 (uid=0, gid=0, mode=0100600, size=4096)
3 Clearing orphaned inode 90 (uid=0, gid=0, mode=040700, size=1024)
4 Clearing orphaned inode 67 (uid=0, gid=0, mode=0100600, size=4096)
5 Clearing orphaned inode 50 (uid=0, gid=0, mode=0100600, size=4096)
6 Clearing orphaned inode 57 (uid=0, gid=0, mode=040700, size=1024)
7 Clearing orphaned inode 80 (uid=0, gid=0, mode=040700, size=1024)
8 Clearing orphaned inode 45 (uid=0, gid=0, mode=040700, size=1024)
9 Clearing orphaned inode 71 (uid=0, gid=0, mode=0100600, size=4096)
10 Clearing orphaned inode 86 (uid=0, gid=0, mode=040700, size=1024)
11 Clearing orphaned inode 83 (uid=0, gid=0, mode=040700, size=1024)
[all …]
/external/chromium/chrome/browser/prefs/
Dproxy_prefs_unittest.cc12 ProxyPrefs::ProxyMode mode; in TEST() local
13 EXPECT_TRUE(ProxyPrefs::StringToProxyMode("direct", &mode)); in TEST()
14 EXPECT_EQ(ProxyPrefs::MODE_DIRECT, mode); in TEST()
15 EXPECT_TRUE(ProxyPrefs::StringToProxyMode("auto_detect", &mode)); in TEST()
16 EXPECT_EQ(ProxyPrefs::MODE_AUTO_DETECT, mode); in TEST()
17 EXPECT_TRUE(ProxyPrefs::StringToProxyMode("pac_script", &mode)); in TEST()
18 EXPECT_EQ(ProxyPrefs::MODE_PAC_SCRIPT, mode); in TEST()
19 EXPECT_TRUE(ProxyPrefs::StringToProxyMode("system", &mode)); in TEST()
20 EXPECT_EQ(ProxyPrefs::MODE_SYSTEM, mode); in TEST()
21 EXPECT_TRUE(ProxyPrefs::StringToProxyMode("fixed_servers", &mode)); in TEST()
[all …]
/external/webkit/Source/WebKit/chromium/src/
DWorkerFileSystemCallbacksBridge.cpp90 …adFileSystemCallbacks* createLeakedPtr(WorkerFileSystemCallbacksBridge* bridge, const String& mode) in createLeakedPtr() argument
92 …inThreadFileSystemCallbacks> callbacks = adoptPtr(new MainThreadFileSystemCallbacks(bridge, mode)); in createLeakedPtr()
131 MainThreadFileSystemCallbacks(WorkerFileSystemCallbacksBridge* bridge, const String& mode) in MainThreadFileSystemCallbacks() argument
133 , m_mode(mode) in MainThreadFileSystemCallbacks()
156 …kerClient* commonClient, WebFileSystem::Type type, long long size, bool create, const String& mode) in postOpenFileSystemToMainThread() argument
158 …ead(createCallbackTask(&openFileSystemOnMainThread, commonClient, type, size, create, this, mode)); in postOpenFileSystemToMainThread()
161 …ileSystem* fileSystem, const String& sourcePath, const String& destinationPath, const String& mode) in postMoveToMainThread() argument
163 …Thread(createCallbackTask(&moveOnMainThread, fileSystem, sourcePath, destinationPath, this, mode)); in postMoveToMainThread()
166 …ileSystem* fileSystem, const String& sourcePath, const String& destinationPath, const String& mode) in postCopyToMainThread() argument
168 …Thread(createCallbackTask(&copyOnMainThread, fileSystem, sourcePath, destinationPath, this, mode)); in postCopyToMainThread()
[all …]
DWorkerFileSystemCallbacksBridge.h87 …read(WebCommonWorkerClient*, WebFileSystem::Type, long long size, bool create, const String& mode);
88 …oveToMainThread(WebFileSystem*, const String& srcPath, const String& destPath, const String& mode);
89 …opyToMainThread(WebFileSystem*, const String& srcPath, const String& destPath, const String& mode);
90 void postRemoveToMainThread(WebFileSystem*, const String& path, const String& mode);
91 void postRemoveRecursivelyToMainThread(WebFileSystem*, const String& path, const String& mode);
92 void postReadMetadataToMainThread(WebFileSystem*, const String& path, const String& mode);
93 …postCreateFileToMainThread(WebFileSystem*, const String& path, bool exclusive, const String& mode);
94 …reateDirectoryToMainThread(WebFileSystem*, const String& path, bool exclusive, const String& mode);
95 void postFileExistsToMainThread(WebFileSystem*, const String& path, const String& mode);
96 void postDirectoryExistsToMainThread(WebFileSystem*, const String& path, const String& mode);
[all …]
/external/zlib/
Dgzlib.c74 if (state->mode == GZ_READ) { /* for reading ... */
87 local gzFile gz_open(path, fd, mode) in gz_open() argument
90 const char *mode;
103 state->mode = GZ_NONE;
106 while (*mode) {
107 if (*mode >= '0' && *mode <= '9')
108 state->level = *mode - '0';
110 switch (*mode) {
112 state->mode = GZ_READ;
116 state->mode = GZ_WRITE;
[all …]
/external/chromium/sdch/open-vcdiff/src/
Daddrcache.h97 static bool IsSelfMode(unsigned char mode) { in IsSelfMode() argument
98 return mode == VCD_SELF_MODE; in IsSelfMode()
101 static bool IsHereMode(unsigned char mode) { in IsHereMode() argument
102 return mode == VCD_HERE_MODE; in IsHereMode()
105 bool IsNearMode(unsigned char mode) const { in IsNearMode() argument
106 return (mode >= FirstNearMode()) && (mode < FirstSameMode()); in IsNearMode()
109 bool IsSameMode(unsigned char mode) const { in IsSameMode() argument
110 return (mode >= FirstSameMode()) && (mode <= LastMode()); in IsSameMode()
122 VCDAddress DecodeNearAddress(unsigned char mode, in DecodeNearAddress() argument
124 return NearAddress(mode - FirstNearMode()) + encoded_address; in DecodeNearAddress()
[all …]
/external/webkit/Source/WebCore/svg/
DSVGPathByteStreamBuilder.cpp37 void SVGPathByteStreamBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode) in moveTo() argument
40 writeSegmentType(mode == RelativeCoordinates ? PathSegMoveToRel : PathSegMoveToAbs); in moveTo()
44 void SVGPathByteStreamBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode) in lineTo() argument
47 writeSegmentType(mode == RelativeCoordinates ? PathSegLineToRel : PathSegLineToAbs); in lineTo()
51 void SVGPathByteStreamBuilder::lineToHorizontal(float x, PathCoordinateMode mode) in lineToHorizontal() argument
54 …writeSegmentType(mode == RelativeCoordinates ? PathSegLineToHorizontalRel : PathSegLineToHorizonta… in lineToHorizontal()
58 void SVGPathByteStreamBuilder::lineToVertical(float y, PathCoordinateMode mode) in lineToVertical() argument
61 …writeSegmentType(mode == RelativeCoordinates ? PathSegLineToVerticalRel : PathSegLineToVerticalAbs… in lineToVertical()
65 …oatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) in curveToCubic() argument
68 writeSegmentType(mode == RelativeCoordinates ? PathSegCurveToCubicRel : PathSegCurveToCubicAbs); in curveToCubic()
[all …]
DSVGPathStringBuilder.cpp38 void SVGPathStringBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode) in moveTo() argument
40 if (mode == AbsoluteCoordinates) in moveTo()
46 void SVGPathStringBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode) in lineTo() argument
48 if (mode == AbsoluteCoordinates) in lineTo()
54 void SVGPathStringBuilder::lineToHorizontal(float x, PathCoordinateMode mode) in lineToHorizontal() argument
56 if (mode == AbsoluteCoordinates) in lineToHorizontal()
62 void SVGPathStringBuilder::lineToVertical(float y, PathCoordinateMode mode) in lineToVertical() argument
64 if (mode == AbsoluteCoordinates) in lineToVertical()
70 …oatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) in curveToCubic() argument
72 if (mode == AbsoluteCoordinates) in curveToCubic()
[all …]
DSVGPathSegListBuilder.cpp52 void SVGPathSegListBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode) in moveTo() argument
56 if (mode == AbsoluteCoordinates) in moveTo()
62 void SVGPathSegListBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode) in lineTo() argument
66 if (mode == AbsoluteCoordinates) in lineTo()
72 void SVGPathSegListBuilder::lineToHorizontal(float x, PathCoordinateMode mode) in lineToHorizontal() argument
76 if (mode == AbsoluteCoordinates) in lineToHorizontal()
82 void SVGPathSegListBuilder::lineToVertical(float y, PathCoordinateMode mode) in lineToVertical() argument
86 if (mode == AbsoluteCoordinates) in lineToVertical()
92 …oatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) in curveToCubic() argument
96 if (mode == AbsoluteCoordinates) in curveToCubic()
[all …]
/external/webkit/Tools/DumpRenderTree/gtk/fonts/
Dfonts.conf13 <edit name="hinting" mode="assign">
38 <edit name="family" mode="assign">
46 <edit name="family" mode="assign">
54 <edit name="family" mode="assign">
65 <edit name="family" mode="assign">
73 <edit name="family" mode="assign">
83 <edit name="family" mode="assign">
91 <edit name="family" mode="assign">
146 <edit name="family" mode="assign">
154 <edit name="family" mode="assign">
[all …]
/external/zlib/contrib/iostream3/
Dzfstream.cc52 std::ios_base::openmode mode) in open() argument
58 if ((mode & std::ios_base::in) && (mode & std::ios_base::out)) in open()
63 if (!this->open_mode(mode, char_mode)) in open()
72 io_mode = mode; in open()
80 std::ios_base::openmode mode) in attach() argument
86 if ((mode & std::ios_base::in) && (mode & std::ios_base::out)) in attach()
91 if (!this->open_mode(mode, char_mode)) in attach()
100 io_mode = mode; in attach()
131 gzfilebuf::open_mode(std::ios_base::openmode mode, in open_mode() argument
134 bool testb = mode & std::ios_base::binary; in open_mode()
[all …]
/external/dbus/cmake/modules/
DProjectSourceGroup.cmake2 # mode==flat : headers and ourses in no folders
3 # mode==split : standard behavior of cmake, split headers and sources
4 # mode== <other values" : code is in this folder
5 macro(project_source_group mode sources headers)
6 #message(STATUS ${mode})
8 if(${mode} MATCHES "flat")
12 else(${mode} MATCHES "flat")
13 if(NOT ${mode} MATCHES "split")
14 source_group("${mode}" FILES ${${sources}} ${${headers}})
15 endif(NOT ${mode} MATCHES "split")
[all …]
/external/skia/src/effects/
DSkPorterDuff.cpp24 #define MAKE_PAIR(mode) { SkPorterDuff::k##mode##_Mode, SkXfermode::k##mode##_Mode } argument
67 SkXfermode::Mode SkPorterDuff::ToXfermodeMode(Mode mode) { in ToXfermodeMode() argument
68 SkASSERT((unsigned)mode < SkPorterDuff::kModeCount); in ToXfermodeMode()
69 const Pair& pair = gPairs[mode]; in ToXfermodeMode()
70 SkASSERT(pair.fPD == mode); in ToXfermodeMode()
74 SkXfermode* SkPorterDuff::CreateXfermode(SkPorterDuff::Mode mode) { in CreateXfermode() argument
75 const Pair& pair = gPairs[mode]; in CreateXfermode()
76 SkASSERT(pair.fPD == mode); in CreateXfermode()
88 SkXfermodeProc SkPorterDuff::GetXfermodeProc(Mode mode) { in GetXfermodeProc() argument
89 return SkXfermode::GetProc(gPairs[mode].fXF); in GetXfermodeProc()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/ggi/
DSDL_ggivideo.c147 ggi_mode mode = in GGI_VideoInit() local
186 ggiCheckMode(VIS, &mode); in GGI_VideoInit()
189 err = ggiSetMode(VIS, &mode); in GGI_VideoInit()
201 this->info.current_w = mode.virt.x; in GGI_VideoInit()
202 this->info.current_h = mode.virt.y; in GGI_VideoInit()
205 if (GT_SCHEME(mode.graphtype) == GT_PALETTE) in GGI_VideoInit()
230 this->info.video_mem = db->buffer.plb.stride * mode.virt.y; in GGI_VideoInit()
235 video_mode.w = mode.virt.x; in GGI_VideoInit()
236 video_mode.h = mode.virt.y; in GGI_VideoInit()
253 ggi_mode mode = in GGI_SetVideoMode() local
[all …]
/external/apache-harmony/support/src/test/java/tests/support/
DSupport_Configuration.java222 int mode = NONE, unicode = 0, count = 0, nextChar; in load() local
227 if (mode == UNICODE) { in load()
235 mode = NONE; in load()
241 if (mode == SLASH) { in load()
242 mode = NONE; in load()
245 mode = CONTINUE; // Look for a following \n in load()
248 mode = IGNORE; // Ignore whitespace on the next line in load()
266 mode = UNICODE; in load()
284 if (mode == CONTINUE) { // Part of a \r\n sequence in load()
285 mode = IGNORE; // Ignore whitespace on the next line in load()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/dga/
DSDL_dgavideo.c178 SDL_Rect *mode; in DGA_AddMode() local
188 mode = SDL_modelist[index][SDL_nummodes[index]-1]; in DGA_AddMode()
189 if ( (mode->w == w) && (mode->h == h) ) { in DGA_AddMode()
195 mode = (SDL_Rect *)SDL_malloc(sizeof *mode); in DGA_AddMode()
196 if ( mode == NULL ) { in DGA_AddMode()
200 mode->x = 0; in DGA_AddMode()
201 mode->y = 0; in DGA_AddMode()
202 mode->w = w; in DGA_AddMode()
203 mode->h = h; in DGA_AddMode()
212 SDL_free(mode); in DGA_AddMode()
[all …]
/external/kernel-headers/original/linux/
Dqic117.h112 unused, mode, motion, report enumerator
128 /* 0*/ {NULL, 0x00, 0x00, mode, 0, discretional},\
133 /* 5*/ {"alternate command timeout", 0x00, 0x00, mode, 0, required},\
143 /*15*/ {"enter format mode", 0x1f, 0x05, mode, 0, required},\
145 /*17*/ {"enter verify mode", 0x37, 0x25, mode, 0, required},\
151 /*23*/ {"soft select", 0x00, 0x00, mode, 0, discretional},\
152 /*24*/ {"soft deselect", 0x00, 0x00, mode, 0, discretional},\
155 /*27*/ {"select rate or format", 0x03, 0x01, mode, 0, required /* [ccs2] */},\
156 /*28*/ {"enter diag mode 1", 0x00, 0x00, mode, 0, discretional},\
157 /*29*/ {"enter diag mode 2", 0x00, 0x00, mode, 0, discretional},\
[all …]
Dproc_fs.h54 mode_t mode; member
109 extern struct proc_dir_entry *create_proc_entry(const char *name, mode_t mode,
160 extern struct proc_dir_entry *proc_mkdir_mode(const char *name, mode_t mode,
164 mode_t mode, struct proc_dir_entry *base, in create_proc_read_entry() argument
167 struct proc_dir_entry *res=create_proc_entry(name,mode,base); in create_proc_read_entry()
176 mode_t mode, struct proc_dir_entry *base, get_info_t *get_info) in create_proc_info_entry() argument
178 struct proc_dir_entry *res=create_proc_entry(name,mode,base); in create_proc_info_entry()
184 mode_t mode, get_info_t *get_info) in proc_net_create() argument
186 return create_proc_info_entry(name,mode,proc_net,get_info); in proc_net_create()
190 mode_t mode, const struct file_operations *fops) in proc_net_fops_create() argument
[all …]
/external/iproute2/ip/
Diplink_macvlan.c42 __u32 mode = 0; in macvlan_parse_opt() local
46 mode = MACVLAN_MODE_PRIVATE; in macvlan_parse_opt()
48 mode = MACVLAN_MODE_VEPA; in macvlan_parse_opt()
50 mode = MACVLAN_MODE_BRIDGE; in macvlan_parse_opt()
54 addattr32(n, 1024, IFLA_MACVLAN_MODE, mode); in macvlan_parse_opt()
71 __u32 mode; in macvlan_print_opt() local
80 mode = *(__u32 *)RTA_DATA(tb[IFLA_VLAN_ID]); in macvlan_print_opt()
82 mode == MACVLAN_MODE_PRIVATE ? "private" in macvlan_print_opt()
83 : mode == MACVLAN_MODE_VEPA ? "vepa" in macvlan_print_opt()
84 : mode == MACVLAN_MODE_BRIDGE ? "bridge" in macvlan_print_opt()
/external/srec/portable/src/
Dpstream.c49 #define ISWRITEMODE(mode) (((mode)&FILEWRITEMODE) == FILEWRITEMODE) argument
51 #define ISBINARYMODE(mode) (((mode)&FILEBINARYMODE) == FILEBINARYMODE) argument
52 #define ISREOPENMODE(mode) (((mode)&FILEREOPENMODE) == FILEREOPENMODE) argument
170 PORT_FILE PortFopen(const char *filename, const char *mode) in PortFopen() argument
183 passert(mode); in PortFopen()
192 if (mode[0] == 'r' || mode[0] == 'w' || mode[0] == 'R') /* w means w+, attaching text */ in PortFopen()
197 access_mode = (mode[0] == 'r') ? FILEREADMODE : FILEWRITEMODE; in PortFopen()
200 if (mode[1] == '+') in PortFopen()
201 text_mode = (mode[2] == 'b') ? FILEBINARYMODE : FILETEXTMODE; in PortFopen()
203 text_mode = (mode[1] == 'b') ? FILEBINARYMODE : FILETEXTMODE; in PortFopen()
[all …]
/external/webp/src/enc/
Dtree.c270 static int PutI4Mode(VP8BitWriter* const bw, int mode, in PutI4Mode() argument
272 if (VP8PutBit(bw, mode != B_DC_PRED, prob[0])) { in PutI4Mode()
273 if (VP8PutBit(bw, mode != B_TM_PRED, prob[1])) { in PutI4Mode()
274 if (VP8PutBit(bw, mode != B_VE_PRED, prob[2])) { in PutI4Mode()
275 if (!VP8PutBit(bw, mode >= B_LD_PRED, prob[3])) { in PutI4Mode()
276 if (VP8PutBit(bw, mode != B_HE_PRED, prob[4])) { in PutI4Mode()
277 VP8PutBit(bw, mode != B_RD_PRED, prob[5]); in PutI4Mode()
280 if (VP8PutBit(bw, mode != B_LD_PRED, prob[6])) { in PutI4Mode()
281 if (VP8PutBit(bw, mode != B_VL_PRED, prob[7])) { in PutI4Mode()
282 VP8PutBit(bw, mode != B_HD_PRED, prob[8]); in PutI4Mode()
[all …]
/external/icu4c/tools/genpname/
Dpreparse.pl1008 my $mode = ''; # state machine mode and submode
1030 if ($mode && $mode ne 'DEPRECATED') {
1032 $mode = '';
1039 if ($mode eq 'UScriptCode') {
1048 elsif ($mode eq 'DEPRECATED') {
1053 $mode = '';
1057 elsif (!$mode) {
1060 $mode = $1;
1065 $mode = 'DEPRECATED';
1097 my $mode = ''; # state machine mode and submode
[all …]
/external/libvpx/vpx_ports/
Dx86.h164 x87_set_control_word(unsigned short mode) in x87_set_control_word() argument
166 __asm__ __volatile__("fldcw %0" : : "m"(*&mode)); in x87_set_control_word()
171 unsigned short mode; in x87_get_control_word() local
172 __asm__ __volatile__("fstcw %0\n\t":"=m"(*&mode):); in x87_get_control_word()
173 return mode; in x87_get_control_word()
177 extern void vpx_winx64_fldcw(unsigned short mode);
183 x87_set_control_word(unsigned short mode) in x87_set_control_word() argument
185 __asm { fldcw mode } in x87_set_control_word()
190 unsigned short mode; in x87_get_control_word() local
191 __asm { fstcw mode } in x87_get_control_word()
[all …]
/external/webkit/Source/JavaScriptCore/wtf/
DHexNumber.h34 static const char* hexDigitsForMode(HexConversionMode mode) in hexDigitsForMode() argument
38 return mode == Lowercase ? lowerHexDigits : upperHexDigits; in hexDigitsForMode()
44 inline void appendByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase)
46 const char* hexDigits = Internal::hexDigitsForMode(mode);
52 …IfPossible(unsigned char byte, T& destination, unsigned& index, HexConversionMode mode = Uppercase)
54 const char* hexDigits = Internal::hexDigitsForMode(mode);
61 inline void placeByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase)
63 const char* hexDigits = Internal::hexDigitsForMode(mode);
69 inline void appendUnsignedAsHex(unsigned number, T& destination, HexConversionMode mode = Uppercase)
71 const char* hexDigits = Internal::hexDigitsForMode(mode);
[all …]

12345678910>>...103