/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMTokenList.idl | 30 [RaisesException] boolean contains(DOMString token); 33 [RaisesException, CustomElementCallbacks] boolean toggle(DOMString token, optional boolean force);
|
/external/chromium_org/tools/gn/ |
string_utils.cc | 9 #include "tools/gn/token.h" 16 // token has quotes around it that are not counted by the offset. 17 Err ErrInsideStringToken(const Token& token, size_t offset, size_t size, 20 // The "+1" is skipping over the " at the beginning of the token. 22 Location begin_loc(token.location().file(), 23 token.location().line_number(), 24 token.location().char_offset() + int_offset + 1); 25 Location end_loc(token.location().file(), 26 token.location().line_number() [all...] |
parser.h | 18 typedef scoped_ptr<ParseNode> (Parser::*PrefixFunc)(Token token); 20 Token token); 34 static scoped_ptr<ParseNode> Parse(const std::vector<Token>& tokens, 38 static scoped_ptr<ParseNode> ParseExpression(const std::vector<Token>& tokens, 45 Parser(const std::vector<Token>& tokens, Err* err); 52 scoped_ptr<ParseNode> Literal(Token token); 53 scoped_ptr<ParseNode> Name(Token token) [all...] |
/frameworks/base/core/java/android/app/backup/ |
IRestoreSession.aidl | 47 * @param token The token from {@link getAvailableRestoreSets()} corresponding to 52 int restoreAll(long token, IRestoreObserver observer); 63 * @param token The token from {@link getAvailableRestoreSets()} corresponding to 68 * the contents of the actual back-end dataset named by {@code token}, only 71 int restoreSome(long token, IRestoreObserver observer, in String[] packages);
|
RestoreSet.java | 42 * Token that identifies this backup set unambiguously to the backup/restore 46 public long token; field in class:RestoreSet 56 token = _token; 68 out.writeLong(token); 85 token = in.readLong();
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
MessageSender.java | 27 * @param token The token to identify the sending progress. 33 boolean sendMessage(long token) throws MmsException;
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/ |
ContentTypeParser.java | 65 Token type; 66 Token subtype; 88 Token attrib; 98 Token t; 117 public Token token, jj_nt; field in class:ContentTypeParser 135 token = new Token(); 147 token = new Token(); [all...] |
/external/chromium_org/sandbox/win/src/ |
acl.cc | 14 bool GetDefaultDacl(HANDLE token, 16 if (token == NULL) 22 ::GetTokenInformation(token, TokenDefaultDacl, NULL, 0, &length); 32 if (!::GetTokenInformation(token, TokenDefaultDacl, default_dacl->get(), 58 bool AddSidToDefaultDacl(HANDLE token, const Sid& sid, ACCESS_MASK access) { 59 if (token == NULL) 63 if (!GetDefaultDacl(token, &default_dacl)) 74 BOOL ret = ::SetTokenInformation(token, TokenDefaultDacl, &new_token_dacl, 80 bool AddUserSidToDefaultDacl(HANDLE token, ACCESS_MASK access) { 86 if (!::GetTokenInformation(token, TokenUser, token_user, size, &size) [all...] |
/external/chromium_org/chrome/browser/resources/net_internals/ |
cros_log_entry.js | 70 * Takes a token as input and searches for '['. 71 * We assume if the token contains '[' it contains a process ID. 73 * @param {string} token A token from log 76 var hasProcessID = function(token) { 77 return token != undefined && token.indexOf('[') != -1; 82 * Checks if the input token contains level information. 84 * @param {string} token A token from lo [all...] |
/external/chromium_org/chrome/service/cloud_print/ |
cloud_print_token_store.cc | 29 void CloudPrintTokenStore::SetToken(const std::string& token) { 31 token_ = token;
|
/external/chromium_org/google_apis/gaia/ |
oauth2_token_service_test_util.h | 13 std::string GetValidTokenResponse(std::string token, int expiration); 23 const std::string& token,
|
/external/chromium_org/remoting/webapp/ |
wcs_loader.js | 46 * @param {string} token An OAuth2 access token. 53 remoting.WcsLoader.prototype.start = function(token, onReady, onError) { 64 node.src = remoting.settings.TALK_GADGET_URL + 'iq?access_token=' + token; 71 that.constructWcs_(token, onReady); 75 // validate the token to get a better idea. 83 // We can reach the authentication server and validate the token. Either 89 that.validateToken(token, onValidateOk, onValidateError); 98 * @param {string} token An OAuth2 access token [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebUserGestureToken.cpp | 53 WebUserGestureToken::WebUserGestureToken(PassRefPtr<WebCore::UserGestureToken> token) 55 m_token = token;
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tokiter.h | 39 * Return the next token from this iterator. 40 * @return TRUE if a token was read, or FALSE if no more tokens 43 UBool next(UnicodeString& token, UErrorCode& ec); 46 * Return the one-based line number of the line of the last token 61 UBool nextToken(UnicodeString& token, UErrorCode& ec);
|
/external/icu4c/test/intltest/ |
tokiter.h | 39 * Return the next token from this iterator. 40 * @return TRUE if a token was read, or FALSE if no more tokens 43 UBool next(UnicodeString& token, UErrorCode& ec); 46 * Return the one-based line number of the line of the last token 61 UBool nextToken(UnicodeString& token, UErrorCode& ec);
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_tokenize.h | 20 int16_t token; member in struct:__anon21324 27 uint8_t token; member in struct:__anon21325 40 /* TODO: The Token field should be broken out into a separate char array to
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pyclbr.py | 45 from token import NAME, DEDENT, OP 155 for tokentype, token, start, _end, _line in g: 161 elif token == 'def': 180 elif token == 'class': 189 tokentype, token, start = g.next()[0:3] 191 if token == '(': 197 tokentype, token, start = g.next()[0:3] 198 if token in (')', ',') and level == 1: 217 if token == '(': 219 elif token == ')' [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pyclbr.py | 45 from token import NAME, DEDENT, OP 155 for tokentype, token, start, _end, _line in g: 161 elif token == 'def': 180 elif token == 'class': 189 tokentype, token, start = g.next()[0:3] 191 if token == '(': 197 tokentype, token, start = g.next()[0:3] 198 if token in (')', ',') and level == 1: 217 if token == '(': 219 elif token == ')' [all...] |
/external/chromium_org/google_apis/ |
google_api_keys.py | 18 # The token returned when an API key is unset. 23 """Parses the token from the official file if it exists, else returns None.""" 47 token = ParseLine(current_line) 48 if token: 52 return token 58 """Returns the API token with the given name, or DUMMY_TOKEN by default.""" 61 token = _GetTokenFromOfficialFile(token_name) 62 if token: 63 return token
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
AtomicHTMLToken.h | 112 explicit AtomicHTMLToken(HTMLToken& token) 113 : m_type(token.type()) 120 m_name = AtomicString(token.name()); 121 m_doctypeData = token.releaseDoctypeData(); 127 m_selfClosing = token.selfClosing(); 128 if (StringImpl* tagName = lookupHTMLTag(token.name().data(), token.name().size())) 131 m_name = AtomicString(token.name()); 132 initializeAttributes(token.attributes()); 137 if (token.isAll8BitData() [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
InReplyToParser.java | 79 Token token = lexer.getNextToken(); local 83 Token secToken = lexer.getNextToken(); 85 token.getTokenValue() + "@" + secToken.getTokenValue()); 87 inReplyTo.setCallId(token.getTokenValue()); 101 token = lexer.getNextToken(); 105 Token secToken = lexer.getNextToken(); 107 token.getTokenValue() 111 inReplyTo.setCallId(token.getTokenValue());
|
/frameworks/base/core/java/android/view/ |
DisplayAdjustments.java | 36 public DisplayAdjustments(IBinder token) { 37 mActivityToken = token; 44 public DisplayAdjustments(CompatibilityInfo compatInfo, IBinder token) { 46 mActivityToken = token; 66 public void setActivityToken(IBinder token) { 71 mActivityToken = token;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/database/ |
NoNullCursorAsyncQueryHandler.java | 36 public void startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, 39 super.startQuery(token, projectionCookie, uri, projection, selection, selectionArgs, 44 protected final void onQueryComplete(int token, Object cookie, Cursor cursor) { 47 super.onQueryComplete(token, projectionCookie.originalCookie, cursor); 52 onNotNullableQueryComplete(token, projectionCookie.originalCookie, cursor); 55 protected abstract void onNotNullableQueryComplete(int token, Object cookie, Cursor cursor);
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
ecmametadatapass.py | 29 """Exception indicating a parse error at the given token. 32 token: The token where the parse error occurred. 35 def __init__(self, token, message=None): 36 """Initialize a parse error at the given token with an optional message. 39 token: The token where the parse error occurred. 43 self.token = token 51 start_token: The token where this context starts [all...] |
/external/chromium_org/third_party/closure_linter/closure_linter/ |
ecmametadatapass.py | 29 """Exception indicating a parse error at the given token. 32 token: The token where the parse error occurred. 35 def __init__(self, token, message=None): 36 """Initialize a parse error at the given token with an optional message. 39 token: The token where the parse error occurred. 43 self.token = token 51 start_token: The token where this context starts [all...] |