HomeSort by relevance Sort by last modified time
    Searched full:lambda (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/webkit/WebKitTools/Scripts/webkitpy/
networktransaction_unittest.py 39 self.assertEqual(transaction.run(lambda: 42), 42)
49 transaction.run(lambda: self._raise_exception())
66 self.assertEqual(transaction.run(lambda: self._raise_http_error()), 42)
75 transaction.run(lambda: self._raise_http_error())
diff_parser.py 51 conversion_patterns = (("^diff --git \w/(.+) \w/(?P<FilePath>.+)", lambda matched: "Index: " + matched.group('FilePath') + "\n"),
52 ("^new file.*", lambda matched: "\n"),
53 ("^index [0-9a-f]{7}\.\.[0-9a-f]{7} [0-9]{6}", lambda matched: "===================================================================\n"),
54 ("^--- \w/(?P<FilePath>.+)", lambda matched: "--- " + matched.group('FilePath') + "\n"),
55 ("^\+\+\+ \w/(?P<FilePath>.+)", lambda matched: "+++ " + matched.group('FilePath') + "\n"))
74 return lambda input: input
mock_bugzillatool.py 184 return map(lambda bug_dictionary: Bug(bug_dictionary, self._bugzilla),
189 lambda bug: bug.commit_queued_patches(),
191 return map(lambda bug: bug.id(), bugs_with_commit_queued_patches)
196 return map(lambda patch: patch.id(), unreviewed_patches)
203 bugs_with_reviewed_patches = filter(lambda bug: bug.reviewed_patches(),
205 bug_ids = map(lambda bug: bug.id(), bugs_with_reviewed_patches)
statusserver.py 87 return NetworkTransaction().run(lambda: self._post_to_server(queue_name, status, patch, results_file))
  /external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/
schedulers.py 4 builders = map(lambda builder: (builder['name'], builder['periodic']), builders)
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
upload_unittest.py 38 mock_commit_message_for_this_commit.message = lambda: "Mock message"
39 tool._scm.commit_message_for_this_commit = lambda: mock_commit_message_for_this_commit
76 tool._scm.last_svn_commit_log = lambda: "r9876 |"
queuestest.py 61 tool.user.prompt = lambda message: "yes"
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
abstractstep.py 52 "diff" : lambda self: self._tool.scm().create_patch(),
53 "changelogs" : lambda self: self._tool.scm().modified_changelogs(),
ensurebuildersaregreen.py 47 red_builders_names = map(lambda name: "\"%s\"" % name, red_builders_names) # Add quotes around the names.
steps_unittest.py 55 tool.user.prompt = lambda message: 42
  /build/tools/
compare_fileslist.py 40 lines = map(lambda (x,y): (y,int(x)), lines)
55 rows = sorted(rows, key=lambda x: x[0])
findleaves.py 28 pruneleaves = set(map(lambda x: os.path.split(x)[1], prune))
  /external/tcpdump/
gmpls.c 50 { 150, "Lambda-Switch Capable"},
64 { 8, "Lambda (photonic)"},
110 { 37, "Lambda"},
  /external/webkit/WebKitTools/Scripts/
validate-committer-lists 89 return filter(lambda email: not email_to_committer_map.get(email), emails)
175 authors_missing_email = filter(lambda author: author.find('@') == -1, self._last_commit_time_by_author_cache)
176 authors_with_email = filter(lambda author: author.find('@') != -1, self._last_commit_time_by_author_cache)
177 prefixes_of_authors_with_email = map(lambda author: author.split('@')[0], authors_with_email)
213 authors_and_last_commits.sort(lambda a,b: cmp(a[1], b[1]), reverse=True)
  /external/v8/test/mjsunit/
regexp-UC16.js 30 // "\u03a3\u03c2\u03c3\u039b\u03bb" - Sigma, final sigma, sigma, Lambda, lamda
  /external/webkit/WebKitTools/QueueStatusServer/handlers/
recentstatus.py 38 words = map(lambda word: word.capitalize(), words)
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
HTMLEntities.properties 146 # Lambda 923
170 # lambda 955
  /external/clearsilver/python/examples/base/
who_calls.py 86 lambda x: string.join (x, '|'),
122 pairs = map (lambda x: (x[1],x[0]), d.items())
  /frameworks/base/location/java/android/location/
Location.java 310 double lambda = L; // initial guess local
312 double lambdaOrig = lambda;
313 cosLambda = Math.cos(lambda);
314 sinLambda = Math.sin(lambda);
345 lambda = L +
351 double delta = (lambda - lambdaOrig) / lambda;
  /external/webkit/WebKitTools/CodeCoverage/
run-generate-coverage-data 81 deps = filter(lambda x: base_dir in x, deps)
82 deps = map(lambda x: os.path.abspath(os.path.join(dir, x)), deps)
217 candidates = map(lambda x: parse_dependency_file(x,base_dir,[]), depends)
  /build/core/
checktree 82 files = map(lambda s: cwd+s, files)
  /external/tcpdump/tests/
lmp.new 13 Encoding type: Lambda (photonic)
82 Switching Type: Lambda-Switch Capable (150)
83 Encoding Type: Lambda (photonic) (8)
93 Switching Type: Lambda-Switch Capable (150)
lmp.out 13 Encoding type: Lambda (photonic)
82 Switching Type: Lambda-Switch Capable (150)
83 Encoding Type: Lambda (photonic) (8)
93 Switching Type: Lambda-Switch Capable (150)
  /external/webkit/WebCore/html/
HTMLEntityNames.gperf 65 Lambda, 0x039b
176 lambda, 0x03bb
  /external/v8/tools/
tickprocessor.py 415 self.PrintEntries(cpp_entries, lambda e:e.IsSharedLibraryEntry())
418 self.PrintEntries(js_entries, lambda e:not e.IsSharedLibraryEntry())
421 self.PrintEntries(cpp_entries, lambda e:not e.IsSharedLibraryEntry())
450 entries.sort(key=lambda e: (e.tick_count, e.ToString()), reverse=True)
467 items.sort(key=lambda e: e[1][1], reverse=True)

Completed in 401 milliseconds

1 2 3