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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/training/InteractiveChart/
project.properties 26 # Project target.
27 target=android-17
  /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
  /external/chromium_org/remoting/host/installer/mac/Scripts/
keystone_install.sh 9 /usr/sbin/installer -pkg "$1/@@HOST_PKG@@.pkg" -target /
  /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...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/
serialization_test.h 24 bool VerifyHHEA(Table* original, Table* target);
25 bool VerifyGLYF(Table* original, Table* target);
26 bool VerifyHMTX(Table* original, Table* target);
27 bool VerifyLOCA(Table* original, Table* target);
28 bool VerifyMAXP(Table* original, Table* target);
29 bool VerifyNAME(Table* original, Table* target);
30 bool VerifyOS_2(Table* original, Table* target);
  /external/sfntly/cpp/src/test/
serialization_test.h 24 bool VerifyHHEA(Table* original, Table* target);
25 bool VerifyGLYF(Table* original, Table* target);
26 bool VerifyHMTX(Table* original, Table* target);
27 bool VerifyLOCA(Table* original, Table* target);
28 bool VerifyMAXP(Table* original, Table* target);
29 bool VerifyNAME(Table* original, Table* target);
30 bool VerifyOS_2(Table* original, Table* target);
  /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...]
  /external/chromium_org/cc/output/
compositor_frame.cc 13 void CompositorFrame::AssignTo(CompositorFrame* target) {
14 target->delegated_frame_data = delegated_frame_data.Pass();
15 target->gl_frame_data = gl_frame_data.Pass();
16 target->software_frame_data = software_frame_data.Pass();
17 target->metadata = metadata;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
standard.h 20 #define bis(target,mask) ((target) |= (mask))
21 #define bic(target,mask) ((target) &= ~(mask))
22 #define bit(target,mask) ((target) & (mask))
  /build/target/board/generic_armv5/
AndroidBoard.mk 17 -include build/target/board/generic/AndroidBoard.mk
device.mk 17 include build/target/board/generic/device.mk
  /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/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
syscall_mount.c 8 int mount(const char* source, const char* target, const char* filesystemtype,
10 return ki_mount(source, target, filesystemtype, mountflags, data);
  /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...]
  /external/chromium_org/tools/cr/cr/actions/
adb.py 19 # Tracks the set of killed target names, so we don't keep issuing kill
24 def GetPids(cls, target):
25 """Gets the set of running PIDs that match the specified target."""
27 output = cr.Host.Capture(target, '{CR_ADB}', 'shell', 'ps')
36 def Run(cls, target, arguments):
37 """Invoke a target binary on the device."""
39 target,
48 def Kill(cls, target, _):
49 """Kill all running processes for a target."""
50 target_name = target.build_targe
    [all...]
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetBufferPointerv.java 1 // C function void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params )
4 int target,
glMapBufferRange.java 1 // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )
4 int target,

Completed in 356 milliseconds

1 2 3 4 5 6 7 8 91011>>