OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:another
(Results
826 - 850
of
15616
) sorted by null
<<
31
32
33
34
35
36
37
38
39
40
>>
/tools/tradefederation/core/src/com/android/tradefed/invoker/
ITestInvocation.java
34
* execution on
another
resource(s)
/tools/tradefederation/core/tests/res/config/suite/
example-suite2.xml
16
<configuration description="Runs a TF example suite, running
another
suite">
/frameworks/base/core/java/android/hardware/camera2/utils/
CloseableLock.java
30
* <p>Locks are re-entrant; trying to acquire
another
lock (of the same type)
120
// Already closed by
another
thread?
156
* this operation will return immediately. If
another
thread holds an exclusive lock,
190
// Is
another
thread holding the exclusive lock? Block until we can get in.
194
// Did
another
thread #close while we were waiting? Unblock immediately.
259
* Is
another
thread holding the lock? Block until we can get in.
267
// Did
another
thread #close while we were waiting? Unblock immediately.
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderAction.java
89
* @param timeout the time to wait if
another
rendering is happening.
136
* This call is blocking if
another
rendering/inflating is currently happening, and will return
139
* The preparation can fail if
another
rendering took too long and the timeout was elapsed.
147
* @param timeout the time to wait if
another
rendering is happening.
176
* {@link Result.Status#SUCCESS} if the lock already belonged to that thread, or
another
179
* @param timeout the time to wait if
another
rendering is happening.
180
* @return null if the lock was just acquire or
another
result depending on the state.
/libcore/luni/src/main/java/org/xml/sax/
DocumentHandler.java
87
* wrapping
another
exception.
103
* wrapping
another
exception.
127
* wrapping
another
exception.
148
* wrapping
another
exception.
175
* wrapping
another
exception.
204
* wrapping
another
exception.
226
* wrapping
another
exception.
/external/syslinux/com32/include/linux/
list.h
143
* list_move - delete from one list and add as
another
's head
154
* list_move_tail - delete from one list and add as
another
's tail
196
* if
another
CPU could re-list_add() it.
299
* @n:
another
&struct list_head to use as temporary storage
309
* @n:
another
&struct list_head to use as temporary storage
331
* @n:
another
type * to use as temporary storage
406
* @n:
another
type * to use as temporary storage
419
* @n:
another
type * to use as temporary storage
435
* @n:
another
type * to use as temporary storage
450
* @n:
another
type * to use as temporary storag
[
all
...]
/art/compiler/optimizing/
cha_guard_optimization.cc
22
// if a guard is not removed,
another
guard might be removed due to
24
// removed in
another
pass. For example, due to further optimizations,
27
// it's not safe to remove the guard in
another
pass since
another
guard might
124
// If there is
another
guard that dominates the current guard, and
/external/llvm/unittests/IR/
VerifierTest.cpp
78
// BAD: Referencing function in
another
module
81
// BAD: Referencing personality routine in
another
module
108
"Referencing function in
another
module!\n"
117
"Referencing personality function in
another
module!"));
146
.startswith("Referencing global in
another
module!"));
/external/syslinux/com32/elflink/ldlinux/
get_key.c
198
int
another
;
local
223
another
= 1;
231
another
= 0;
236
another
= 1;
238
} while (
another
);
/external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
MessagePatternUtilDemo.java
354
"=2{she and her girlfriend {p2} and
another
}" +
360
"=2{she and her boyfriend {p2} and
another
}" +
366
"=2{she and her friend {p2} and
another
}" +
374
"=2{he and his girlfriend {p2} and
another
}" +
380
"=2{he and his boyfriend {p2} and
another
}" +
386
"=2{she and his friend {p2} and
another
}" +
394
"=2{they and their girlfriend {p2} and
another
}" +
400
"=2{they and their boyfriend {p2} and
another
}" +
406
"=2{they and their friend {p2} and
another
}" +
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VoicemailProviderTest.java
197
final Uri anotherVoicemail = insertVoicemailForSourcePackage("
another
-package");
224
final Uri anotherVoicemail = insertVoicemailForSourcePackage("
another
-package");
295
// Insert two records - one each with own and
another
package.
297
insertVoicemailForSourcePackage("
another
-package");
304
// Once again try to insert message for
another
package. This time
309
insertVoicemailForSourcePackage("
another
-package");
319
// An insert for
another
package should still fail
323
insertVoicemailForSourcePackage("
another
-package");
330
// Insert two records - one each with own and
another
package.
332
final Uri anotherVoicemail = insertVoicemailForSourcePackage("
another
-package")
[
all
...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
DefaultErrorHandler.java
115
* wrapping
another
exception.
144
* wrapping
another
exception.
171
* wrapping
another
exception.
195
* wrapping
another
exception.
225
* wrapping
another
exception.
260
* wrapping
another
exception.
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/
Attributes2ImplTest.java
45
multi.addAttribute("http://yet.
another
.uri", "gabba", "ns3:gabba",
60
cdata.addAttribute("http://yet.
another
.uri", "hey", "ns3:hey",
119
attrs.addAttribute("http://yet.
another
.uri", "doe", "john:doe",
124
assertEquals("http://yet.
another
.uri", attrs.getURI(0));
134
attrs.addAttribute("http://yet.
another
.uri", "doe", "jane:doe",
139
assertEquals("http://yet.
another
.uri", attrs.getURI(1));
/packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/cards/
CardView.java
353
public int compareTo(CardView
another
) {
354
int res = this.getPriority() -
another
.getPriority();
357
res = this.mLastUpdated >
another
.mLastUpdated ? -1 : 1;
359
Log.d(TAG, "Found card with the same priority: " + this + " and " +
another
+ ","
361
+ ",
another
.mLastUpdated:" +
another
.mLastUpdated + ", res: " + res);
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/backward/
auto_ptr.h
106
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
107
* @param __a
Another
%auto_ptr of the same type.
115
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
116
* @param __a
Another
%auto_ptr of a different but related type.
129
* @param __a
Another
%auto_ptr of the same type.
144
* @param __a
Another
%auto_ptr of a different but related type.
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/backward/
auto_ptr.h
106
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
107
* @param __a
Another
%auto_ptr of the same type.
115
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
116
* @param __a
Another
%auto_ptr of a different but related type.
129
* @param __a
Another
%auto_ptr of the same type.
144
* @param __a
Another
%auto_ptr of a different but related type.
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/
auto_ptr.h
106
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
107
* @param __a
Another
%auto_ptr of the same type.
115
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
116
* @param __a
Another
%auto_ptr of a different but related type.
129
* @param __a
Another
%auto_ptr of the same type.
144
* @param __a
Another
%auto_ptr of a different but related type.
/prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
auto_ptr.h
106
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
107
* @param __a
Another
%auto_ptr of the same type.
115
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
116
* @param __a
Another
%auto_ptr of a different but related type.
129
* @param __a
Another
%auto_ptr of the same type.
144
* @param __a
Another
%auto_ptr of a different but related type.
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
auto_ptr.h
106
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
107
* @param __a
Another
%auto_ptr of the same type.
115
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
116
* @param __a
Another
%auto_ptr of a different but related type.
129
* @param __a
Another
%auto_ptr of the same type.
144
* @param __a
Another
%auto_ptr of a different but related type.
/prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
auto_ptr.h
106
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
107
* @param __a
Another
%auto_ptr of the same type.
115
* @brief An %auto_ptr can be constructed from
another
%auto_ptr.
116
* @param __a
Another
%auto_ptr of a different but related type.
129
* @param __a
Another
%auto_ptr of the same type.
144
* @param __a
Another
%auto_ptr of a different but related type.
/art/runtime/
class_table-inl.h
94
// If
another
thread raced and updated the reference, do not store the read barrier updated
109
// If
another
thread raced and updated the reference, do not store the read barrier updated
scoped_thread_state_change-inl.h
47
// A suspended transition to
another
effectively suspended transition, ok to use Unsafe.
68
// A suspended transition to
another
effectively suspended transition, ok to use Unsafe.
/art/test/616-cha-regression-proxy-method/src/
Main.java
107
// Create
another
thread that calls a proxy method.
126
// Put createMain2() in
another
class to avoid class loading due to verifier.
/bionic/libc/bionic/
pthread_setname_np.cpp
61
// We have to get
another
thread's name.
93
// We have to set
another
thread's name.
/build/soong/cmd/soong_zip/
rate_limit.go
63
// RequestExecution blocks until
another
execution can be allowed to run.
71
// Finish will mark your execution as finished, and allow
another
request to be
Completed in 688 milliseconds
<<
31
32
33
34
35
36
37
38
39
40
>>