Searched defs:group (Results 1 - 15 of 15) sorted by relevance

/dalvik/libcore/regex/src/main/java/java/util/regex/
H A DMatchResult.java21 * given string. The result is divided into groups, with one group for each
22 * pair of parentheses in the regular expression and an additional group for
23 * the whole regular expression. The start, end, and contents of each group
45 * a given group.
47 * @param group
48 * the group, ranging from 0 to groupCount() - 1, with 0
55 int end(int group); argument
64 String group(); method in interface:MatchResult
67 * Returns the text that matched a given group of the regular expression.
69 * @param group
77 group(int group) argument
111 start(int group) argument
[all...]
H A DMatchResultImpl.java35 * elements specifiy start and end of the zero group, the next two specify
36 * group 1, and so on.
49 public int end(int group) { argument
50 return offsets[2 * group + 1];
53 public String group() { method in class:MatchResultImpl
57 public String group(int group) { argument
58 int from = offsets[group * 2];
59 int to = offsets[(group * 2) + 1];
75 public int start(int group) { argument
[all...]
H A DMatcher.java36 * System.out.println(m.group()); // prints "Hello" and "Android"
494 * group.
496 * @param group
497 * the group, ranging from 0 to groupCount() - 1, with 0
504 public int start(int group) throws IllegalStateException { argument
506 return matchOffsets[group * 2];
524 * a given group.
526 * @param group
527 * the group, ranging from 0 to groupCount() - 1, with 0
534 public int end(int group) { argument
547 public String group() { method in class:Matcher
562 group(int group) argument
[all...]
/dalvik/dx/tests/098-dex-jsr-ret-throw/
H A DViewDebug$ViewServer.class ... .graphics.Bitmap cache android.view.ViewGroup group android.view.View captureView android.view. ...
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/utils/
H A DObjectIdentifier.java59 // OID's group
60 private Object group; field in class:ObjectIdentifier
82 * @param oidGroup - OID's group. Is used to separate different OID's
93 this.group = oidGroup;
118 * Gets OID's group.
120 * @return group
123 return group;
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
H A DGroupImpl.java31 private String group; field in class:GroupImpl
35 group = s;
41 if(group.equals(principal.toString())) {
64 return group.equals(group1.toString());
73 return group;
77 return group.hashCode();
90 return group;
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DExecutors.java252 * java.lang.SecurityManager}, it uses the group of {@link
253 * System#getSecurityManager}, else the group of the thread
530 final ThreadGroup group; field in class:Executors.DefaultThreadFactory
536 group = (s != null)? s.getThreadGroup() :
544 Thread t = new Thread(group, r,
/dalvik/libcore/luni/src/main/java/java/lang/
H A DSecurityManager.java127 // Only worry about system threads. Dead threads have a null group.
128 ThreadGroup group = thread.getThreadGroup();
129 if ((group != null) && (group.parent == null)) {
136 * thread group.
138 * @param group
139 * the thread group to access.
141 * if {@code group} is {@code null}.
143 * if the calling thread is not allowed to access {@code group}.
146 public void checkAccess(ThreadGroup group) { argument
[all...]
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DThreadGroupTest.java35 public MyThread(ThreadGroup group, String name) argument
37 super(group, name);
96 "Has to be possible to create a subgroup of current group using simple constructor",
148 assertTrue("Has to be possible to create a subgroup of current group",
155 assertTrue("Has to be possible to create a subgroup of root group",
167 assertNull("Can't create a subgroup of a destroyed group",
241 ThreadGroup tg = new ThreadGroup("group count");
254 new ThreadGroup(tg, "test group 1");
257 new ThreadGroup(tg, "test group 2");
293 ThreadGroup testRoot = new ThreadGroup(originalCurrent, "Test group");
1273 launchFiveSecondDummyThread(ThreadGroup group) argument
[all...]
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DThread.java144 volatile ThreadGroup group; field in class:Thread
284 * @param group
291 * if <code>group.checkAccess()</code> fails with a
294 * if <code>group.destroy()</code> has already been done
302 public Thread(ThreadGroup group, Runnable runnable) { argument
303 create(group, runnable, null, 0);
310 * @param group
318 * if <code>group.checkAccess()</code> fails with a
321 * if <code>group.destroy()</code> has already been done
329 public Thread(ThreadGroup group, Runnabl argument
357 Thread(ThreadGroup group, String threadName) argument
393 Thread(ThreadGroup group, Runnable runnable, String threadName, long stackSize) argument
407 Thread(ThreadGroup group, String name, int priority, boolean daemon) argument
452 create(ThreadGroup group, Runnable runnable, String threadName, long stackSize) argument
[all...]
/dalvik/vm/
H A DThread.h217 Object* group; member in struct:InternalStartArgs
355 * but found in the "system" thread group rather than "main".
367 * Get the "main" or "system" thread group.
401 * Change the scheduler group of the current process
403 int dvmChangeThreadSchedulerGroup(const char *group);
H A DThread.c231 static void threadExitUncaughtException(Thread* thread, Object* group);
336 "group", "Ljava/lang/ThreadGroup;");
1510 static void threadExitUncaughtException(Thread* self, Object* group) argument
1518 LOGW("threadid=%d: thread exiting with uncaught exception (group=%p)\n",
1519 self->threadId, group);
1520 assert(group != NULL);
1532 * else use "group" (which is an instance of UncaughtExceptionHandler).
1542 handlerObj = group;
1594 pArgs->group = systemGroup;
1665 jniArgs.group
1953 Object* group; local
[all...]
H A DDebugger.c1860 * Return the ObjectId for the "system" thread group.
1869 * Return the ObjectId for the "system" thread group.
1911 * Get a thread's group.
1916 Object* group; local
1921 group = dvmGetFieldObject(threadObj, gDvm.offJavaLangThread_group);
1922 return objectToObjectId(group);
1927 * Get the name of a thread group.
1953 * Get the parent of a thread group.
1978 * Get the list of threads in the thread group.
1983 * If threadGroupId is set to "kAllThreads", we ignore the group fiel
2009 Object* group; local
2039 Object* group; local
[all...]
/dalvik/libcore/icu/src/main/native/
H A DResourceInterface.cpp856 const jchar* group = ures_getStringByIndex(rootElems, 1, &groupL, &status); local
882 u_strncat(patternChars, group, 1);
/dalvik/libnativehelper/include/nativehelper/
H A Djni.h1071 jobject group; /* global ref of a ThreadGroup object, or NULL */ member in struct:JavaVMAttachArgs

Completed in 472 milliseconds