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

1 2 3 4 5 6

  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p7.cpp 13 long double operator "" _w(long double);
14 std::string operator "" _w(const char16_t*, size_t);
15 unsigned operator "" _w(const char*);
17 auto v1 = 1.2_w; // calls operator "" _w(1.2L)
18 auto v2 = u"one"_w; // calls operator "" _w(u"one", 3)
19 auto v3 = 12_w; // calls operator "" _w("12")
20 "two"_w; // expected-error {{no matching literal operator}
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkinter.py 440 self.tk.call('tkwait', 'window', window._w)
448 self.tk.call('tkwait', 'visibility', window._w)
466 self.tk.call('focus', self._w)
472 self.tk.call('focus', '-force', self._w)
488 name = self.tk.call('focus', '-displayof', self._w)
494 name = self.tk.call('focus', '-lastfor', self._w)
510 name = self.tk.call('tk_focusNext', self._w)
515 name = self.tk.call('tk_focusPrev', self._w)
593 if 'displayof' not in kw: kw['displayof'] = self._w
601 if 'displayof' not in kw: kw['displayof'] = self._w
1724 _w = '.' variable in class:Tk
    [all...]
Tix.py 240 self.tk.call('tixForm', self._w, *self._options(cnf, kw))
248 return self.tk.call('tixForm', 'check', self._w)
251 self.tk.call('tixForm', 'forget', self._w)
255 x = self.tk.call('tixForm', 'grid', self._w)
261 return self.tk.call('tixForm', 'grid', self._w, xsize, ysize)
265 return self.tk.call('tixForm', 'info', self._w)
268 return self.tk.call('tixForm', 'info', self._w, option)
274 'tixForm', 'slaves', self._w)))
322 self.tk.call(widgetName, self._w, *extra)
345 self.tk.call('tixSetSilent', self._w, value
    [all...]
ttk.py 563 return self.tk.call(self._w, "identify", x, y)
573 ret = self.tk.call(self._w, "instate", ' '.join(statespec))
590 return self.tk.splitlist(str(self.tk.call(self._w, "state", statespec)))
614 return self.tk.call(self._w, "invoke")
643 return self.tk.call(self._w, "invoke")
672 return self.tk.call(self._w, "bbox", index)
678 return self.tk.call(self._w, "identify", x, y)
685 return bool(self.tk.call(self._w, "validate"))
712 return self.tk.call(self._w, "current", newindex)
717 self.tk.call(self._w, "set", value
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkinter.py 440 self.tk.call('tkwait', 'window', window._w)
448 self.tk.call('tkwait', 'visibility', window._w)
466 self.tk.call('focus', self._w)
472 self.tk.call('focus', '-force', self._w)
488 name = self.tk.call('focus', '-displayof', self._w)
494 name = self.tk.call('focus', '-lastfor', self._w)
510 name = self.tk.call('tk_focusNext', self._w)
515 name = self.tk.call('tk_focusPrev', self._w)
593 if 'displayof' not in kw: kw['displayof'] = self._w
601 if 'displayof' not in kw: kw['displayof'] = self._w
1724 _w = '.' variable in class:Tk
    [all...]
Tix.py 240 self.tk.call('tixForm', self._w, *self._options(cnf, kw))
248 return self.tk.call('tixForm', 'check', self._w)
251 self.tk.call('tixForm', 'forget', self._w)
255 x = self.tk.call('tixForm', 'grid', self._w)
261 return self.tk.call('tixForm', 'grid', self._w, xsize, ysize)
265 return self.tk.call('tixForm', 'info', self._w)
268 return self.tk.call('tixForm', 'info', self._w, option)
274 'tixForm', 'slaves', self._w)))
322 self.tk.call(widgetName, self._w, *extra)
345 self.tk.call('tixSetSilent', self._w, value
    [all...]
ttk.py 563 return self.tk.call(self._w, "identify", x, y)
573 ret = self.tk.call(self._w, "instate", ' '.join(statespec))
590 return self.tk.splitlist(str(self.tk.call(self._w, "state", statespec)))
614 return self.tk.call(self._w, "invoke")
643 return self.tk.call(self._w, "invoke")
672 return self.tk.call(self._w, "bbox", index)
678 return self.tk.call(self._w, "identify", x, y)
685 return bool(self.tk.call(self._w, "validate"))
712 return self.tk.call(self._w, "current", newindex)
717 self.tk.call(self._w, "set", value
    [all...]
  /bionic/libc/stdio/
wbuf.c 51 * make sure _w is 0 (if fully- or un-buffered) or -_bf._size
54 * calls might wrap _w from negative to positive.
56 fp->_w = fp->_lbfsize;
69 * guarantees that putc() will always call wbuf() by setting _w
78 fp->_w--;
fvwrite.c 110 (__SALC | __SSTR) && fp->_w < (int)len) {
123 fp->_w += _size - fp->_bf._size;
128 w = fp->_w;
132 COPY(w); /* copy MIN(fp->_w,len), */
133 fp->_w -= w;
139 /* fp->_w -= w; */ /* unneeded */
152 fp->_w -= w;
176 w = fp->_w + fp->_bf._size;
179 /* fp->_w -= w; */
190 fp->_w -= w
    [all...]
sprintf.c 57 f._bf._size = f._w = INT_MAX;
vsnprintf.c 60 f._bf._size = f._w = n - 1;
vsprintf.c 55 f._bf._size = f._w = INT_MAX;
asprintf.c 39 f._bf._size = f._w = 127; /* Leave room for the NUL */
snprintf.c 61 f._bf._size = f._w = n - 1;
vasprintf.c 39 f._bf._size = f._w = 127; /* Leave room for the NUL */
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
wsetup.c 77 * Make a buffer if necessary, then set _w.
87 fp->_w = 0;
90 fp->_w = fp->_flags & __SNBF ? 0 : fp->_bf._size;
setvbuf.c 115 fp->_w = 0;
149 fp->_w = 0;
152 fp->_w = size;
155 fp->_w = 0;
fpurge.c 64 fp->_w = fp->_flags & (__SLBF|__SNBF|__SRD) ? 0 : fp->_bf._size;
fclose.c 68 fp->_r = fp->_w = 0; /* Mess up if reaccessed. */
  /hardware/libhardware/tests/hwc/
util.h 27 int egl_create(EGLDisplay *_display, EGLSurface *_surface, int *_w, int *_h);
  /external/chromium_org/third_party/simplejson/
decoder.py 182 _w=WHITESPACE.match, _ws=WHITESPACE_STR):
194 end = _w(s, end).end()
217 end = _w(s, end).end()
227 end = _w(s, end + 1).end()
240 end = _w(s, end + 1).end()
257 end = _w(s, end + 1).end()
276 def JSONArray((s, end), scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
280 end = _w(s, end + 1).end()
294 end = _w(s, end + 1).end()
306 end = _w(s, end + 1).end(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
decoder.py 150 object_pairs_hook, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
160 end = _w(s, end).end()
181 end = _w(s, end).end()
190 end = _w(s, end + 1).end()
203 end = _w(s, end + 1).end()
220 end = _w(s, end + 1).end()
237 def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
242 end = _w(s, end + 1).end()
256 end = _w(s, end + 1).end()
267 end = _w(s, end + 1).end(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 150 object_pairs_hook, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
160 end = _w(s, end).end()
181 end = _w(s, end).end()
190 end = _w(s, end + 1).end()
203 end = _w(s, end + 1).end()
220 end = _w(s, end + 1).end()
237 def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
242 end = _w(s, end + 1).end()
256 end = _w(s, end + 1).end()
267 end = _w(s, end + 1).end(
    [all...]
  /external/bison/lib/
stdio-impl.h 55 # define _w pub._w macro
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.h 90 HwcTestDim(): _w(0), _h(0) {};
91 HwcTestDim(uint32_t w, uint32_t h) : _w(w), _h(h) {}
92 uint32_t width(void) const { return _w; }
94 void setWidth(uint32_t w) { _w = w; }
101 uint32_t _w; member in class:HwcTestDim

Completed in 1906 milliseconds

1 2 3 4 5 6