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

1 2

  /libcore/luni/src/test/java/tests/api/java/util/
ArrayListTest.java 33 List alist; field in class:ArrayListTest
42 new Support_ListTest("", alist).runTest();
93 alist.add(50, o = new Object());
94 assertTrue("Failed to add Object", alist.get(50) == o);
96 alist.get(51) == objArray[50]
97 && (alist.get(52) == objArray[51]));
98 Object oldItem = alist.get(25);
99 alist.add(25, null);
100 assertNull("Should have returned null", alist.get(25));
101 assertTrue("Should have returned the old item from slot 25", alist
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArrayListTest.java 33 List alist; field in class:ArrayListTest
47 new Support_ListTest("", alist).runTest();
101 alist.add(50, o = new Object());
102 assertTrue("Failed to add Object", alist.get(50) == o);
104 alist.get(51) == objArray[50]
105 && (alist.get(52) == objArray[51]));
106 Object oldItem = alist.get(25);
107 alist.add(25, null);
108 assertNull("Should have returned null", alist.get(25));
109 assertTrue("Should have returned the old item from slot 25", alist
344 ArrayList<String> alist = new ArrayList<String>(); local
    [all...]
  /external/v8/test/mjsunit/regress/
regress-86.js 28 var aList = [1, 2, 3];
32 for (x in aList) {
  /external/dropbear/
scp.c 458 arglist alist; local
460 memset(&alist, '\0', sizeof(alist));
461 alist.list = NULL;
487 freeargs(&alist);
488 addargs(&alist, "%s", ssh_program);
490 addargs(&alist, "-v");
491 addargs(&alist, "-x");
492 addargs(&alist, "-oClearAllForwardings yes");
493 addargs(&alist, "-n")
544 arglist alist; local
    [all...]
  /external/llvm/utils/emacs/
emacs.el 21 (c-offsets-alist . ((innamespace 0)))))
llvm-mode.el 129 (setq auto-mode-alist
130 (append '(("\\.ll$" . llvm-mode)) auto-mode-alist))
tablegen-mode.el 119 (setq auto-mode-alist (append '(("\\.td$" . tablegen-mode)) auto-mode-alist))
  /external/llvm/lib/Target/Blackfin/
BlackfinIntrinsicInfo.cpp 100 AttrListPtr AList = getAttributes((bfinIntrinsic::ID) IntrID);
103 AList));
  /external/llvm/lib/Target/MBlaze/
MBlazeIntrinsicInfo.cpp 109 AttrListPtr AList = getAttributes((mblazeIntrinsic::ID) IntrID);
112 AList));
  /external/clang/test/Analysis/
NoReturn.m 64 va_list alist;
65 va_start(alist, x);
67 [NSException raise:@"Blah" format:@"Blah %@" arguments:alist];
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ClassLoaderReflectionTest.java 61 aListClass = loader.loadClass(prefix + "$AList");
146 static class AList extends ArrayList<A> {
ReflectionTest.java 45 AList.class.getGenericSuperclass().toString());
258 static class AList extends ArrayList<A> {}
  /system/core/init/
init_parser.c 339 act = node_to_item(node, struct action, alist);
351 act = node_to_item(node, struct action, alist);
371 act = node_to_item(node, struct action, alist);
413 list_add_tail(&action_list, &act->alist);
653 list_add_tail(&action_list, &act->alist);
init.h 38 struct listnode alist; member in struct:action
parser.c 36 act = node_to_item(node, struct action, alist);
  /external/clang/utils/
clang-completion-mode.el 228 (if (not (assq 'clang-completion-mode minor-mode-map-alist))
229 (setq minor-mode-map-alist
231 minor-mode-map-alist)))
  /external/javassist/src/main/javassist/
CtClassType.java 860 ArrayList alist = new ArrayList(); local
861 getFields(alist, this);
862 return (CtField[])alist.toArray(new CtField[alist.size()]);
865 private static void getFields(ArrayList alist, CtClass cc) {
871 getFields(alist, cc.getSuperclass());
879 getFields(alist, ifs[i]);
889 alist.add(field);
    [all...]
  /external/webkit/Source/WebCore/bindings/objc/
WebScriptObject.mm 274 static void getListFromNSArray(ExecState *exec, NSArray *array, RootObject* rootObject, MarkedArgumentBuffer& aList)
280 aList.append(convertObjcValueToValue(exec, &anObject, ObjcObjectType, rootObject));
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.cpp 112 static void getListFromVariantArgs(ExecState* exec, const NPVariant* args, unsigned argCount, RootObject* rootObject, MarkedArgumentBuffer& aList)
115 aList.append(convertNPVariantToValue(exec, &args[i], rootObject));
  /development/ide/emacs/
android-common.el 55 "Alist between product targets (declared in buildspec.mk) and actual
  /external/webkit/Source/WebCore/inspector/front-end/
utilities.js 797 function insertionIndexForObjectInListSortedByFunction(anObject, aList, aFunction)
799 var index = binarySearch(anObject, aList, aFunction);
805 while (index > 0 && aFunction(anObject, aList[index - 1]) === 0)
  /external/libpcap/
gencode.c 4963 bpf_u_int32 **alist; local
    [all...]
  /external/protobuf/editors/
protobuf-mode.el 190 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.proto\\'" . protobuf-mode))
  /external/v8/benchmarks/
earley-boyer.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-earley-boyer.js     [all...]

Completed in 1438 milliseconds

1 2