HomeSort by relevance Sort by last modified time
    Searched refs:lambda (Results 651 - 675 of 1923) sorted by null

<<21222324252627282930>>

  /external/clang/test/SemaCXX/
MicrosoftSuper.cpp 11 // expected-error@+1 {{use of '__super' inside a lambda is unsupported}}
12 auto lambda = []{ __super::foo(); }; local
  /external/libxml2/python/tests/
input_callback.py 112 test_callback=lambda: libxml2.popInputCallbacks(),
  /external/mesa3d/src/mesa/swrast/
s_span.h 56 #define SPAN_LAMBDA 0x20 /**< array.lambda[] valid? */
91 GLfloat lambda[MAX_TEXTURE_COORD_UNITS][SWRAST_MAX_WIDTH]; /**< Texture LOD */ member in struct:sw_span_arrays
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
PnPProblem.cpp 202 double lambda = 8; local
208 point2d_vec.at<double>(0) = u * lambda;
209 point2d_vec.at<double>(1) = v * lambda;
210 point2d_vec.at<double>(2) = lambda;
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/scenario/
Scenario.py 71 lambda rawCriterions:
  /external/parameter-framework/upstream/tools/coverage/
coverage.py 356 self.debug(lambda: "Nb of solutions: %s" % len(dom.getElementsByTagName(tag)))
399 "Includes" : lambda criterion, value: criterion.stateIncludes(value),
400 "Excludes" : lambda criterion, value: not criterion.stateIncludes(value),
401 "Is" : lambda criterion, value: criterion.stateIs(value),
402 "IsNot" : lambda criterion, value: not criterion.stateIs(value)
412 self.isApplicableOperation = lambda criterion: applicableOperationWithoutValue(criterion, self.value)
798 lambda criterion: criterion.reset()
812 changeCriterionOperation = lambda criterion : criterion.changeState(newCriterionState)
830 usedOperation = lambda element : element.used(self.criteria)
    [all...]
  /external/v8/build/android/
adb_command_line.py 50 descriptions = all_devices.pMap(lambda d: d.build_description).pGet(None)
emma_coverage_stats_test.py 380 coverage_stats.GetPackageNameFromFile = lambda x: package_names[x]
387 self.simple_coverage._emma_parser.GetLineCoverage = lambda x: line_coverage
448 self.simple_coverage._emma_parser.GetLineCoverage = lambda x: []
512 lambda x: coverage_info[x])
  /external/v8/build/android/gyp/
apk_install.py 37 apk_matcher = lambda s: re.match('.*%s(-[0-9]*)?(.apk)?$' % apk_package, s)
finalize_apk.py 117 lambda: FinalizeApk(options),
jar.py 79 predicate = lambda f: not build_utils.MatchesGlob(f, excluded_classes)
jar_toc.py 92 lambda: UpdateToc(jar_path, toc_path),
  /external/v8/build/android/gyp/util/
build_device.py 55 apk_matcher = lambda s: re.match('.*%s(-[0-9]*)?.apk$' % apk_package, s)
  /external/v8/build/android/pylib/
chrome_test_server_spawner.py 70 return _WaitUntil(lambda: ports.IsHostPortAvailable(port))
75 return _WaitUntil(lambda: not ports.IsHostPortAvailable(port))
80 return _WaitUntil(lambda: ports.IsDevicePortUsed(device, port))
256 _WaitUntil(lambda: self.stop_flag, max_attempts=sys.maxint)
  /external/v8/tools/gyp/pylib/gyp/
easy_xml.py 87 all_strings = reduce(lambda x, y: x and isinstance(y, str), rest, True)
  /external/v8/tools/testrunner/local/
execution.py 199 slow_key = lambda t: statusfile.IsSlow(t.outcomes)
201 self.tests.sort(key=lambda t: t.duration, reverse=True)
357 self._RunPerfSafe(lambda: self.perfdata.UpdatePerfData(test))
362 self._RunPerfSafe(lambda: self.perf_data_manager.close())
  /external/webrtc/
PRESUBMIT.py 138 file_filter = lambda f: f.LocalPath().endswith(('.cc', '.h'))
258 source_file_filter = lambda x: input_api.FilterSourceFile(
363 source_file_filter = lambda x: input_api.FilterSourceFile(x, None, black_list)
405 long_lines_sources = lambda x: input_api.FilterSourceFile(x,
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_enhancer.h 114 // Bisection search for optimal |lambda|.
130 // Analytically solves quadratic for optimal gains given |lambda|.
132 void SolveForGainsGivenLambda(float lambda, size_t start_freq, float* sols);
  /libcore/
JavaLibrary.mk 146 LOCAL_MODULE := core-lambda-stubs
197 LOCAL_JAVA_LIBRARIES := core-oj core-libart core-lambda-stubs okhttp core-junit bouncycastle mockito-target
226 LOCAL_JAVA_LIBRARIES := core-oj core-libart core-lambda-stubs core-junit
237 LOCAL_JAVA_LIBRARIES := core-oj core-libart core-lambda-stubs okhttp bouncycastle
257 LOCAL_JAVA_LIBRARIES := core-oj core-libart core-lambda-stubs okhttp bouncycastle testng
335 LOCAL_MODULE := core-lambda-stubs-hostdex
347 LOCAL_JAVA_LIBRARIES := core-oj-hostdex core-libart-hostdex core-lambda-stubs-hostdex okhttp-hostdex bouncycastle-hostdex core-junit-hostdex core-tests-support-hostdex mockito-api-hostdex
377 LOCAL_JAVA_LIBRARIES := core-oj-hostdex core-libart-hostdex core-lambda-stubs-hostdex okhttp-hostdex bouncycastle-hostdex
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
arg.hpp 44 # include <boost/mpl/aux_/config/lambda.hpp>
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/
test_dbtables.py 125 conditions={col0: lambda x: pickle.loads(x) >= 8})
128 conditions={col0: lambda x:
211 conditions={'c': lambda c: c == 'meep'})
317 'p':lambda s: not s})
  /prebuilts/gdb/darwin-x86/lib/python2.7/
hmac.py 47 self.digest_cons = lambda d='': digestmod.new(d)
inspect.py 427 suffixes = map(lambda info:
578 pat = re.compile(r'^(\s*def\s)|(.*(?<!\w)lambda(:|\s))|^(\s*@)')
645 # look for the first "def", "class" or "lambda"
646 if token in ("def", "class", "lambda"):
647 if token == "lambda":
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/
runtktests.py 86 lambda x: x.startswith('test_') and x.endswith(py_ext),
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_atexit.py 31 atexit.register(lambda: 1, 0, 0, (x for x in (1,2)), 0, 0)

Completed in 1805 milliseconds

<<21222324252627282930>>