HomeSort by relevance Sort by last modified time
    Searched refs:target (Results 1 - 25 of 2827) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/TicTacToeLib/
default.properties 27 # Project target.
28 target=android-3
  /cts/tests/tests/jni/src/android/jni/cts/
JniInstanceTest.java 27 private InstanceNonce target; field in class:JniInstanceTest
31 target = new InstanceNonce();
38 target.nop();
45 assertEquals(false, target.returnBoolean());
52 assertEquals(123, target.returnByte());
59 assertEquals(-12345, target.returnShort());
66 assertEquals(34567, target.returnChar());
73 assertEquals(12345678, target.returnInt());
80 assertEquals(-1098765432109876543L, target.returnLong());
87 assertEquals(-98765.4321F, target.returnFloat())
    [all...]
  /external/clang/test/CXX/except/except.spec/
p9-dynamic.cpp 5 void target() throw(int) function
p9-noexcept.cpp 5 void target() noexcept
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_redirect.h 7 int target; member in struct:ebt_redirect_info
ebt_arpreply.h 7 int target; member in struct:ebt_arpreply_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_redirect.h 7 int target; member in struct:ebt_redirect_info
ebt_arpreply.h 7 int target; member in struct:ebt_arpreply_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_redirect.h 7 int target; member in struct:ebt_redirect_info
ebt_arpreply.h 7 int target; member in struct:ebt_arpreply_info
  /frameworks/base/media/mca/filterfw/java/android/filterfw/format/
