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

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/java/android/net/
LinkProperties.java 174 * Compares this {@code LinkProperties} interface name against the target
176 * @param target LinkProperties to compare.
179 public boolean isIdenticalInterfaceName(LinkProperties target) {
180 return TextUtils.equals(getInterfaceName(), target.getInterfaceName());
184 * Compares this {@code LinkProperties} interface name against the target
186 * @param target LinkProperties to compare.
189 public boolean isIdenticalAddresses(LinkProperties target) {
190 Collection<InetAddress> targetAddresses = target.getAddresses();
197 * Compares this {@code LinkProperties} DNS addresses against the target
199 * @param target LinkProperties to compare
    [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES11.spec 1 void glBindBuffer ( GLenum target, GLuint buffer )
2 void glBufferData ( GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage )
3 void glBufferSubData ( GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data )
12 void glGetBufferParameteriv ( GLenum target, GLenum pname, GLint *params )
25 void glGetTexParameterfv ( GLenum target, GLenum pname, GLfloat *params )
26 void glGetTexParameteriv ( GLenum target, GLenum pname, GLint *params )
27 void glGetTexParameterxv ( GLenum target, GLenum pname, GLfixed *params )
38 void glTexEnvi ( GLenum target, GLenum pname, GLint param )
39 void glTexEnviv ( GLenum target, GLenum pname, const GLint *params )
40 void glTexParameterfv ( GLenum target, GLenum pname, const GLfloat *params
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLStub.java 44 int target,
116 int target,
127 int target,
139 int target,
150 int target,
312 int target,
480 int target,
488 int target,
641 int target,
647 int target,
    [all...]
  /external/chromium/build/
install-chroot.sh 110 printf "Which target would you like to install: "
133 target="${distname}${arch}"
136 [ -d /var/lib/chroot/"${target}" ] && {
138 echo "Delete /var/lib/chroot/${target} if you want to start over." >&2
141 sudo mkdir -p /var/lib/chroot/"${target}"
163 # with the target name in square brackets, followed by an arbitrary
165 # been reached, or when the beginning of a new target is encountered.
169 sudo sed -ni '/^[[]'"${target%bit}"']$/,${:1;n;/^[[]/b2;b1;:2;p;n;b2};p' \
178 sudo debootstrap ${archflag} "${distname}" /var/lib/chroot/"${target}" \
188 [${target%bit}
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
Booleans.java 73 * Returns {@code true} if {@code target} is present as an element anywhere in
82 * @param target a primitive {@code boolean} value
83 * @return {@code true} if {@code array[i] == target} for some value of {@code
86 public static boolean contains(boolean[] array, boolean target) {
88 if (value == target) {
96 * Returns the index of the first appearance of the value {@code target} in
104 * @param target a primitive {@code boolean} value
105 * @return the least index {@code i} for which {@code array[i] == target}, or
108 public static int indexOf(boolean[] array, boolean target) {
109 return indexOf(array, target, 0, array.length)
    [all...]
Chars.java 113 * Returns {@code true} if {@code target} is present as an element anywhere in
117 * @param target a primitive {@code char} value
118 * @return {@code true} if {@code array[i] == target} for some value of {@code
121 public static boolean contains(char[] array, char target) {
123 if (value == target) {
131 * Returns the index of the first appearance of the value {@code target} in
135 * @param target a primitive {@code char} value
136 * @return the least index {@code i} for which {@code array[i] == target}, or
139 public static int indexOf(char[] array, char target) {
140 return indexOf(array, target, 0, array.length)
    [all...]
Doubles.java 97 * Returns {@code true} if {@code target} is present as an element anywhere in
99 * target} is {@code NaN}.
102 * @param target a primitive {@code double} value
103 * @return {@code true} if {@code array[i] == target} for some value of {@code
106 public static boolean contains(double[] array, double target) {
108 if (value == target) {
116 * Returns the index of the first appearance of the value {@code target} in
117 * {@code array}. Note that this always returns {@code -1} when {@code target}
121 * @param target a primitive {@code double} value
122 * @return the least index {@code i} for which {@code array[i] == target}, o
    [all...]
Floats.java 94 * Returns {@code true} if {@code target} is present as an element anywhere in
96 * target} is {@code NaN}.
99 * @param target a primitive {@code float} value
100 * @return {@code true} if {@code array[i] == target} for some value of {@code
103 public static boolean contains(float[] array, float target) {
105 if (value == target) {
113 * Returns the index of the first appearance of the value {@code target} in
114 * {@code array}. Note that this always returns {@code -1} when {@code target}
118 * @param target a primitive {@code float} value
119 * @return the least index {@code i} for which {@code array[i] == target}, o
    [all...]
Ints.java 120 * Returns {@code true} if {@code target} is present as an element anywhere in
124 * @param target a primitive {@code int} value
125 * @return {@code true} if {@code array[i] == target} for some value of {@code
128 public static boolean contains(int[] array, int target) {
130 if (value == target) {
138 * Returns the index of the first appearance of the value {@code target} in
142 * @param target a primitive {@code int} value
143 * @return the least index {@code i} for which {@code array[i] == target}, or
146 public static int indexOf(int[] array, int target) {
147 return indexOf(array, target, 0, array.length)
    [all...]
Longs.java 90 * Returns {@code true} if {@code target} is present as an element anywhere in
94 * @param target a primitive {@code long} value
95 * @return {@code true} if {@code array[i] == target} for some value of {@code
98 public static boolean contains(long[] array, long target) {
100 if (value == target) {
108 * Returns the index of the first appearance of the value {@code target} in
112 * @param target a primitive {@code long} value
113 * @return the least index {@code i} for which {@code array[i] == target}, or
116 public static int indexOf(long[] array, long target) {
117 return indexOf(array, target, 0, array.length)
    [all...]
Shorts.java 118 * Returns {@code true} if {@code target} is present as an element anywhere in
122 * @param target a primitive {@code short} value
123 * @return {@code true} if {@code array[i] == target} for some value of {@code
126 public static boolean contains(short[] array, short target) {
128 if (value == target) {
136 * Returns the index of the first appearance of the value {@code target} in
140 * @param target a primitive {@code short} value
141 * @return the least index {@code i} for which {@code array[i] == target}, or
144 public static int indexOf(short[] array, short target) {
145 return indexOf(array, target, 0, array.length)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Chars.java 111 * Returns {@code true} if {@code target} is present as an element anywhere in
115 * @param target a primitive {@code char} value
116 * @return {@code true} if {@code array[i] == target} for some value of {@code
119 public static boolean contains(char[] array, char target) {
121 if (value == target) {
129 * Returns the index of the first appearance of the value {@code target} in
133 * @param target a primitive {@code char} value
134 * @return the least index {@code i} for which {@code array[i] == target}, or
137 public static int indexOf(char[] array, char target) {
138 return indexOf(array, target, 0, array.length)
    [all...]
Ints.java 115 * Returns {@code true} if {@code target} is present as an element anywhere in
119 * @param target a primitive {@code int} value
120 * @return {@code true} if {@code array[i] == target} for some value of {@code
123 public static boolean contains(int[] array, int target) {
125 if (value == target) {
133 * Returns the index of the first appearance of the value {@code target} in
137 * @param target a primitive {@code int} value
138 * @return the least index {@code i} for which {@code array[i] == target}, or
141 public static int indexOf(int[] array, int target) {
142 return indexOf(array, target, 0, array.length)
    [all...]
Longs.java 88 * Returns {@code true} if {@code target} is present as an element anywhere in
92 * @param target a primitive {@code long} value
93 * @return {@code true} if {@code array[i] == target} for some value of {@code
96 public static boolean contains(long[] array, long target) {
98 if (value == target) {
106 * Returns the index of the first appearance of the value {@code target} in
110 * @param target a primitive {@code long} value
111 * @return the least index {@code i} for which {@code array[i] == target}, or
114 public static int indexOf(long[] array, long target) {
115 return indexOf(array, target, 0, array.length)
    [all...]
Shorts.java 116 * Returns {@code true} if {@code target} is present as an element anywhere in
120 * @param target a primitive {@code short} value
121 * @return {@code true} if {@code array[i] == target} for some value of {@code
124 public static boolean contains(short[] array, short target) {
126 if (value == target) {
134 * Returns the index of the first appearance of the value {@code target} in
138 * @param target a primitive {@code short} value
139 * @return the least index {@code i} for which {@code array[i] == target}, or
142 public static int indexOf(short[] array, short target) {
143 return indexOf(array, target, 0, array.length)
    [all...]
  /external/llvm/bindings/ocaml/target/
llvm_target.mli 10 (** Target Information.
12 This interface provides an ocaml API for LLVM target information,
13 the classes in the Target library. *)
24 (** [TargetData.create rep] parses the target data string representation [rep].
28 (** [add_target_data td pm] adds the target data [td] to the pass manager [pm].
29 Does not take ownership of the target data.
34 (** [as_string td] is the string representation of the target data [td].
43 (** Returns the byte order of a target, either LLVMBigEndian or
48 (** Returns the pointer size in bytes for a target.
52 (** Returns the integer type that is the same size as a pointer on a target
    [all...]
  /development/samples/AppNavigation/src/com/example/android/appnavigation/app/
PeerActivity.java 44 Intent target = new Intent(this, PeerActivity.class); local
45 target.putExtra(EXTRA_PEER_COUNT, mPeerCount);
46 startActivity(target);
  /external/mdnsresponder/
Makefile 10 # B&I builds must respect the following target:
24 cd "$(SRCROOT)/mDNSMacOSX"; xcodebuild install OBJROOT=$(OBJROOT) SYMROOT=$(SYMROOT) DSTROOT=$(DSTROOT) MVERS=$(MVERS) SDKROOT=$(SDKROOT) -target Build\ Some
27 cd "$(SRCROOT)/mDNSMacOSX"; xcodebuild install OBJROOT=$(OBJROOT) SYMROOT=$(SYMROOT) DSTROOT=$(DSTROOT) MVERS=$(MVERS) SDKROOT=$(SDKROOT) -target SystemLibraries
38 cd "$(SRCROOT)/mDNSMacOSX"; xcodebuild installhdrs OBJROOT=$(OBJROOT) SYMROOT=$(SYMROOT) DSTROOT=$(DSTROOT) MVERS=$(MVERS) SDKROOT=$(SDKROOT) -target SystemLibraries
  /external/skia/src/core/
SkTSearch.cpp 19 int SkStrSearch(const char*const* base, int count, const char target[],
35 int cmp = strncmp(elem, target, target_len);
45 int cmp = strncmp(elem, target, target_len);
55 int SkStrSearch(const char*const* base, int count, const char target[],
58 return SkStrSearch(base, count, target, strlen(target), elemSize);
61 int SkStrLCSearch(const char*const* base, int count, const char target[],
64 SkASSERT(target);
66 SkAutoAsciiToLC tolc(target, len);
71 int SkStrLCSearch(const char*const* base, int count, const char target[],
    [all...]
  /external/skia/src/gpu/
GrAAHairLinePathRenderer.h 22 const GrDrawTarget* target,
28 GrDrawTarget* target,
40 GrDrawTarget* target,
  /frameworks/compile/mclinker/lib/Support/
TargetRegistry.cpp 16 void mcld::TargetRegistry::RegisterTarget(mcld::Target &T)
21 const mcld::Target* mcld::TargetRegistry::lookupTarget(const llvm::Target &pTarget)
23 mcld::Target *result = 0;
34 const mcld::Target *mcld::TargetRegistry::lookupTarget(const std::string &pTriple,
37 const llvm::Target* target = llvm::TargetRegistry::lookupTarget( pTriple, pError ); local
38 if (!target)
40 return lookupTarget( *target );
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
processinginstructiongettarget.java 31 * The "getTarget()" method returns the target of the
39 * return the target of the ProcessingInstruction.
69 String target; local
73 target = piNode.getTarget();
74 assertEquals("processinginstructionGetTargetAssert", "TEST-STYLE", target);
  /device/samsung/toro/self-extractors/samsung/staging/
reassemble-apks.sh 17 java -jar $(find out/host -name signapk.jar) build/target/product/security/platform.x509.pem build/target/product/security/platform.pk8 vendor/samsung/toro/proprietary/BIP.unsigned.apk vendor/samsung/toro/proprietary/BIP.apk
19 java -jar $(find out/host -name signapk.jar) build/target/product/security/platform.x509.pem build/target/product/security/platform.pk8 vendor/samsung/toro/proprietary/IMSFramework.unsigned.apk vendor/samsung/toro/proprietary/IMSFramework.apk
21 java -jar $(find out/host -name signapk.jar) build/target/product/security/platform.x509.pem build/target/product/security/platform.pk8 vendor/samsung/toro/proprietary/RTN.unsigned.apk vendor/samsung/toro/proprietary/RTN.apk
23 java -jar $(find out/host -name signapk.jar) build/target/product/security/platform.x509.pem build/target/product/security/platform.pk8 vendor/samsung/toro/proprietary/SDM.unsigned.apk vendor/samsung/toro/proprietary/SDM.apk
25 java -jar $(find out/host -name signapk.jar) build/target/product/security/platform.x509.pem build/target/product/security/platform.pk8 vendor/samsung/toro/proprietary/SPG.unsigned.apk vendor/samsung/toro (…)
    [all...]
  /external/chromium/net/tools/dnssec_chain_verify/
dnssec_chain_verify.cc 14 fprintf(stderr, "Usage: %s [--ignore-timestamps] <target domain> "
25 const char* target = NULL; local
32 } else if (!target) {
33 target = argv[i];
41 if (!target || !infilename)
61 if (!net::DNSDomainFromDot(target, &target_dns)) {
62 fprintf(stderr, "Not a valid DNS name: %s\n", target);
95 err_str = "Bad target";
  /external/elfutils/src/
ylwrap 111 [\\/]* | ?:[\\/]*) target="$2";;
112 *) target="../$2";;
128 TARGET=`echo "$2" | sed \
131 sed "/^#/{s,$input_rx,,;s,$from,$2,;s,$FORM,$TO,;}" "$from" >"$target" ||

Completed in 2231 milliseconds

1 2 3 4 5 67 8 91011>>