HomeSort by relevance Sort by last modified time
    Searched refs:lambda (Results 76 - 100 of 1332) sorted by null

1 2 34 5 6 7 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
lambda.hpp 13 // $Id: lambda.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
19 #include <boost/mpl/aux_/config/lambda.hpp>
remove_if.hpp 23 #include <boost/mpl/lambda.hpp>
53 typename lambda<Predicate>::type
70 typename lambda<Predicate>::type
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_fragprog.c 79 fetch_texel_lod( struct gl_context *ctx, const GLfloat texcoord[4], GLfloat lambda,
89 lambda = CLAMP(lambda, samp->MinLod, samp->MaxLod);
93 &lambda, &rgba);
126 GLfloat lambda; local
129 lambda = _swrast_compute_lambda(texdx[0], texdy[0], /* ds/dx, ds/dy */
136 lambda += lodBias + texUnit->LodBias + samp->LodBias;
138 lambda = CLAMP(lambda, samp->MinLod, samp->MaxLod);
142 &lambda, &rgba)
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 79 fetch_texel_lod( struct gl_context *ctx, const GLfloat texcoord[4], GLfloat lambda,
89 lambda = CLAMP(lambda, samp->MinLod, samp->MaxLod);
93 &lambda, &rgba);
126 GLfloat lambda; local
129 lambda = _swrast_compute_lambda(texdx[0], texdy[0], /* ds/dx, ds/dy */
136 lambda += lodBias + texUnit->LodBias + samp->LodBias;
138 lambda = CLAMP(lambda, samp->MinLod, samp->MaxLod);
142 &lambda, &rgba)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
apply.hpp 20 typename lambda<F>::type
45 typename lambda<F>::type
70 typename lambda<F>::type
95 typename lambda<F>::type
120 typename lambda<F>::type
146 typename lambda<F>::type
  /external/lldb/test/api/multithreaded/
TestMultithreaded.py 19 self.addTearDownHook(lambda: os.remove(self.inferior))
60 self.addTearDownHook(lambda: os.remove(test_name))
77 atexit.register(lambda: lldb.SBDebugger.Terminate())
  /external/chromium_org/build/android/pylib/utils/
host_path_finder.py 18 lambda build_type: os.path.join(out_dir, build_type, file_name),
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/
imap.py 40 lambda x: oauth2.build_xoauth_string(url, consumer, token))
  /external/chromium_org/content/renderer/compositor_bindings/
PRESUBMIT.py 14 source_filter = lambda x: input_api.FilterSourceFile(
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
lint_test_expectations_unittest.py 107 host.port_factory.all_port_names = lambda platform=None: [platform]
123 port.expectations_dict = lambda: {'foo': '-- syntax error1', 'bar': '-- syntax error2'}
125 host.port_factory.get = lambda platform, options=None: port
126 host.port_factory.all_port_names = lambda platform=None: [port.name()]
145 host.port_factory.get = lambda options: orig_get('test', options=options)
153 host.filesystem.exists = lambda path: True
166 lint_test_expectations.check_virtual_test_suites = lambda host, options: False
176 lint_test_expectations.lint = lambda host, options: False
182 lint_test_expectations.lint = lambda host, options: True
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
mocktool_unittest.py 50 self.assertRaises(AttributeError, lambda: options.foo)
  /external/chromium_org/third_party/jstemplate/
compile.py 24 map(lambda src: ('js_code', file(src).read()), srcs) +
  /external/chromium_org/tools/gyp/test/mac/
gyptest-objc-gc.py 19 match = lambda a, b: True)
  /external/chromium_org/v8/tools/testrunner/network/
distro.py 40 self.tests.sort(cmp=lambda x, y: cmp(x.duration, y.duration))
63 shells.sort(cmp=lambda x, y: cmp(x.total_duration, y.total_duration))
68 peers.sort(cmp=lambda x, y: cmp(x.needed_work, y.needed_work))
79 peers.sort(cmp=lambda x, y: cmp(x.needed_work, y.needed_work))
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
templates.cpp 20 auto lambda = [=, &y] () -> T { local
25 return lambda();
40 auto lambda = [=](bool b) { return x + y; }; local
41 return lambda(true); // expected-error{{no viable conversion from 'X' to 'int'}}
47 // Make sure that lambda's operator() can be used from templates.
81 = typeid([=,&r] () -> R& { // expected-error{{lambda expression in an unevaluated operand}}
  /external/lldb/test/expression_command/radar_8638051/
Test8638051.py 42 atexit.register(lambda: lldb.SBDebugger.Terminate())
  /external/lldb/test/functionalities/command_script/import/rdar-12586188/
TestRdar12586188.py 32 atexit.register(lambda: lldb.SBDebugger.Terminate())
  /external/lldb/test/unittest2/test/
test_functiontestcase.py 11 test = unittest2.FunctionTestCase(lambda: None)
125 test = unittest2.FunctionTestCase(lambda: None)
133 test = unittest2.FunctionTestCase(lambda: None)
142 test = unittest2.FunctionTestCase(lambda: None, description=desc)
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/detail/
template_arity_spec.hpp 13 #include <boost/mpl/aux_/config/lambda.hpp>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_contains.py 27 self.assertRaises(TypeError, lambda: 1 in a)
28 self.assertRaises(TypeError, lambda: 1 not in a)
37 self.assertRaises(TypeError, lambda: None in 'abc')
51 self.assertRaises(TypeError, lambda: None in unicode('abc'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_functiontestcase.py 11 test = unittest.FunctionTestCase(lambda: None)
125 test = unittest.FunctionTestCase(lambda: None)
133 test = unittest.FunctionTestCase(lambda: None)
142 test = unittest.FunctionTestCase(lambda: None, description=desc)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_contains.py 27 self.assertRaises(TypeError, lambda: 1 in a)
28 self.assertRaises(TypeError, lambda: 1 not in a)
37 self.assertRaises(TypeError, lambda: None in 'abc')
51 self.assertRaises(TypeError, lambda: None in unicode('abc'))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_functiontestcase.py 11 test = unittest.FunctionTestCase(lambda: None)
125 test = unittest.FunctionTestCase(lambda: None)
133 test = unittest.FunctionTestCase(lambda: None)
142 test = unittest.FunctionTestCase(lambda: None, description=desc)
  /external/chromium_org/build/android/gyp/
jar.py 20 lambda f: not fnmatch.fnmatch(f, exclude), class_files)
33 lambda: build_utils.CheckOutput(jar_cmd, cwd=jar_cwd),
  /external/chromium_org/chrome/common/extensions/docs/server2/
test_util.py 34 return _ReplaceLogging(name, lambda message, *args: print(message % args))
40 return _ReplaceLogging(name, lambda _, *args: None)

Completed in 4424 milliseconds

1 2 34 5 6 7 8 91011>>