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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/UiAutomator/
project.properties 0 target=android-16
  /external/chromium_org/third_party/WebKit/ManualTests/resources/
cursor-empty-url.css 0 #target { cursor: url(''), auto; }
  /external/llvm/
Android.mk 27 lib/Target \
40 lib/Target/ARM \
41 lib/Target/ARM/AsmParser \
42 lib/Target/ARM/InstPrinter \
43 lib/Target/ARM/Disassembler \
44 lib/Target/ARM/MCTargetDesc \
45 lib/Target/ARM/TargetInfo
49 lib/Target/Mips \
50 lib/Target/Mips/AsmParser \
51 lib/Target/Mips/InstPrinter
    [all...]
  /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...]
  /development/ndk/platforms/android-14/samples/native-media/
default.properties 3 # Project target.
4 target=android-14
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetBufferPointerv.java 1 // C function void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params )
4 int target,
glGetBufferPointerv.cpp 1 /* void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params ) */
4 (JNIEnv *_env, jobject _this, jint target, jint pname) {
7 glGetBufferParameteri64v((GLenum)target, GL_BUFFER_MAP_LENGTH, &_mapLength);
8 glGetBufferPointerv((GLenum)target, (GLenum)pname, &_p);
  /cts/tests/assets/
otacerts.zip 
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
epsilon-edge.st 1 <src> -> <target> [fontname="Times-Italic", label = "e"];
  /external/chromium_org/content/test/data/session_history/
top.html 3 <a href="bot1.html" id="abot1" target="bottom">bot1</a>
4 <a href="bot2.html" id="abot2" target="bottom">bot2</a>
5 <a href="bot3.html" id="abot3" target="bottom">bot3</a>
6 <a href="form.html" id="aform" target="bottom">form</a>
  /external/chromium_org/third_party/WebKit/ManualTests/
target-test.html 1 <a href="targeted.html" target="test">Click this link.</a>
  /external/chromium_org/third_party/lcov/bin/
install.sh 11 TARGET=$3
16 TARGET=$2
21 if test -z "$SOURCE" || test -z "$TARGET" ; then
22 echo Usage: install.sh [--uninstall] source target [install options] >&2
34 local TARGET=$2
37 install -p -D $PARAMS $SOURCE $TARGET
48 local TARGET=$2
50 # Does target exist?
51 if test -r $TARGET ; then
52 # Is target of the same version as this package
    [all...]
  /frameworks/compile/slang/tests/F_set_target_api_10/
set_target_api_10.rs 1 // -target-api 10
stderr.txt.expect 1 error: target API level '10' is out of range ('11' - '19')
  /frameworks/compile/slang/tests/F_set_target_api_9000/
set_target_api_9000.rs 1 // -target-api 9000
stderr.txt.expect 1 error: target API level '9000' is out of range ('11' - '19')
  /frameworks/compile/slang/tests/F_set_target_api_foo/
stderr.txt.expect 1 error: invalid integral value 'foo' in '-target-api foo'
  /frameworks/testing/app-tests/
README 1 Contains generic Android target tests that can be run against any application.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
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_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_arpreply.h 7 int target; member in struct:ebt_arpreply_info
  /external/llvm/test/MC/PowerPC/
ppc64-fixups.s 7 # CHECK: b target # encoding: [0b010010AA,A,A,0bAAAAAA00]
8 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_br24
9 # CHECK-REL: 0x{{[0-9A-F]*[048C]}} R_PPC64_REL24 target 0x0
10 b target
12 # CHECK: ba target # encoding: [0b010010AA,A,A,0bAAAAAA10]
13 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_br24abs
14 # CHECK-REL: 0x{{[0-9A-F]*[048C]}} R_PPC64_ADDR24 target 0x0
15 ba target
17 # CHECK: beq 0, target # encoding: [0x41,0x82,A,0bAAAAAA00]
18 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond1
    [all...]
  /external/chromium_org/base/memory/
weak_ptr_unittest.cc 47 struct Target : public TargetBase, public SupportsWeakPtr<Target> {};
48 struct DerivedTarget : public Target {};
50 WeakPtr<Target> target; member in struct:base::__anon3542::Arrow
52 struct TargetWithFactory : public Target {
54 WeakPtrFactory<Target> factory;
67 void CreateArrowFromTarget(Arrow** arrow, Target* target) {
72 arrow, target, &completion))
258 Target target; local
264 DerivedTarget target; local
304 Target target; local
316 Target* target = new Target(); local
349 Target target; local
402 Target target; local
420 Target target; local
441 Target target; local
452 Target target; local
466 Target target; local
480 Target target; local
502 Target target; local
527 Target target; local
    [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/clang/test/Driver/
target-as.s 4 // RUN: %clang -target i386-unknown-freebsd -### -c -integrated-as %s \
5 // RUN: -march=geode 2>&1 | FileCheck -check-prefix=TARGET %s
7 // TARGET: "-cc1as"
8 // TARGET: "-target-cpu" "geode"

Completed in 693 milliseconds

1 2 3 4 5 6 7 8 91011>>