/frameworks/base/docs/html/guide/topics/admin/ |
index.jd | 16 bring their personal Android devices to work. In this post, we?re going to have a look at the key
|
/frameworks/wilhelm/tools/hashgen/ |
README.txt | 11 If the differences look OK, then copy the new IID_to_MPH.c back to
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
mempolicy.h | 21 #define MPOL_F_ADDR (1<<1) /* look up vma using address */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
mempolicy.h | 21 #define MPOL_F_ADDR (1<<1) /* look up vma using address */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
mempolicy.h | 21 #define MPOL_F_ADDR (1<<1) /* look up vma using address */
|
/system/core/init/ |
grab-bootchart.sh | 22 echo "look at $TARBALL"
|
/system/extras/tests/bionic/libstdc++/ |
README.TXT | 17 want to add GNU STDC++ or benchmark tests, look in tests/bionic/libc as an
|
/external/llvm/utils/lit/lit/ |
TclUtil.py | 35 def look(self): member in class:TclLexer 81 elif c == '\\' and self.look() in '{}': 113 if self.look().isspace() or self.look() == ';': 125 elif c == '$' and not self.at_end() and (self.look().isalpha() or 126 self.look() == '{'): 145 if self.at_end() or self.look().isspace(): 154 c = self.look() 178 def look(self): member in class:TclExecCommand 199 if self.look() is None [all...] |
ShUtil.py | 18 def look(self): member in class:ShLexer 50 c = self.look() 161 if self.look().isspace(): 179 def look(self): member in class:ShParser 195 tok = self.look() 222 if self.look() == ('!',): 227 while self.look() == ('|',): 235 while self.look(): 239 if not self.look():
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
AttList.java | 98 * Look up an attribute's Namespace URI by index. 114 * Look up an attribute's local name by index. 127 * Look up an attribute's qualified name by index. 179 * Look up an attribute's type by Namespace name. 194 * Look up an attribute's value by name. 209 * Look up an attribute's value by Namespace name. 224 * Look up the index of an attribute by Namespace name. 247 * Look up the index of an attribute by raw XML 1.0 name.
|
/external/chromium/chrome/browser/ui/webui/options/chromeos/ |
cros_language_options_handler.h | 30 // The return value will look like: 40 // The return value will look like:
|
/external/chromium/chrome/browser/ui/webui/options/ |
language_options_handler_common.h | 30 // The return value will look like: 38 // The return value will look like:
|
/external/e2fsprogs/tests/r_inline_xattr/ |
script | 12 # Look at existing inline extended attribute 25 # Look at inline extended attribute in resized fs
|
/packages/apps/Contacts/src/com/android/contacts/format/ |
PrefixHighlighter.java | 40 * @param prefix the prefix to look for 50 * @param prefix the prefix to look for
|
/system/core/include/cutils/ |
config_utils.h | 48 /* look up a child by name and return the boolean value */ 51 /* look up a child by name and return the string value */
|
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/ |
ApiClass.java | 78 // Look at all the values and take the lowest. 93 // now look at the super classes 107 // now look at the interfaces 135 // Look at all the values and take the lowest. 150 // now look at the super classes 221 * @param info the api to look up super classes from 248 * @param info the api to look up super classes from
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
debug.rb | 346 def look( steps = 1 ) method in class:ANTLR3.Debug.TokenStream 349 @debug_listener.look( steps, token ) 354 look( steps ).type 417 # so that a GUI can easily track what look/consume events are 446 # triggered by both peek and look calls. The debugger will want to know 448 # what token was seen at that depth. A remote debugger cannot look 449 # ahead into a file it doesn't have so look events must pass the token 452 def look( i, tree ) method in class:ANTLR3.Debug.EventListener 456 # The parser is going to look arbitrarily ahead; mark this location, 463 # After an arbitrairly long look as with a cyclic DFA (or wit [all...] |
streams.rb | 90 === consume / look / peek 96 to a recognizer at look-ahead position specified by <tt>k</tt>. For 102 <tt>stream.look(k = 1)</tt> is used to retrieve the full object of interest at 103 look-ahead position specified by <tt>k</tt>. While <tt>peek</tt> provides the 105 <tt>look</tt> provides the <i>full object of concern</i> in the stream. For 112 implemented by some method with a name like <tt>LA(k)</tt> and <tt>look</tt> is 115 un-Ruby-like. Thus, I chose <tt>peek</tt> and <tt>look</tt> to represent a 116 quick-look (peek) and a full-fledged look-ahead operation (look). If this cause 411 def look( k = 1 ) # for 1.9 method in class:ANTLR3.that.StringStream 446 def look( k = 1 ) # for 1.8 method in class:ANTLR3.that.StringStream 932 def look( k = 1 ) method in class:ANTLR3.that.CommonTokenStream [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
TreeParser.as | 86 var look:Object = input.LT(1); 87 if ( input.treeAdaptor.getChildCount(look)==0 ) { 94 var tokenType:int = input.treeAdaptor.getType(look); 97 look = input.LT(1); 98 tokenType = input.treeAdaptor.getType(look);
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
TreeParser.js | 56 var look = this.input.LT(1); 57 if ( this.input.getTreeAdaptor().getChildCount(look)===0 ) { 64 tokenType = this.input.getTreeAdaptor().getType(look); 69 look = this.input.LT(1); 70 tokenType = this.input.getTreeAdaptor().getType(look);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTreeParser.m | 123 id look = [input LT:1]; 124 if ( [((ANTLRCommonTreeAdaptor *)[input getTreeAdaptor]) getChildCount:look] == 0) { 131 int tokenType = [((id<ANTLRTreeAdaptor>)[input getTreeAdaptor]) getType:look]; 134 look = [input LT:1]; 135 tokenType = [((id<ANTLRTreeAdaptor>)[input getTreeAdaptor]) getType:look];
|
/external/chromium/chrome/browser/chromeos/ |
version_loader.cc | 21 // File to look for version number in. 28 // File to look for firmware number in. 34 // Beginning of line we look for that gives full version number. 44 // Beginning of line we look for that gives the firmware version. 94 // Split the lines and look for the one that starts with prefix. The version
|
/external/regex-re2/re2/ |
mimics_pcre.cc | 60 // Otherwise look for other reasons to fail. 62 // Look for repeated empty string. 74 // Look for \v 80 // Look for $ in single-line mode. 87 // Look for ^ in multi-line mode.
|
/external/antlr/antlr-3.4/runtime/Python/ |
TODO | 10 - look into buildbot 14 - only look at changes in src/ & runtime/Java 72 - StingStream: look into optimizing LA(). Perhaps use LAk instead of LA(k)
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/ |
debug.rb | 125 def look( i = 1 ) method in class:ANTLR3.Debug.TreeNodeStream 130 @debug_listener.look( i, node ) 139 @debug_listener.look( i, node )
|