Searched defs:tokens (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskGroup.java25 public ArrayList<IApplicationToken> tokens = new ArrayList<IApplicationToken>(); field in class:TaskGroup
29 return "id=" + taskId + " tokens=" + tokens;
H A DWatermark.java54 Watermark(Display display, DisplayMetrics dm, SurfaceSession session, String[] tokens) { argument
57 for (int i=0; i<tokens.length; i++) {
58 Log.i(WindowManagerService.TAG, " TOKEN #" + i + ": " + tokens[i]);
63 mTokens = tokens;
84 int fontSize = WindowManagerService.getPropertyInt(tokens, 1,
95 mDeltaX = WindowManagerService.getPropertyInt(tokens, 2,
97 mDeltaY = WindowManagerService.getPropertyInt(tokens, 3,
99 int shadowColor = WindowManagerService.getPropertyInt(tokens, 4,
101 int color = WindowManagerService.getPropertyInt(tokens, 5,
103 int shadowRadius = WindowManagerService.getPropertyInt(tokens,
[all...]
H A DWindowManagerService.java374 * List of window tokens that have finished starting their application,
1083 AppTokenList tokens = tasks.get(taskNdx).mAppTokens;
1084 for (tokenNdx = tokens.size() - 1; tokenNdx >= 0; --tokenNdx) {
1085 final AppWindowToken t = tokens.get(tokenNdx);
1135 AppTokenList tokens = tasks.get(taskNdx).mAppTokens;
1137 final AppWindowToken t = tokens.get(tokenNdx);
3454 List<IApplicationToken> tokens = task.tokens;
3465 for (tokenNdx = localTokens.size() - 1, v = task.tokens.size() - 1;
3472 if (tokens
10720 getPropertyInt(String[] tokens, int index, int defUnits, int defDps, DisplayMetrics dm) argument
[all...]
/frameworks/native/opengl/libagl/
H A DTokenManager.cpp35 status_t TokenManager::getToken(GLsizei n, GLuint *tokens) argument
39 *tokens++ = mTokenizer.acquire();
43 void TokenManager::recycleTokens(GLsizei n, const GLuint *tokens) argument
47 const GLuint token = *tokens++;
H A DTextureObjectManager.cpp303 void EGLSurfaceManager::deleteTextures(GLsizei n, const GLuint *tokens) argument
308 const GLuint t(*tokens++);
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DJsonWebKey.cpp179 * Parses a JSON objects string and initializes a vector of tokens.
184 Vector<String8>* tokens) {
207 tokens->clear();
215 tokens->add(token);
236 // Computes number of tokens. A token marks the type, offset in
183 parseJsonObject(const String8& jsonObject, Vector<String8>* tokens) argument
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java73 private ArrayList<Token> tokens; field in class:AbstractMessageParser
105 this.tokens = new ArrayList<Token>();
144 // Break the text into tokens.
165 for (int i = 0; i < tokens.size(); ++i) {
166 if (tokens.get(i).isMedia()) {
167 if ((i > 0) && (tokens.get(i - 1) instanceof Html)) {
168 ((Html)tokens.get(i - 1)).trimLeadingWhitespace();
170 if ((i + 1 < tokens.size()) && (tokens.get(i + 1) instanceof Html)) {
171 ((Html)tokens
1431 private ArrayList<Token> tokens; field in class:AbstractMessageParser.Part
[all...]
/frameworks/base/core/java/android/text/
H A DTextUtils.java296 * Returns a string containing the tokens joined by delimiters.
297 * @param tokens an array objects to be joined. Strings will be formed from
300 public static String join(CharSequence delimiter, Object[] tokens) { argument
303 for (Object token: tokens) {
315 * Returns a string containing the tokens joined by delimiters.
316 * @param tokens an array objects to be joined. Strings will be formed from
319 public static String join(CharSequence delimiter, Iterable tokens) { argument
322 for (Object token: tokens) {

Completed in 1369 milliseconds