HomeSort by relevance Sort by last modified time
    Searched defs:all (Results 26 - 50 of 287) sorted by null

12 3 4 5 6 7 8 91011>>

  /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.
  /ndk/build/core/
definitions-tests.mk 87 # Run all the tests, i.e. all functions that are defined with a -test-
89 ndk-run-all-tests = \
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ip_conntrack_tuple.h 26 u_int16_t all; member in union:ip_conntrack_manip_proto
61 u_int16_t all; member in union:ip_conntrack_tuple::__anon420::__anon421
87 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /cts/tools/dasm/src/java_cup/
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(); )
  /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::__anon1067::__anon1068
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...]
  /external/compiler-rt/lib/
int_types.h 31 di_int all; member in union:__anon7097
46 du_int all; member in union:__anon7099
66 ti_int all; member in union:__anon7101
81 tu_int all; member in union:__anon7103
98 return r.all;
105 return r.all;
  /external/e2fsprogs/misc/
lsattr.c 56 static int all; variable
143 if (de->d_name[0] != '.' || all) {
182 all = 1;
  /external/guava/guava/src/com/google/common/collect/
Ranges.java 50 * <dd>{@link #all}
80 * Returns a range that contains all values strictly greater than {@code
91 * Returns a range that contains all values greater than or equal to
102 * Returns a range that contains all values greater than or equal to
114 * Returns a range that contains all values strictly greater than {@code
148 * Returns a range that contains all values strictly less than {@code
156 * Returns a range that contains all values less than or equal to
180 * Returns a range that contains all values strictly greater than {@code
188 * Returns a range that contains all values greater than or equal to
212 public static <C extends Comparable<?>> Range<C> all() { method in class:Ranges
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
ListGenerators.java 80 String[] all = new String[elements.length + suffix.length]; local
81 System.arraycopy(elements, 0, all, 0, elements.length);
82 System.arraycopy(suffix, 0, all, elements.length, suffix.length);
83 return ImmutableList.copyOf(all)
92 String[] all = new String[elements.length + prefix.length]; local
93 System.arraycopy(prefix, 0, all, 0, 2);
94 System.arraycopy(elements, 0, all, 2, elements.length);
95 return ImmutableList.copyOf(all)
106 String[] all = new String[2 + elements.length + 2]; local
107 System.arraycopy(prefix, 0, all, 0, 2)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
SetOperationsTest.java 267 Set<String> all = Sets.union(friends, enemies); local
268 assertEquals(5, all.size());
275 assertEquals(6, all.size());
  /external/icu4c/test/perf/unisetperf/draft/
bitset.cpp 4 * Corporation and others. All Rights Reserved.
118 // Fill all-zero entries between ranges.
135 // Fill all-one entries inside the range.
137 uint16_t all=bitHash->map(INT64_C(0xffffffffffffffff)); local
139 index[i++]=all;
  /external/iptables/include/net/netfilter/
nf_conntrack_tuple.h 28 #define NF_CT_TUPLE_L3SIZE ARRAY_SIZE(((union nf_inet_addr *)NULL)->all)
35 __be16 all; member in union:nf_conntrack_man_proto
76 __be16 all; member in union:nf_conntrack_tuple::__anon9323::__anon9324
  /external/libnfc-nci/
Android.mk 1 # function to find all *.cpp files under a directory
2 define all-cpp-files-under
40 $(call all-c-files-under, $(NFA)/ce $(NFA)/dm $(NFA)/ee) \
41 $(call all-c-files-under, $(NFA)/hci $(NFA)/int $(NFA)/p2p $(NFA)/rw $(NFA)/sys) \
42 $(call all-c-files-under, $(NFC)/int $(NFC)/llcp $(NFC)/nci $(NFC)/ndef $(NFC)/nfc $(NFC)/tags) \
43 $(call all-c-files-under, src/adaptation) \
44 $(call all-cpp-files-under, src/adaptation) \
45 $(call all-c-files-under, src/gki) \
57 LOCAL_SRC_FILES := $(call all-c-files-under, $(HALIMPL)) \
58 $(call all-cpp-files-under, $(HALIMPL)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
Path.java 53 List<Box> all = getPaths(box, path); local
54 return all.isEmpty() ? null : all.get(0);
  /external/webkit/Source/WebKit/chromium/src/
WebDocument.cpp 2 * Copyright (C) 2009 Google Inc. All rights reserved.
109 WebNodeCollection WebDocument::all() function in class:WebKit::WebDocument
111 return WebNodeCollection(unwrap<Document>()->all());
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/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::__anon30437::__anon30438
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/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::__anon30791::__anon30792
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/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::__anon31145::__anon31146
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/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::__anon31564::__anon31565
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/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::__anon31927::__anon31928
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/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::__anon32351::__anon32352
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/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::__anon32713::__anon32714
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/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::__anon33332::__anon33333
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)

Completed in 3345 milliseconds

12 3 4 5 6 7 8 91011>>