HomeSort by relevance Sort by last modified time
    Searched defs:memoize (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/tools/json_schema_compiler/
memoize.py 5 def memoize(fn): function
6 '''Decorates |fn| to memoize.
model.py 8 from memoize import memoize namespace
478 @memoize
500 @memoize
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
filter.rb 50 def memoize( rule, start_index, success ) method in class:ANTLR3.FilterMode
  /external/chromium_org/chrome/common/extensions/docs/server2/
fake_host_file_system_provider.py 7 from third_party.json_schema_compiler.memoize import memoize namespace
17 @memoize
environment.py 10 from third_party.json_schema_compiler.memoize import memoize namespace
13 @memoize
host_file_system_provider.py 10 from third_party.json_schema_compiler.memoize import memoize namespace
46 @memoize
69 @memoize
instance_servlet.py 10 from third_party.json_schema_compiler.memoize import memoize namespace
34 @memoize
caching_file_system.py 11 from third_party.json_schema_compiler.memoize import memoize namespace
70 @memoize
72 '''This is a simple wrapper to memoize Futures to directory stats, since
content_providers.py 16 from third_party.json_schema_compiler.memoize import memoize namespace
75 @memoize
86 @memoize
compiled_file_system.py 12 from third_party.json_schema_compiler.memoize import memoize namespace
117 @memoize
128 @memoize
137 @memoize
gitiles_file_system.py 24 from third_party.json_schema_compiler.memoize import memoize namespace
163 @memoize
availability_finder.py 15 from third_party.json_schema_compiler.memoize import memoize namespace
153 @memoize
289 @memoize
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
memoize.js 19 * return cvox.Memoize.memoize(computeIsAccessible_, 'isAccessible', node);
27 * computations in a call to memoize.scope() - memoization is only
32 * cvox.Memoize.scope(function() {
39 goog.provide('cvox.Memoize');
46 cvox.Memoize = function() {
57 cvox.Memoize.nodeMap_ = null;
64 cvox.Memoize.scopeCount_ = 0;
78 cvox.Memoize.scope = function(functionScope) {
81 cvox.Memoize.scopeCount_++
    [all...]
  /external/chromium_org/build/
landmine_utils.py 13 def memoize(default=None): function
29 @memoize()
34 @memoize()
39 @memoize()
44 @memoize()
50 @memoize()
54 @memoize()
67 @memoize()
86 @memoize()
  /external/chromium_org/v8/build/
landmine_utils.py 13 def memoize(default=None): function
29 @memoize()
34 @memoize()
39 @memoize()
44 @memoize()
50 @memoize()
54 @memoize()
67 @memoize()
86 @memoize()
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 760 public function memoize(input:IntStream, function
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
profile.rb 70 def memoize( rule, start_index, success ) method in class:ANTLR3.Profile.ParserEvents
71 @debug_listener.memoize( rule, rule_start_index, sucess )
264 def memoize( rule, start_index, success ) method in class:ANTLR3.Profile.Profiler
recognizers.rb 878 def memoize( rule, start_index, success ) method in class:ANTLR3.rule_memoization
    [all...]
  /external/guava/guava/src/com/google/common/base/
Suppliers.java 83 * memoize}, it is returned directly.
85 public static <T> Supplier<T> memoize(Supplier<T> delegate) { method in class:Suppliers
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3baserecognizer.h 292 void (*memoize) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, member in struct:ANTLR3_BASE_RECOGNIZER_struct
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BaseRecognizer.pm 549 sub memoize { subroutine
550 Readonly my $usage => 'void memoize(IntStream input, int rule_index, int rule_start_index)';
  /external/chromium_org/tools/gyp/pylib/gyp/
common.py 18 class memoize(object): class in inherits:object
133 @memoize
170 @memoize
571 get_edges = memoize(get_edges)
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c 74 static void memoize (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_MARKER ruleIndex, ANTLR3_MARKER ruleParseStart);
171 recognizer->memoize = memoize;
1989 memoize (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_MARKER ruleIndex, ANTLR3_MARKER ruleParseStart) function
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java 833 public void memoize(IntStream input, method in class:BaseRecognizer
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 953 def memoize(self, input, ruleIndex, ruleStartIndex, success): member in class:BaseRecognizer
    [all...]

Completed in 303 milliseconds

1 2