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

/frameworks/base/services/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.java348 * List of window tokens that have finished starting their application,
961 AppTokenList tokens = tasks.get(taskNdx).mAppTokens;
962 for (tokenNdx = tokens.size() - 1; tokenNdx >= 0; --tokenNdx) {
963 final AppWindowToken t = tokens.get(tokenNdx);
1013 AppTokenList tokens = tasks.get(taskNdx).mAppTokens;
1015 final AppWindowToken t = tokens.get(tokenNdx);
3241 List<IApplicationToken> tokens = task.tokens;
3252 for (tokenNdx = localTokens.size() - 1, v = task.tokens.size() - 1;
3259 if (tokens
10027 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/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.java284 * Returns a string containing the tokens joined by delimiters.
285 * @param tokens an array objects to be joined. Strings will be formed from
288 public static String join(CharSequence delimiter, Object[] tokens) { argument
291 for (Object token: tokens) {
303 * Returns a string containing the tokens joined by delimiters.
304 * @param tokens an array objects to be joined. Strings will be formed from
307 public static String join(CharSequence delimiter, Iterable tokens) { argument
310 for (Object token: tokens) {

Completed in 162 milliseconds