/external/gmock/test/ |
Android.mk | 40 # generate the right make target (host vs device). $(4) is used in the 72 define target-test 84 $(call target-test, $(sources))
|
/external/gtest/test/ |
Android.mk | 39 # generate the right make target (host vs device). $(4) is used in the 71 define target-test 99 $(call target-test, $(sources))
|
/external/guice/extensions/servlet/src/com/google/inject/servlet/ |
AbstractServletModuleBinding.java | 30 private final T target; field in class:AbstractServletModuleBinding 33 AbstractServletModuleBinding(Map<String, String> initParams, String pattern, T target, 37 this.target = target; 50 return target;
|
/external/icu/icu4c/source/common/ |
ustr_cnv.cpp | 133 UChar *target = ucs1; local 139 &target, 151 if(target < (ucs1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */ 152 *target = 0; /* terminate */ 205 char *target = s1; local 211 &target, 223 if(target < (s1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */ 224 *target = 0; /* terminate */
|
/external/icu/icu4c/source/i18n/ |
tridpars.h | 31 * A basic ID, which contains source, target, and variant, but no 56 * 'source' and 'target' will always be non-null. The 'variant' 69 UnicodeString target; // not null member in class:TransliteratorIDParser::Specs 221 * @param target the given target. 226 * @return an array of 4 strings: source, target, variant, and 229 * isSourcePresent will be non-null. The target may be empty if the 234 UnicodeString& target, 239 * Given source, target, and variant strings, concatenate them into a 244 const UnicodeString& target, [all...] |
/external/icu/icu4c/source/samples/datefmt/ |
util.cpp | 20 // Append a hex string to the target 23 UnicodeString& target) { 26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF]; 28 return target; 34 UnicodeString target; local 35 target += "\""; 39 target += "\\u"; 40 appendHex(ch, 4, target); 42 target += ch; 45 target += "\"" [all...] |
/external/icu/icu4c/source/samples/msgfmt/ |
util.cpp | 20 // Append a hex string to the target 23 UnicodeString& target) { 26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF]; 28 return target; 34 UnicodeString target; local 35 target += "\""; 39 target += "\\u"; 40 appendHex(ch, 4, target); 42 target += ch; 45 target += "\"" [all...] |
/external/icu/icu4c/source/samples/translit/ |
util.cpp | 20 // Append a hex string to the target 23 UnicodeString& target) { 26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF]; 28 return target; 34 UnicodeString target; local 35 target += "\""; 39 target += "\\u"; 40 appendHex(ch, 4, target); 42 target += ch; 45 target += "\"" [all...] |
/external/icu/icu4c/source/test/cintltst/ |
eurocreg.c | 143 char target[20]; local 150 target, 151 sizeof(target), 163 target,
|
/external/iproute2/tc/ |
q_codel.c | 56 fprintf(stderr, "Usage: ... codel [ limit PACKETS ] [ target TIME]\n"); 65 unsigned target = 0; local 78 } else if (strcmp(*argv, "target") == 0) { 80 if (get_time(&target, *argv)) { 81 fprintf(stderr, "Illegal \"target\"\n"); 117 if (target) 118 addattr_l(n, 1024, TCA_CODEL_TARGET, &target, sizeof(target)); 134 unsigned target; local 151 target = rta_getattr_u32(tb[TCA_CODEL_TARGET]) [all...] |
q_fq_codel.c | 54 fprintf(stderr, " [ target TIME] [ interval TIME ]\n"); 64 unsigned target = 0; local 90 } else if (strcmp(*argv, "target") == 0) { 92 if (get_time(&target, *argv)) { 93 fprintf(stderr, "Illegal \"target\"\n"); 133 if (target) 134 addattr_l(n, 1024, TCA_FQ_CODEL_TARGET, &target, sizeof(target)); 150 unsigned target; local 178 target = rta_getattr_u32(tb[TCA_FQ_CODEL_TARGET]) [all...] |
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/ |
AnalysisTimeScenario.java | 27 private final Class<?> target; field in class:AnalysisTimeScenario 31 protected AnalysisTimeScenario(Class<?> target, int count) { 33 this.target = target; 39 final byte[] bytes = TargetLoader.getClassDataAsBytes(target); 49 analyzer.analyzeClass(bytes, target.getName());
|
ExecuteInstrumentedCodeScenario.java | 29 private final Class<? extends Callable<Void>> target; field in class:ExecuteInstrumentedCodeScenario 32 Class<? extends Callable<Void>> target) { 34 this.target = target; 40 ClassReader reader = new ClassReader(TargetLoader.getClassData(target)); 47 return (Callable<Void>) loader.add(target, instrumentedBuffer) 53 return target.newInstance();
|
InstrumentationSizeSzenario.java | 26 private final Class<?> target; field in class:InstrumentationSizeSzenario 28 public InstrumentationSizeSzenario(Class<?> target) { 29 this.target = target; 34 ClassReader reader = new ClassReader(TargetLoader.getClassData(target));
|
/external/junit/ |
Common.mk | 6 # core-junit-files, junit-runner-files, junit_to_document, junit4-target-src. 43 # List of source to build into junit4 target jars 45 junit4-target-src := \
|
/external/kernel-headers/original/uapi/linux/netfilter_arp/ |
arpt_mangle.h | 17 int target; member in struct:arpt_mangle
|
/external/libchrome/sandbox/win/src/sidestep/ |
preamble_patcher_with_stub.cpp | 82 unsigned char* target = reinterpret_cast<unsigned char*>(target_function); local 84 // Let's disassemble the preamble of the target function to see if we can 92 disassembler.Disassemble(target + preamble_bytes, &preamble_bytes); 121 reinterpret_cast<void*>(target), preamble_bytes); 123 // Now, make a jmp instruction to the rest of the target function (minus the 130 = ((reinterpret_cast<unsigned char*>(target) + preamble_bytes) - 143 // Overwrite the first 5 bytes of the target function with a jump to our 146 target[0] = ASM_JMP32REL; 153 reinterpret_cast<unsigned char*>(target) - 5; 156 RawMemcpy(reinterpret_cast<void*>(target + 1) [all...] |
/external/llvm/lib/Support/ |
regerror.c | 88 int target = errcode &~ REG_ITOA; local 96 if (r->code == target) 105 "REG_0x%x", target);
|
/external/mockito/src/org/mockito/internal/util/reflection/ |
FieldReader.java | 13 final Object target;
field in class:FieldReader 17 public FieldReader(Object target, Field field) {
18 this.target = target;
29 return field.get(target);
31 throw new MockitoException("Cannot read state from field: " + field + ", on instance: " + target);
|
FieldSetter.java | 11 private final Object target;
field in class:FieldSetter 14 public FieldSetter(Object target, Field field) {
15 this.target = target;
23 field.set(target, value);
25 throw new RuntimeException("Access not authorized on field '" + field + "' of object '" + target + "' with value: '" + value + "'", e);
27 throw new RuntimeException("Wrong argument on field '" + field + "' of object '" + target + "' with value: '" + value + "', \n" +
|
/external/proguard/src/proguard/classfile/attribute/annotation/target/ |
LocalVariableTargetInfo.java | 21 package proguard.classfile.attribute.annotation.target; 26 import proguard.classfile.attribute.annotation.target.visitor.*; 29 * Representation of a local variable annotation target. 71 * Applies the given visitor to all target elements.
|
TypeArgumentTargetInfo.java | 21 package proguard.classfile.attribute.annotation.target; 26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor; 29 * Representation of an offset annotation target.
|
TypeParameterBoundTargetInfo.java | 21 package proguard.classfile.attribute.annotation.target; 25 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor; 28 * Representation of a type parameter bound annotation target.
|
/external/protobuf/src/google/protobuf/stubs/ |
substitute.cc | 112 char* target = string_as_array(output) + original_size; local 117 memcpy(target, src->data(), src->size()); 118 target += src->size(); 121 *target++ = '$'; 125 *target++ = format[i]; 129 GOOGLE_DCHECK_EQ(target - output->data(), output->size());
|
/external/sfntly/cpp/src/test/ |
test_utils.cc | 42 char* target = new char[ucnv_getMaxCharSize(encoder) * 2]; local 50 target_end = target; 51 ucnv_fromUnicode(encoder, &target_end, target + 4, 58 delete[] target; 62 for (int32_t position = 0; position < target_end - target; ++position) { 64 enc_char |= (target[position] & 0xff); 67 delete[] target;
|