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

1 2 3 4 5 6 7 8 9

  /external/protobuf/ruby/ext/google/protobuf_c/
extconf.rb 7 $objs = ["protobuf.o", "defs.o", "storage.o", "message.o",
  /tools/tradefederation/core/src/com/android/tradefed/util/
NullUtil.java 25 public static int countNulls(Object... objs) {
27 for (Object obj : objs) {
36 public static int countNonNulls(Object... objs) {
38 for (Object obj : objs) {
51 public static boolean allNull(Object... objs) {
52 for (Object obj : objs) {
65 public static boolean singleNonNull(Object... objs) {
67 for (Object obj : objs) {
82 public static boolean isHomogeneousSet(Object... objs) {
83 if (objs.length == 0) return true
    [all...]
  /build/kati/testcase/
static_pattern.mk 3 objs := $(patsubst ./%.cc,./%.o,$(srcs)) macro
7 out: $(objs)
9 $(objs): ./%.o: ./%.cc
  /tools/test/connectivity/acts/framework/tests/
mock_controller.py 25 objs = []
29 objs.append(MagicDevice(c))
30 return objs
33 def destroy(objs):
37 def get_info(objs):
39 for obj in objs:
  /external/jemalloc/
coverage.sh 8 objs=$@
10 gcov -b -p -f -o "${objdir}" ${objs}
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
JsonUtilsTests.java 28 final Object[] objs = new Object[] { 1, "aaa", "bbb", 3 }; local
29 final List<Object> objArray = Arrays.asList(objs);
32 for (int i = 0; i < objs.length; ++i) {
33 assertEquals(objs[i], newObjArray.get(i));
  /libcore/ojluni/src/main/java/java/security/
AlgorithmParameterGenerator.java 182 Object[] objs = Security.getImpl(algorithm, local
186 ((AlgorithmParameterGeneratorSpi)objs[0],
187 (Provider)objs[1],
235 Object[] objs = Security.getImpl(algorithm, local
239 ((AlgorithmParameterGeneratorSpi)objs[0], (Provider)objs[1],
279 Object[] objs = Security.getImpl(algorithm, local
283 ((AlgorithmParameterGeneratorSpi)objs[0], (Provider)objs[1],
AlgorithmParameters.java 235 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters", local
237 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],
238 (Provider)objs[1],
288 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters", local
290 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],
291 (Provider)objs[1],
333 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters", local
335 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],
336 (Provider)objs[1],
MessageDigest.java 199 Object[] objs = Security.getImpl(algorithm, "MessageDigest", local
201 if (objs[0] instanceof MessageDigest) {
202 md = (MessageDigest)objs[0];
204 md = new Delegate((MessageDigestSpi)objs[0], algorithm);
206 md.provider = (Provider)objs[1];
262 Object[] objs = Security.getImpl(algorithm, "MessageDigest", provider); local
263 if (objs[0] instanceof MessageDigest) {
264 MessageDigest md = (MessageDigest)objs[0];
265 md.provider = (Provider)objs[1];
269 new Delegate((MessageDigestSpi)objs[0], algorithm)
310 Object[] objs = Security.getImpl(algorithm, "MessageDigest", provider); local
    [all...]
  /external/libxml2/VxWorks/
Makefile 34 OBJS = c14n.o catalog.o chvalid.o \
54 mkdir -p objs
58 lib$(NAME).so : init $(patsubst %.o, objs/%.o, $(OBJS))
59 $(CC) $(FLAGS) $(LIB_LDFLAGS) -shared -o $@ $(patsubst %.o, objs/%.o, $(OBJS))
61 (NAME).out : init $(patsubst %.o, objs/%.o, $(OBJS))
62 $(CC) $(FLAGS) -o $@ $(patsubst %.o, objs/%.o, $(OBJS))
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/
diag_logger.py 50 objs = []
61 objs.append(logger_class(host_log_path,
64 return objs
67 def destroy(objs):
71 for diag_logger in objs:
sniffer.py 37 objs = []
46 objs.append(module.Sniffer(interface,
49 return objs
52 def destroy(objs):
55 for sniffer in objs:
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiLogger.java 61 static final void warning(String logMessage, Object... objs) {
62 getLogger().warningInternal(toLogString(logMessage, objs));
72 static final void error(String logMessage, Object... objs) {
73 getLogger().errorInternal(toLogString(logMessage, objs));
83 static final void debug(String logMessage, Object... objs) {
84 getLogger().debugInternal(toLogString(logMessage, objs));
93 private static final String toLogString(String logMessage, Object[] objs) {
94 if (objs.length > 0) {
95 return String.format(logMessage, objs);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
mips-elf-flags.exp 44 set objs {}
52 lappend objs $obj
55 return $objs
66 set objs [assemble_for_flags $arglist]
68 if {$objs == ""} {
70 } elseif {![ld_simple_link "$ld $ldemul" $finalobj "-r $objs"]} {
105 set objs [assemble_for_flags $arglist]
107 if {$objs == ""} {
109 } elseif {[ld_simple_link "$ld $ldemul" $finalobj "-r $objs"]
  /external/selinux/libsepol/tests/
Makefile 18 objs := $(patsubst %.c,%.o,$(wildcard *.c)) macro
34 $(EXE): $(objs) $(parserobjs) $(LIBSEPOL)
35 $(CC) $(LDFLAGS) $(objs) $(parserobjs) -lcunit -lcurses $(LIBSEPOL) -o $@
44 rm -f $(objs) $(EXE)
  /libcore/ojluni/src/main/java/sun/security/x509/
CRLExtensions.java 149 Object[] objs = allExts.toArray(); local
151 for (int i = 0; i < objs.length; i++) {
152 if (objs[i] instanceof CertAttrSet)
153 ((CertAttrSet)objs[i]).encode(extOut);
154 else if (objs[i] instanceof Extension)
155 ((Extension)objs[i]).encode(extOut);
256 Object[] objs = otherC.toArray(); local
258 int len = objs.length;
265 if (objs[i] instanceof CertAttrSet)
266 key = ((CertAttrSet)objs[i]).getName()
    [all...]
CertificateExtensions.java 171 Object[] objs = allExts.toArray(); local
173 for (int i = 0; i < objs.length; i++) {
174 if (objs[i] instanceof CertAttrSet)
175 ((CertAttrSet)objs[i]).encode(extOut);
176 else if (objs[i] instanceof Extension)
177 ((Extension)objs[i]).encode(extOut);
308 Object[] objs = otherC.toArray(); local
310 int len = objs.length;
317 if (objs[i] instanceof CertAttrSet)
318 key = ((CertAttrSet)objs[i]).getName()
    [all...]
  /external/icu/icu4c/as_is/os400/
iculd.c 62 char objs[4024]; local
77 objs[0]=0;
150 strcat(objs,outputdir);
151 strcat(objs,"/");
152 strncat(objs,b,nlen);
153 strcat(objs, " ");
215 objs,
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
TweenManager.java 217 private static int getTweensCount(List<BaseTween<?>> objs) {
219 for (int i=0, n=objs.size(); i<n; i++) {
220 BaseTween<?> obj = objs.get(i);
227 private static int getTimelinesCount(List<BaseTween<?>> objs) {
229 for (int i=0, n=objs.size(); i<n; i++) {
230 BaseTween<?> obj = objs.get(i);
  /build/soong/cc/
object.go 58 deps.ObjFiles = append(deps.ObjFiles, object.Properties.Objs...)
73 flags Flags, deps PathDeps, objs Objects) android.Path {
75 objs = objs.Append(deps.Objs)
78 if len(objs.objFiles) == 1 {
79 outputFile = objs.objFiles[0]
82 TransformObjsToObj(ctx, objs.objFiles, flagsToBuilderFlags(flags), output)
  /external/jemalloc/include/jemalloc/internal/
quarantine.h 25 quarantine_obj_t objs[1]; /* Dynamically sized ring buffer. */ member in struct:quarantine_s
  /external/jemalloc/src/
quarantine.c 28 size = offsetof(quarantine_t, objs) + ((ZU(1) << lg_maxobjs) *
76 /* objs ring buffer data are contiguous. */
77 memcpy(ret->objs, &quarantine->objs[quarantine->first],
80 /* objs ring buffer data wrap around. */
85 memcpy(ret->objs, &quarantine->objs[quarantine->first], ncopy_a
87 memcpy(&ret->objs[ncopy_a], quarantine->objs, ncopy_b *
99 quarantine_obj_t *obj = &quarantine->objs[quarantine->first]
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
MessageRegressionTest.java 139 Object[] objs = messageFormatter.parse(tempBuffer, status); local
140 if (objs[paramArray.length] != null)
142 for (int i = 0; i < objs.length; i++) {
143 if (objs[i] != null && !objs[i].toString().equals(paramArray[i].toString())) {
144 errln("Parse failed on object " + objs[i] + " at index : " + i);
175 Object[] objs = fmt.parse(str, pos); local
183 if (objs != null) {
184 errln("objs should be null");
446 Object[] objs = mf.parse(formatted, new ParsePosition(0)) local
461 Object[] objs = mf.parse(forParsing, new ParsePosition(0)); local
510 Object[] objs = mf.parse(texts[i], pp); local
684 Map objs = messageFormatter.parseToMap(tempBuffer, status); local
721 Map objs = fmt.parseToMap(str, pos); local
773 Map objs = mf.parseToMap(null, new ParsePosition(0)); local
821 Map objs = mf.parseToMap(forParsing, new ParsePosition(0)); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
MessageRegressionTest.java 138 Object[] objs = messageFormatter.parse(tempBuffer, status); local
139 if (objs[paramArray.length] != null)
141 for (int i = 0; i < objs.length; i++) {
142 if (objs[i] != null && !objs[i].toString().equals(paramArray[i].toString())) {
143 errln("Parse failed on object " + objs[i] + " at index : " + i);
174 Object[] objs = fmt.parse(str, pos); local
182 if (objs != null) {
183 errln("objs should be null");
445 Object[] objs = mf.parse(formatted, new ParsePosition(0)) local
460 Object[] objs = mf.parse(forParsing, new ParsePosition(0)); local
509 Object[] objs = mf.parse(texts[i], pp); local
683 Map objs = messageFormatter.parseToMap(tempBuffer, status); local
720 Map objs = fmt.parseToMap(str, pos); local
772 Map objs = mf.parseToMap(null, new ParsePosition(0)); local
820 Map objs = mf.parseToMap(forParsing, new ParsePosition(0)); local
    [all...]
  /external/compiler-rt/test/tsan/
unaligned_norace.cc 7 uint64_t objs[8*3*3*2][3]; variable
46 uint64_t *obj = objs[0];

Completed in 2167 milliseconds

1 2 3 4 5 6 7 8 9