PrimitiveFormat.java 28 public static MutableFrameFormat createByteFormat(int count, int target) {
29 return createFormat(FrameFormat.TYPE_BYTE, count, target);
32 public static MutableFrameFormat createInt16Format(int count, int target) {
33 return createFormat(FrameFormat.TYPE_INT16, count, target);
36 public static MutableFrameFormat createInt32Format(int count, int target) {
37 return createFormat(FrameFormat.TYPE_INT32, count, target);
40 public static MutableFrameFormat createFloatFormat(int count, int target) {
41 return createFormat(FrameFormat.TYPE_FLOAT, count, target);
44 public static MutableFrameFormat createDoubleFormat(int count, int target) {
45 return createFormat(FrameFormat.TYPE_DOUBLE, count, target);
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetTest.java 27 ResultSet target = null; field in class:OldResultSetTest
44 target = stForward.getResultSet();
45 assertNotNull(target);
57 target.close();
62 assertTrue(target.isBeforeFirst());
63 assertFalse(target.absolute(0));
64 assertTrue(target.absolute(1));
65 assertTrue(target.isFirst());
66 assertTrue(target.absolute(-1));
67 assertTrue(target.isLast())
    [all...]
  /development/samples/TicTacToeMain/
default.properties 27 # Project target. This requires the tools from SDK Froyo (API 8) to be used.
28 target=android-8
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Transition.java 34 * transitions) and has a label/target pair. I have abstracted the notion
38 /** What label must be consumed to transition to target */
41 /** The target of this transition */
42 public State target; field in class:Transition
44 public Transition(Label label, State target) {
46 this.target = target;
49 public Transition(int label, State target) {
51 this.target = target;
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
LinkPropertiesTest.java 38 LinkProperties target = new LinkProperties(); local
40 assertFalse(source == target);
41 assertTrue(source.equals(target));
42 assertTrue(source.hashCode() == target.hashCode());
62 LinkProperties target = new LinkProperties(); local
65 target.setInterfaceName(NAME);
66 target.addLinkAddress(new LinkAddress(
68 target.addLinkAddress(new LinkAddress(
70 target.addDns(NetworkUtils.numericToInetAddress(DNS1));
71 target.addDns(NetworkUtils.numericToInetAddress(DNS2))
153 LinkProperties target = new LinkProperties(); local
184 LinkProperties target = new LinkProperties(); local
    [all...]
  /external/valgrind/main/none/tests/s390x/
mvst.c 14 char target[512]; variable
40 printf("CC:%d\n", mvst(target, buffer));
41 printf("%s\n", target);
42 printf("CC:%d\n",mvst_full(target, bigbuf));
43 printf("%s\n", target);
  /frameworks/av/include/media/stagefright/foundation/
AHandlerReflector.h 27 AHandlerReflector(T *target)
28 : mTarget(target) {
33 sp<T> target = mTarget.promote(); local
34 if (target != NULL) {
35 target->onMessageReceived(msg);
  /libcore/luni/src/main/java/java/lang/reflect/
InvocationTargetException.java 31 private Throwable target; field in class:InvocationTargetException
35 * {@code null} cause / target exception.
43 * cause / target exception filled in.
51 target = exception;
56 * cause / target exception and message filled in.
66 target = exception;
70 * Returns the target exception, which may be {@code null}.
72 * @return the target exception
75 return target;
85 return target;
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
TargetInsn.java 23 * Instruction which has a single branch target.
26 /** {@code non-null;} the branch target */
27 private CodeAddress target; field in class:TargetInsn
31 * unknown ({@code -1}), and the target is initially
39 * @param target {@code non-null;} the branch target
42 RegisterSpecList registers, CodeAddress target) {
45 if (target == null) {
46 throw new NullPointerException("target == null");
49 this.target = target
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
TargetInsn.java 23 * Instruction which has a single branch target.
26 /** {@code non-null;} the branch target */
27 private CodeAddress target; field in class:TargetInsn
31 * unknown ({@code -1}), and the target is initially
39 * @param target {@code non-null;} the branch target
42 RegisterSpecList registers, CodeAddress target) {
45 if (target == null) {
46 throw new NullPointerException("target == null");
49 this.target = target
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
TargetInsn.java 23 * Instruction which has a single branch target.
26 /** {@code non-null;} the branch target */
27 private CodeAddress target; field in class:TargetInsn
31 * unknown ({@code -1}), and the target is initially
39 * @param target {@code non-null;} the branch target
42 RegisterSpecList registers, CodeAddress target) {
45 if (target == null) {
46 throw new NullPointerException("target == null");
49 this.target = target
    [all...]
  /external/guava/guava/src/com/google/common/io/
AppendableWriter.java 25 * Writer that places all output on an {@link Appendable} target. If the target
27 * be delegated to the target.
34 private final Appendable target; field in class:AppendableWriter
38 * Creates a new writer that appends everything it writes to {@code target}.
40 * @param target target to which to append output
42 AppendableWriter(Appendable target) {
43 this.target = target;
    [all...]
  /libcore/luni/src/main/java/java/io/
PipedOutputStream.java 32 private PipedInputStream target; field in class:PipedOutputStream
44 * {@link PipedInputStream} {@code target}. Any data written to this stream
45 * can be read from the target stream.
47 * @param target
50 * if this stream or {@code target} are already connected.
52 public PipedOutputStream(PipedInputStream target) throws IOException {
53 connect(target);
66 PipedInputStream stream = target;
69 target = null;
87 if (this.target != null)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
WeakAsyncTask.java 27 public WeakAsyncTask(WeakTarget target) {
28 mTarget = new WeakReference<WeakTarget>(target);
34 final WeakTarget target = mTarget.get(); local
35 if (target != null) {
36 this.onPreExecute(target);
43 final WeakTarget target = mTarget.get(); local
44 if (target != null) {
45 return this.doInBackground(target, params);
54 final WeakTarget target = mTarget.get(); local
55 if (target != null)
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
valgrind_low.h 29 /* defines the characteristics of the "low" valgrind target architecture.
84 extern void x86_init_architecture (struct valgrind_target_ops *target);
85 extern void amd64_init_architecture (struct valgrind_target_ops *target);
86 extern void arm_init_architecture (struct valgrind_target_ops *target);
87 extern void ppc32_init_architecture (struct valgrind_target_ops *target);
88 extern void ppc64_init_architecture (struct valgrind_target_ops *target);
89 extern void s390x_init_architecture (struct valgrind_target_ops *target);

Completed in 359 milliseconds

1 2 3 4 5 6 7 8 91011>>