HomeSort by relevance Sort by last modified time
    Searched defs:all (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /external/webkit/LayoutTests/fast/dom/TreeWalker/resources/
TreeWalker-currentNode.js 7 var all = function(node) { return true; } function
8 var w = document.createTreeWalker(subTree, 0x01 | 0x08 | 0x10 | 0x20, all, true);
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseDiffWithMockFiles.pl 3 # Copyright (C) 2011 Research In Motion Limited. All rights reserved.
83 all: label
89 all: label
parseDiff.pl 47 all: label
60 all: label
158 all: label
174 all: label
287 all: label
305 all: label
328 all: label
346 all: label
680 all: label
727 all label
766 all: label
790 all: label
815 all: label
840 all: label
866 all: label
893 all: label
917 all: label
945 all: label
    [all...]
  /frameworks/base/tools/localize/
test.cpp 14 bool all = true; local
17 if (all) err |= XMLHandler_test();
18 if (all) err |= ValuesFile_test();
19 if (all) err |= XLIFFFile_test();
20 if (all) err |= Perforce_test();
21 if (all) err |= localize_test();
22 if (all) err |= merge_test();
27 fprintf(stderr, "all tests passed\n");
Perforce_test.cpp 53 bool all = false; local
56 if (all) err |= RunCommand_test();
57 if (all) err |= GetResourceFileNames_test();
58 if (all) err |= GetFile_test();
XLIFFFile_test.cpp 107 bool all = true; local
110 if (all) err |= Parse_test();
111 if (all) err |= create_string_node_test();
XMLHandler_test.cpp 125 bool all = true; local
127 if (all) err |= ParseFile_EXACT_test();
128 if (all) err |= ParseFile_PRETTY_test();
129 if (all) err |= ParseString_EXACT_test();
130 if (all) err |= ParseString_PRETTY_test();
localize_test.cpp 33 bool all = true; local
36 if (all) err |= test_filename("//device/samples/NotePad/res/values/strings.xml", "zz_ZZ",
39 if (all) err |= test_filename("//device/samples/NotePad/res/values/strings.xml", "zz",
42 if (all) err |= test_filename("//device/samples/NotePad/res/values/strings.xml", "",
210 bool all = true; local
213 if (all) err |= translated_file_name_test();
214 if (all) err |= delete_trans_units();
215 if (all) err |= filter_trans_units();
216 if (all) err |= settings_test();
217 if (all) err |= pseudolocalize_test()
    [all...]
  /dalvik/tests/062-character-encodings/src/
Main.java 17 SortedMap<String, Charset> all = Charset.availableCharsets(); local
19 for (Map.Entry<String, Charset> e : all.entrySet()) {
  /libcore/
Docs.mk 5 define libcoredoc-all-java-files-under
18 $(call libcoredoc-all-java-files-under,$(1), \
20 $(call libcoredoc-all-java-files-under,$(1), \
JavaLibrary.mk 38 # All subdirectories are optional (hence the "2> /dev/null"s below).
40 define all-main-java-files-under
44 define all-test-java-files-under
48 define all-core-resource-dirs
53 core_src_files := $(call all-main-java-files-under,dalvik dom json luni support xml)
54 core_resource_dirs := $(call all-core-resource-dirs,main)
55 test_resource_dirs := $(call all-core-resource-dirs,test)
58 core_src_files += $(call all-java-files-under, ../external/emma/core ../external/emma/pregenerated)
63 #local_javac_flags+=-Xlint:all -Xlint:-serial,-deprecation,-unchecked
93 LOCAL_SRC_FILES := $(call all-main-java-files-under,junit
    [all...]
CaCerts.mk 20 define all-files-under
41 cacerts := $(call all-files-under,luni/src/main/files/cacerts)
  /system/media/mca/
Docs.mk 21 define libfilterfw-all-java-files-under
33 $(call libfilterfw-all-java-files-under,$(1), \
  /libcore/luni/src/test/java/libcore/java/util/
CurrencyTest.java 48 Set<Currency> all = Currency.getAvailableCurrencies(); local
50 assertTrue(all.toString(), all.contains(Currency.getInstance("CHF")));
51 assertTrue(all.toString(), all.contains(Currency.getInstance("EUR")));
52 assertTrue(all.toString(), all.contains(Currency.getInstance("GBP")));
53 assertTrue(all.toString(), all.contains(Currency.getInstance("JPY")));
54 assertTrue(all.toString(), all.contains(Currency.getInstance("USD")))
    [all...]
  /external/stlport/test/compiler/
eh.cc 35 allocator<BigStruct> all; local
36 BigStruct *bs = all.allocate(1024*1024*1024);
  /external/valgrind/main/none/tests/
pending.c 38 sigset_t all; local
41 sigfillset(&all);
45 sigprocmask(SIG_BLOCK, &all, NULL);
76 if (sigwaitinfo(&all, &info) == -1) {
  /development/tools/mkstubs/src/com/android/mkstubs/
StubGenerator.java 36 * Given a set of already filtered classes, this filters out all private members,
58 TreeMap<String, byte[]> all = new TreeMap<String, byte[]>(); local
65 all.put(name, b);
68 createJar(new FileOutputStream(destJar), all);
85 * @param all The map of all classes to output.
88 void createJar(FileOutputStream outStream, Map<String,byte[]> all) throws IOException {
90 for (Entry<String, byte[]> entry : all.entrySet()) {
  /cts/tools/dasm/src/java_cup/
terminal.java 30 /* add to set of all terminals and check for duplicates */
60 /** Table of all terminals. Elements are stored using name strings as
65 /** Access to all terminals. */
66 public static Enumeration all() {return _all.elements();}; method in class:terminal
79 /** Table of all terminals indexed by their index number. */
symbol_set.java 40 /** Access to all elements of the set. */
41 public Enumeration all() {return _all.elements();}; method in class:symbol_set
77 for (Enumeration e = all(); e.hasMoreElements(); )
81 /* they were all there */
139 for (Enumeration e = other.all(); e.hasMoreElements(); )
155 for (Enumeration e = other.all(); e.hasMoreElements(); )
197 for (e = all(), cnt=0 ; e.hasMoreElements() && cnt<5; cnt++)
213 for (Enumeration e = all(); e.hasMoreElements(); )
  /external/qemu/
compatfd.c 29 sigset_t all; local
31 sigfillset(&all);
32 sigprocmask(SIG_BLOCK, &all, NULL);
  /external/webkit/Tools/QueueStatusServer/model/
queues.py 1 # Copyright (C) 2010 Google Inc. All rights reserved.
62 def all(cls): member in class:Queue
67 return [queue for queue in cls.all() if queue.is_ews()]
110 # then we should fix all callers and change this check.
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ip_conntrack_tuple.h 21 u_int16_t all; member in union:ip_conntrack_manip_proto
54 u_int16_t all; member in union:ip_conntrack_tuple::__anon348::__anon349
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 21 u_int16_t all; member in union:ip_conntrack_manip_proto
54 u_int16_t all; member in union:ip_conntrack_tuple::__anon972::__anon973
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /external/apache-harmony/
Android.mk 5 define all-harmony-test-java-files-under
31 $(call all-harmony-test-java-files-under,$(harmony_test_dirs),src/test/java) \
32 $(call all-harmony-test-java-files-under,$(harmony_test_dirs),src/test/support/java) \
33 $(call all-harmony-test-java-files-under,luni,src/test/api/common) \
34 $(call all-harmony-test-java-files-under,luni,src/test/api/unix) \
35 $(call all-harmony-test-java-files-under,luni,src/test/impl/common) \
36 $(call all-harmony-test-java-files-under,luni,src/test/impl/unix)
  /external/chromium/webkit/glue/
dom_operations.cc 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
38 // Structure for storage the unique set of all savable resource links for
43 // Unique set of all sub resource links.
45 // Unique set of all frame links.
47 // Collection of all frames we go through when getting all savable resource
63 // Get all savable resource links from current element. One element might
92 // protocol does no have cache mechanism, we will skip all
104 // Get all savable resource links from current WebFrameImpl object pointer.
133 // Go through all descent nodes
134 WebNodeCollection all = current_doc.all(); local
    [all...]

Completed in 1084 milliseconds

1 2 3 4 5