Searched defs:tokens (Results 1 - 11 of 11) 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.java56 Watermark(Display display, DisplayMetrics dm, SurfaceSession session, String[] tokens) { argument
59 for (int i=0; i<tokens.length; i++) {
60 Log.i(TAG_WM, " TOKEN #" + i + ": " + tokens[i]);
65 mTokens = tokens;
86 int fontSize = WindowManagerService.getPropertyInt(tokens, 1,
97 mDeltaX = WindowManagerService.getPropertyInt(tokens, 2,
99 mDeltaY = WindowManagerService.getPropertyInt(tokens, 3,
101 int shadowColor = WindowManagerService.getPropertyInt(tokens, 4,
103 int color = WindowManagerService.getPropertyInt(tokens, 5,
105 int shadowRadius = WindowManagerService.getPropertyInt(tokens,
[all...]
H A DWindowManagerService.java413 * List of window tokens that have finished starting their application,
419 * List of window tokens that have finished drawing their own windows and
426 * List of app window tokens that are waiting for replacing windows. If the
532 /** Dump of the windows and app tokens at the time of the last ANR. Cleared after
1174 AppTokenList tokens = tasks.get(taskNdx).mAppTokens;
1175 for (tokenNdx = tokens.size() - 1; tokenNdx >= 0; --tokenNdx) {
1176 final AppWindowToken t = tokens.get(tokenNdx);
1226 AppTokenList tokens = tasks.get(taskNdx).mAppTokens;
1228 final AppWindowToken t = tokens.get(tokenNdx);
3245 List<IApplicationToken> tokens
9882 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/rs/api/
H A DGenerateStubsWhiteList.cpp97 // Split the string in tokens.
99 list<string> tokens{istream_iterator<string>{stream}, istream_iterator<string>{}};
101 for (auto i = tokens.begin(); i != tokens.end();) {
107 // Split the replacement string in tokens.
134 tokens.insert(i, newTokens.begin(), newTokens.end());
135 tokens.erase(i);
139 return tokens;
143 static bool eatFront(list<string>* tokens, const char* prefix) { argument
144 if (tokens
155 findManglingOfBuiltInType(list<string>* tokens) argument
196 mangleType(string vectorSize, list<string>* tokens, vector<string>* previousManglings, string* mangling, string* compressedMangling) argument
307 list<string> tokens = expandTypedefs(p->rsType, apiLevel, intSize, vectorSize); local
[all...]
/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.java288 * Returns a string containing the tokens joined by delimiters.
289 * @param tokens an array objects to be joined. Strings will be formed from
292 public static String join(CharSequence delimiter, Object[] tokens) { argument
295 for (Object token: tokens) {
307 * Returns a string containing the tokens joined by delimiters.
308 * @param tokens an array objects to be joined. Strings will be formed from
311 public static String join(CharSequence delimiter, Iterable tokens) { argument
313 Iterator<?> it = tokens.iterator();
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 230 milliseconds