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

1 2

  /prebuilts/jdk/jdk8/darwin-x86/sample/lambda/DefaultMethods/
Reflection.java 54 * Return string representation of the eat action for Animal
56 * @return string representation of the eat action for Animal
58 default String eat() { method in interface:Reflection.Animal
88 * <li> the {@link #eat} is a simple default method that is not overridden
124 Stream.of(Dog.class.getMethod("eat"), Dog.class.getMethod("go"), Dog.class.getMethod("sleep"))
SimplestUsage.java 39 * of the {@link #eat} method.
44 * Return string representation of the eat action for Animal
46 * @return string representation of the eat action for Animal
48 default String eat() { method in interface:SimplestUsage.Animal
55 * The Dog class doesn't have its own implementation of the {@link #eat}
62 * The Mosquito class implements {@link #eat} method, its own implementation
69 * Return string representation of the eat action for Mosquito
71 * @return string representation of the eat action for Mosquito
74 public String eat() { method in class:SimplestUsage.Mosquito
86 System.out.println(new Dog().eat());
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/lambda/DefaultMethods/
Reflection.java 54 * Return string representation of the eat action for Animal
56 * @return string representation of the eat action for Animal
58 default String eat() { method in interface:Reflection.Animal
88 * <li> the {@link #eat} is a simple default method that is not overridden
124 Stream.of(Dog.class.getMethod("eat"), Dog.class.getMethod("go"), Dog.class.getMethod("sleep"))
SimplestUsage.java 39 * of the {@link #eat} method.
44 * Return string representation of the eat action for Animal
46 * @return string representation of the eat action for Animal
48 default String eat() { method in interface:SimplestUsage.Animal
55 * The Dog class doesn't have its own implementation of the {@link #eat}
62 * The Mosquito class implements {@link #eat} method, its own implementation
69 * Return string representation of the eat action for Mosquito
71 * @return string representation of the eat action for Mosquito
74 public String eat() { method in class:SimplestUsage.Mosquito
86 System.out.println(new Dog().eat());
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorAttributeSet.java 65 ElemAttributeSet eat = new ElemAttributeSet(); local
67 eat.setLocaterInfo(handler.getLocator());
70 eat.setPrefixes(handler.getNamespaceSupport());
77 eat.setDOMBackPointer(handler.getOriginatingNode());
78 setPropertiesFromAttributes(handler, rawName, attributes, eat);
79 handler.getStylesheet().setAttributeSet(eat);
81 // handler.pushElemTemplateElement(eat);
84 parent.appendChild(eat);
85 handler.pushElemTemplateElement(eat);
  /external/turbine/java/com/google/turbine/parse/
UnicodeEscapePreprocessor.java 50 eat(); method
66 eat(); method
74 eat(); method
77 eat(); method
79 eat(); method
81 eat(); method
129 private void eat() { method in class:UnicodeEscapePreprocessor
ConstExpressionParser.java 109 eat(); method
113 eat(); method
121 eat(); method
124 eat(); method
127 eat(); method
130 eat(); method
135 eat(); method
156 eat(); method
166 eat(); method
171 eat(); method
174 eat(); method
177 eat(); method
180 eat(); method
183 eat(); method
186 eat(); method
189 eat(); method
192 eat(); method
195 eat(); method
210 eat(); method
242 private void eat() { method in class:ConstExpressionParser
249 eat(); method
257 eat(); method
267 eat(); method
270 eat(); method
356 eat(); method
427 eat(); method
432 eat(); method
439 eat(); method
444 eat(); method
451 eat(); method
455 eat(); method
461 eat(); method
465 eat(); method
503 eat(); method
538 eat(); method
550 eat(); method
562 eat(); method
566 eat(); method
576 eat(); method
579 eat(); method
    [all...]
StreamLexer.java 45 eat(); method
60 private void eat() { method in class:StreamLexer
93 eat(); method
98 eat(); method
102 eat(); method
106 eat(); method
112 eat(); method
119 eat(); method
126 eat(); method
135 eat(); method
144 eat(); method
227 eat(); method
230 eat(); method
233 eat(); method
236 eat(); method
239 eat(); method
242 eat(); method
245 eat(); method
248 eat(); method
251 eat(); method
257 eat(); method
261 eat(); method
265 eat(); method
278 eat(); method
282 eat(); method
286 eat(); method
290 eat(); method
310 eat(); method
314 eat(); method
316 eat(); method
340 eat(); method
343 eat(); method
347 eat(); method
351 eat(); method
359 eat(); method
366 eat(); method
371 eat(); method
380 eat(); method
399 eat(); method
402 eat(); method
405 eat(); method
408 eat(); method
411 eat(); method
414 eat(); method
417 eat(); method
420 eat(); method
434 eat(); method
446 eat(); method
458 eat(); method
482 eat(); method
486 eat(); method
490 eat(); method
494 eat(); method
506 eat(); method
520 eat(); method
531 eat(); method
535 eat(); method
546 eat(); method
578 eat(); method
589 eat(); method
641 eat(); method
651 eat(); method
660 eat(); method
677 eat(); method
690 eat(); method
701 eat(); method
711 eat(); method
722 eat(); method
735 eat(); method
753 eat(); method
763 eat(); method
786 eat(); method
798 eat(); method
802 eat(); method
806 eat(); method
817 eat(); method
819 eat(); method
825 eat(); method
828 eat(); method
831 eat(); method
834 eat(); method
836 eat(); method
842 eat(); method
851 eat(); method
854 eat(); method
857 eat(); method
859 eat(); method
868 eat(); method
870 eat(); method
876 eat(); method
879 eat(); method
882 eat(); method
884 eat(); method
890 eat(); method
893 eat(); method
896 eat(); method
899 eat(); method
905 eat(); method
908 eat(); method
911 eat(); method
917 eat(); method
920 eat(); method
923 eat(); method
929 eat(); method
932 eat(); method
935 eat(); method
941 eat(); method
943 eat(); method
953 eat(); method
955 eat(); method
961 eat(); method
963 eat(); method
975 eat(); method
981 eat(); method
    [all...]
Parser.java 185 eat(Token.INTERFACE);
200 eat(Token.LBRACE);
202 eat(Token.RBRACE);
216 eat(Token.INTERFACE);
218 eat(Token.LBRACE);
220 eat(Token.RBRACE);
234 eat(Token.ENUM);
243 eat(Token.LBRACE);
246 eat(Token.RBRACE);
318 eat(Token.CLASS)
1165 private void eat(Token kind) { method in class:Parser
    [all...]
  /external/llvm/utils/lit/lit/
ShUtil.py 14 def eat(self): member in class:ShLexer
69 self.eat()
72 self.eat()
76 self.eat()
81 str += self.eat()
83 str += self.eat()
89 c = self.eat()
99 c = self.eat()
134 c = self.eat()
165 self.eat()
    [all...]
  /external/ltp/testcases/open_posix_testsuite/functional/semaphores/
sem_philosopher.c 41 int eat(int ID) function
92 eat(PhID);
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
ShUtil.py 13 def eat(self): member in class:ShLexer
68 self.eat()
71 self.eat()
75 self.eat()
80 str += self.eat()
82 str += self.eat()
88 c = self.eat()
98 c = self.eat()
131 c = self.eat()
162 self.eat()
    [all...]
TclUtil.py 30 def eat(self): member in class:TclLexer
76 c = self.eat()
82 str += self.eat()
95 c = self.eat()
102 str += self.escape(self.eat())
116 c = self.eat()
121 str += self.escape(self.eat())
156 self.eat()
158 self.eat()
  /external/toybox/toys/posix/
printf.c 26 static int eat(char **s, char c) function
45 if (eat(&ptr, 'x')) base = 16;
91 if (eat(&f, '\\')) putchar(handle_slash(&f, 0));
92 else if (!eat(&f, '%') || *f == '%') putchar(*f++);
103 if (eat(&f, '*')) {
106 if (i++ || !eat(&f, '.')) break;
116 while (*aa) putchar(eat(&aa, '\\') ? handle_slash(&aa, 1) : *aa++);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
PatternScanner.java 70 public String eat(Pattern pattern, String tokenName) { method in class:PatternScanner
TextGraphReader.java 212 String curCommand = scanner.eat(commandPattern, "<command>");
234 String packageName = scanner.eat(packageNamePattern, "<package-name>");
241 String libraryName = scanner.eat(libraryNamePattern, "<library-name>");
248 curClassName = scanner.eat(wordPattern, "<class-name>");
253 String curFilterName = scanner.eat(wordPattern, "<filter-name>");
260 scanner.eat(curlyOpenPattern, "{");
272 scanner.eat(curlyClosePattern, "}");
277 curSourceFilterName = scanner.eat(wordPattern, "<source-filter-name>");
282 String portString = scanner.eat(portPattern, "[<source-port-name>]");
289 scanner.eat(rightArrowPattern, "=>")
    [all...]
  /external/e2fsprogs/lib/ext2fs/
swapfs.c 218 __u32 *eaf, *eat; local
345 eat = (__u32 *) (((char *) t) + sizeof(struct ext2_inode) +
347 *eat = ext2fs_swab32(*eaf);
350 ext2fs_swap_ext_attr((char *) (eat + 1), (char *) (eaf + 1),
  /external/turbine/java/com/google/turbine/bytecode/sig/
SigParser.java 49 char eat() { method in class:SigParser
71 eat(); method
74 eat(); method
77 eat(); method
90 eat(); method
95 eat(); method
98 while (hasNext() && eat() == '^') {
119 eat(); method
123 while ((ch = eat()) != ':') {
138 eat(); method
143 eat(); method
151 eat(); method
154 eat(); method
157 eat(); method
160 eat(); method
163 eat(); method
166 eat(); method
169 eat(); method
172 eat(); method
175 eat(); method
183 eat(); method
189 eat(); method
199 eat(); method
208 eat(); method
217 eat(); method
221 eat(); method
226 eat(); method
235 name.append(eat()); method
240 eat(); method
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
zic.c 477 eat(const char *const name, const int num) function
737 eat(links[i].l_filename, links[i].l_linenum);
749 eat("command line", 1);
753 eat("command line", 1);
914 eat(rules[i].r_filename, rules[i].r_linenum);
916 eat(rules[i + 1].r_filename, rules[i + 1].r_linenum);
957 eat(zp->z_filename, zp->z_linenum);
996 eat(name, num);
    [all...]
  /prebuilts/tools/common/m2/repository/com/koushikdutta/async/androidasync/2.1.3/
androidasync-2.1.3.jar 
  /external/annotation-tools/asmx/test/lib/
xalan-2.6.0.jar 
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /external/v8/src/inspector/build/closure-compiler/
closure-compiler.jar 

Completed in 777 milliseconds

1 2