HomeSort by relevance Sort by last modified time
    Searched defs:fix (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-hash.js 43 function TestSet(construct, fix) {
44 TestWithProxies(TestSet2, construct, fix)
47 function TestSet2(construct, fix, create) {
48 var handler = {fix: function() { return {} }}
52 fix(p3)
61 fix(p1)
62 fix(p2)
80 function TestMap(construct, fix) {
81 TestWithProxies(TestMap2, construct, fix)
84 function TestMap2(construct, fix, create)
    [all...]
proxies-function.js 34 if (handler.fix === undefined) handler.fix = function() { return {} }
316 fix: function() { return { prototype: { value: prototype } }; },
325 fix: function() { return { length: { value: 2 } } },
476 TestConstructThrow2(Proxy.createFunction({ fix: function() {return {};} },
478 TestConstructThrow2(Proxy.createFunction({ fix: function() {return {};} },
501 var handler = { fix: function() { return {} } }
  /external/deqp/scripts/
check_include_guards.py 82 parser.add_option("-x", "--fix", action="store_true", dest="fix", default=False, help="attempt to fix include guards (use with caution)")
85 fix = options.fix variable
105 if not fix:
110 if fix:
  /external/javassist/src/main/javassist/
ClassMap.java 83 * <code>fix</code> method.
87 * @see #fix(String)
143 public void fix(CtClass clazz) { method in class:ClassMap
144 fix(clazz.getName());
150 public void fix(String name) { method in class:ClassMap
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
re.h 16 struct CharPtn *fix; member in struct:CharPtn
21 CharPtn *fix; member in struct:CharSet
  /cts/tools/dasm/src/java_cup/
lalr_state.java 284 Enumeration i, s, fix; local
379 for (fix = linked_items.all(); fix.hasMoreElements(); )
381 fix_itm = (lalr_item)fix.nextElement();
393 /* fix up the item so it points to the existing set */
  /device/generic/goldfish/gps/
gps_qemu.c 188 GpsLocation fix; member in struct:__anon3037
232 r->fix.size = sizeof(r->fix);
242 if (cb != NULL && r->fix.flags != 0) {
243 D("%s: sending latest fix to new callback", __FUNCTION__);
244 r->callback( &r->fix );
245 r->fix.flags = 0;
283 r->fix.timestamp = (long long)fix_time * 1000;
353 r->fix.flags |= GPS_LOCATION_HAS_LAT_LONG;
354 r->fix.latitude = lat
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
autopep8.py 358 """Fix invalid code.
459 fix = getattr(self, fixed_methodname)
464 is_logical_fix = len(inspect.getargspec(fix).args) > 2
478 modified_lines = fix(result, logical)
480 modified_lines = fix(result)
491 elif modified_lines == []: # Empty list means no fix
497 else: # We assume one-line fix when None.
512 def fix(self): member in class:FixPEP8
527 print('---> {n} issue(s) to fix {progress}'.format(
548 """Fix a badly indented line
    [all...]
  /external/opencv/cv/src/
cvcolor.cpp 471 #define fix(x,n) (int)((x)*(1 << (n)) + 0.5) macro
480 #define cscGr fix(cscGr_32f,csc_shift)
481 #define cscGg fix(cscGg_32f,csc_shift)
482 #define cscGb /*fix(cscGb_32f,csc_shift)*/ ((1 << csc_shift) - cscGr - cscGg)
682 #define yuvYr fix(yuvYr_32f,yuv_shift)
683 #define yuvYg fix(yuvYg_32f,yuv_shift)
684 #define yuvYb fix(yuvYb_32f,yuv_shift)
685 #define yuvCr fix(yuvCr_32f,yuv_shift)
686 #define yuvCb fix(yuvCb_32f,yuv_shift)
696 #define yuvRCr fix(yuvRCr_32f,yuv_shift
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 621 #define fix(x, n) (int)((x)*(1 << (n)) + .5) macro
625 #define C0_707 fix( 0.707106781f, fixb )
626 #define C0_924 fix( 0.923879533f, fixb )
627 #define C0_541 fix( 0.541196100f, fixb )
628 #define C0_382 fix( 0.382683432f, fixb )
629 #define C1_306 fix( 1.306562965f, fixb )
631 #define C1_082 fix( 1.082392200f, fixb )
632 #define C1_414 fix( 1.414213562f, fixb )
633 #define C1_847 fix( 1.847759065f, fixb )
634 #define C2_613 fix( 2.613125930f, fixb
    [all...]
  /external/libpng/contrib/libtests/
pngvalid.c 199 fix(double d) function
    [all...]

Completed in 831 milliseconds