Searched refs:token (Results 151 - 175 of 1600) sorted by relevance

1234567891011>>

/external/chromium_org/testing/android/
H A Dnative_test_util.cc19 std::string token; local
20 base::RemoveChars(tokenizer.token(), "\"", &token);
21 args->push_back(token);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMTokenList.idl31 [RaisesException] boolean contains(DOMString token);
34 [RaisesException, CustomElementCallbacks] boolean toggle(DOMString token, optional boolean force);
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiplusInit.h44 typedef Status (WINAPI *NotificationHookProc)(OUT ULONG_PTR *token);
45 typedef VOID (WINAPI *NotificationUnhookProc)(ULONG_PTR token);
89 // token - may not be NULL - accepts a token to be passed in the corresponding
95 OUT ULONG_PTR *token,
102 extern "C" VOID WINAPI GdiplusShutdown(ULONG_PTR token);
/external/chromium_org/sandbox/win/src/
H A Dacl.cc15 HANDLE token,
17 if (token == NULL)
23 ::GetTokenInformation(token, TokenDefaultDacl, NULL, 0, &length);
33 if (!::GetTokenInformation(token, TokenDefaultDacl, default_dacl->get(),
59 bool AddSidToDefaultDacl(HANDLE token, const Sid& sid, ACCESS_MASK access) { argument
60 if (token == NULL)
64 if (!GetDefaultDacl(token, &default_dacl))
75 BOOL ret = ::SetTokenInformation(token, TokenDefaultDacl, &new_token_dacl,
81 bool AddUserSidToDefaultDacl(HANDLE token, ACCESS_MASK access) { argument
87 if (!::GetTokenInformation(token, TokenUse
14 GetDefaultDacl( HANDLE token, scoped_ptr<TOKEN_DEFAULT_DACL, base::FreeDeleter>* default_dacl) argument
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlSanitizer.java135 HtmlToken token = lexer.next();
136 switch (token.type) {
139 Encoding.decodeHtml(html.substring(token.start, token.end)));
143 html.substring(token.start, token.end)));
146 if (html.charAt(token.start + 1) == '/') { // A close tag.
148 html.substring(token.start + 2, token.end)));
187 html.substring(token
[all...]
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt019lexer.py17 token = lexer.nextToken()
18 if token.type == antlr3.EOF:
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dconflict_resolver.h45 virtual void RunPreflight(scoped_ptr<SyncTaskToken> token) OVERRIDE;
46 void RunExclusive(scoped_ptr<SyncTaskToken> token);
51 void DetachFromNonPrimaryParents(scoped_ptr<SyncTaskToken> token);
52 void DidDetachFromParent(scoped_ptr<SyncTaskToken> token,
56 void RemoveNonPrimaryFiles(scoped_ptr<SyncTaskToken> token);
57 void DidRemoveFile(scoped_ptr<SyncTaskToken> token,
62 scoped_ptr<SyncTaskToken> token);
64 scoped_ptr<SyncTaskToken> token,
/external/chromium_org/chrome/service/cloud_print/
H A Dcloud_print_token_store.cc29 void CloudPrintTokenStore::SetToken(const std::string& token) { argument
31 token_ = token;
/external/chromium_org/remoting/webapp/
H A Dwcs_loader.js46 * @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/devtools/front_end/sources/
H A DCSSSourceFrame.js77 var token = this.textEditor.tokenAtTextPosition(selection.startLine, selection.startColumn);
78 if (!token) {
80 token = this.textEditor.tokenAtTextPosition(selection.startLine, selection.startColumn - 1);
81 if (!token)
84 if (token.type !== "css-number")
87 var cssUnitRange = new WebInspector.TextRange(selection.startLine, token.startColumn, selection.startLine, token.endColumn);
93 selection.startColumn = token.startColumn;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebUserGestureToken.cpp53 WebUserGestureToken::WebUserGestureToken(PassRefPtr<UserGestureToken> token) argument
55 m_token = token;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/formatter/
H A Dfix_double_quote_strings.py15 from lib2to3.pgen2 import token namespace
21 _accept_type = token.STRING
H A Dfix_single_quote_strings.py15 from lib2to3.pgen2 import token namespace
21 _accept_type = token.STRING
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtokiter.h39 * 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/icu/icu4c/source/test/intltest/
H A Dtokiter.h39 * 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/chromium_org/google_apis/
H A Dgoogle_api_keys.py18 # 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/
H A DAtomicHTMLToken.h112 explicit AtomicHTMLToken(HTMLToken& token) argument
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
145 AtomicHTMLToken(const CompactHTMLToken& token) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DInReplyToParser.java79 Token token = lexer.getNextToken();
85 token.getTokenValue() + "@" + secToken.getTokenValue());
87 inReplyTo.setCallId(token.getTokenValue());
101 token = lexer.getNextToken();
107 token.getTokenValue()
111 inReplyTo.setCallId(token.getTokenValue());
H A DSubscriptionStateParser.java78 Token token = lexer.getNextToken();
79 subscriptionState.setState(token.getTokenValue());
85 token = lexer.getNextToken();
86 String value = token.getTokenValue();
91 token = lexer.getNextToken();
92 value = token.getTokenValue();
98 token = lexer.getNextToken();
99 value = token.getTokenValue();
112 token = lexer.getNextToken();
113 value = token
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Decmametadatapass.py29 """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 wher
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
H A DCSSFormatter.js75 * @param {string} token
79 _tokenCallback: function(startLine, token, type, startColumn)
86 var isWhitespace = /^\s+$/.test(token);
93 if (token === "\n")
96 if (token !== "}") {
102 if (token === "}") {
108 } else if (token === ":" && !this._state.inPropertyValue && this._state.seenProperty) {
109 this._builder.addToken(token, startPosition, startLine, startColumn);
115 } else if (token === "{") {
117 this._builder.addToken(token, startPositio
[all...]
/external/srec/srec/EventLog/src/
H A DEventLog.c36 ESR_ReturnCode SR_EventLogToken(SR_EventLog* self, const LCHAR* token, const LCHAR *value) argument
43 return self->token(self, token, value);
46 ESR_ReturnCode SR_EventLogTokenInt(SR_EventLog* self, const LCHAR* token, int value) argument
53 return self->tokenInt(self, token, value);
56 ESR_ReturnCode SR_EventLogTokenPointer(SR_EventLog* self, const LCHAR* token, void* value) argument
63 return self->tokenPointer(self, token, value);
66 ESR_ReturnCode SR_EventLogTokenUint16_t(SR_EventLog* self, const LCHAR* token, asr_uint16_t value) argument
73 return self->tokenUint16_t(self, token, value);
76 ESR_ReturnCode SR_EventLogTokenSize_t(SR_EventLog* self, const LCHAR* token, size_ argument
86 SR_EventLogTokenBool(SR_EventLog* self, const LCHAR* token, ESR_BOOL value) argument
96 SR_EventLogTokenFloat(SR_EventLog* self, const LCHAR* token, float value) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
H A Dparse.py84 token = XmlToken(ELEMENT_START, name, attributes, line, column)
85 self.tokens.append(token)
90 token = XmlToken(ELEMENT_END, name, None, line, column)
91 self.tokens.append(token)
102 token = XmlToken(CHARACTER_DATA, self.character_data, None, line, column)
103 self.tokens.append(token)
124 token = XmlToken(EOF, None, None, line, column)
126 token = self.tokens[self.index]
128 return token
153 self.token
[all...]
/external/mesa3d/src/gallium/tools/trace/
H A Dparse.py84 token = XmlToken(ELEMENT_START, name, attributes, line, column)
85 self.tokens.append(token)
90 token = XmlToken(ELEMENT_END, name, None, line, column)
91 self.tokens.append(token)
102 token = XmlToken(CHARACTER_DATA, self.character_data, None, line, column)
103 self.tokens.append(token)
124 token = XmlToken(EOF, None, None, line, column)
126 token = self.tokens[self.index]
128 return token
153 self.token
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DCommonToken.as45 /** What token number is this from 0..n-1 tokens; < 0 implies invalid index */
48 /** The char position into the input buffer where this token starts */
51 /** The char position into the input buffer where this token stops */
60 var token:CommonToken = new CommonToken(type);
61 token._input = input;
62 token._channel = channel;
63 token._start = start;
64 token._stop = stop;
65 return token;
69 var token
[all...]

Completed in 678 milliseconds

1234567891011>>