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

1 2 3 4 5 6 7 8

  /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/turbine/java/com/google/turbine/binder/lookup/
WildImportIndex.java 51 Suppliers.memoize(
ImportIndex.java 69 Suppliers.memoize(
89 Suppliers.memoize(
MemberImportIndex.java 51 Suppliers.memoize(
62 Suppliers.memoize(
  /external/v8/gypfiles/
landmine_utils.py 13 def memoize(default=None): function
29 @memoize()
34 @memoize()
39 @memoize()
44 @memoize()
51 @memoize()
58 @memoize()
63 @memoize()
76 @memoize()
95 @memoize()
    [all...]
  /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/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js 879 }, method in class:org.antlr.runtime.BaseRecognizer
    [all...]
  /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 100 * memoize}, it is returned directly.
102 public static <T> Supplier<T> memoize(Supplier<T> delegate) { method in class:Suppliers
136 return "Suppliers.memoize(" + delegate + ")";
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_decorators.py 54 def memoize(func): function
130 @memoize
  /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/python/cpython2/Lib/test/
test_decorators.py 54 def memoize(func): function
130 @memoize
  /external/python/cpython3/Lib/test/
test_decorators.py 53 def memoize(func): function
129 @memoize
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_decorators.py 54 def memoize(func): function
130 @memoize
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_decorators.py 54 def memoize(func): function
130 @memoize
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_decorators.py 54 def memoize(func): function
130 @memoize
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_decorators.py 54 def memoize(func): function
130 @memoize
  /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/Python/antlr3/
recognizers.py 953 def memoize(self, input, ruleIndex, ruleStartIndex, success): member in class:BaseRecognizer
    [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/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 197 public void memoize(IntStream input, method in class:Profiler
203 if (dump) System.out.println("memoize "+ruleName);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pickle.py 227 def memoize(self, obj): member in class:Pickler
330 # Save the reduce() output and finally memoize the object
405 self.memoize(obj)
489 self.memoize(obj)
501 self.memoize(obj)
529 self.memoize(obj)
555 self.memoize(obj)
581 self.memoize(obj)
599 self.memoize(obj)
648 self.memoize(obj)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CodeGenerator.java 357 // turn on memoize attribute at grammar level so we can create ruleMemo.
358 // each rule has memoize attr that hides this one, indicating whether
360 String memoize = (String)grammar.getOption("memoize"); local
361 outputFileST.add("memoize",
363 Boolean.valueOf(memoize != null && memoize.equals("true")) &&
365 headerFileST.add("memoize",
367 Boolean.valueOf(memoize != null && memoize.equals("true")) &
    [all...]

Completed in 947 milliseconds

1 2 3 4 5 6 7 8