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

1 2 3 4 5

  /external/easymock/src/org/easymock/
CaptureType.java 42 ALL
Capture.java 88 * Return all captured values. It returns the actual list so you can modify
107 case ALL:
  /system/core/sh/
error.c 5 * The Regents of the University of California. All rights reserved.
290 #define ALL (E_OPEN|E_CREAT|E_EXEC)
293 { EINTR, ALL, "interrupted" },
294 { EACCES, ALL, "permission denied" },
295 { EIO, ALL, "I/O error" },
296 { EEXIST, ALL, "file exists" },
303 { EISDIR, ALL, "is a directory" },
305 { EMFILE, ALL, "too many open files" },
307 { ENFILE, ALL, "file table overflow" },
308 { ENOSPC, ALL, "file system full" }
    [all...]
  /system/media/wilhelm/tools/mphtogen/
Makefile 2 ALL = $(DIR)/MPH_to_3DGroup.h $(DIR)/MPH_to_AudioPlayer.h $(DIR)/MPH_to_AudioRecorder.h \
7 $(ALL) : mphtogen
  /external/chromium/chrome/browser/importer/
importer_data_types.h 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
28 ALL = (1 << 6) - 1 // All the bits should be 1, hence the -1.
  /external/chromium/testing/gmock/scripts/generator/cpp/
keywords.py 49 ALL = TYPES | TYPE_MODIFIERS | ACCESS | CASTS | OTHERS | OTHER_TYPES | CONTROL | EXCEPTION | LOOP
53 return token in ALL
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
Axis.java 27 * and together they contain all the nodes in the document.</p>
71 * the following axis contains all nodes in the same document as the
78 * The following-sibling axis contains all the following siblings of the
103 * The preceding axis contains all nodes in the same document as the context
110 * The preceding-sibling axis contains all the preceding siblings of the
132 // All axis past this are absolute.
135 * A non-xpath axis, returns all nodes in the tree from and including the
138 public static final int ALL = 16;
141 * A non-xpath axis, returns all nodes that aren't namespaces or attributes,
147 * A non-xpath axis, returns all nodes that aren't namespaces or attributes,
    [all...]
  /external/emma/core/java12/com/vladium/logging/
ILogLevels.java 1 /* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
27 /** log level excluding all but severe errors */
47 /** setting log level to NONE disables all logging */
49 /** setting log level to ALL enables all log levels */
50 int ALL = TRACE3 + 1;
66 String ALL_STRING = "all";
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/
ProviderConfigurationPermission.java 18 * <li>ProviderConfigurationPermission("BC"); // enable all permissions</li>
33 private static final int ALL = THREAD_LOCAL_EC_IMPLICITLY_CA | EC_IMPLICITLY_CA;
37 private static final String ALL_STR = "all";
45 this.actions = "all";
46 this.permissionMask = ALL;
76 mask |= ALL;
  /frameworks/base/core/java/android/net/dhcp/
DhcpDiscoverPacket.java 46 InetAddress destIp = Inet4Address.ALL;
48 fillInPacket(encap, Inet4Address.ALL, Inet4Address.ANY, destUdp, srcUdp,
DhcpRequestPacket.java 51 fillInPacket(encap, Inet4Address.ALL, Inet4Address.ANY, destUdp, srcUdp,
  /frameworks/base/core/tests/coretests/src/android/text/util/
LinkifyTest.java 45 tv.setAutoLinkMask(Linkify.ALL);
57 tv.setAutoLinkMask(Linkify.ALL);
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 44 lr.setLevel(Level.ALL);
45 assertSame(lr.getLevel(), Level.ALL);
69 //All threadID must be different, based on the ThreadLocal.java ID
  /external/webkit/Source/WebKit/wx/bindings/python/samples/
simple.py 3 # Copyright (C) 2007 Kevin Ollivier All rights reserved.
52 btnSizer.Add(btn, 0, wx.EXPAND|wx.ALL, 2)
56 btnSizer.Add(btn, 0, wx.EXPAND|wx.ALL, 2)
60 btnSizer.Add(btn, 0, wx.EXPAND|wx.ALL, 2)
64 btnSizer.Add(btn, 0, wx.EXPAND|wx.ALL, 2)
68 btnSizer.Add(btn, 0, wx.EXPAND|wx.ALL, 2)
71 btnSizer.Add(txt, 0, wx.CENTER|wx.ALL, 2)
80 btnSizer.Add(self.location, 1, wx.EXPAND|wx.ALL, 2)
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LevelTest.java 120 assertSame(Level.ALL, Level.parse("ALL"));
159 assertSame(Level.ALL, Level.parse("ALL"));
168 assertSame(Level.ALL, Level.parse(String.valueOf(Integer.MIN_VALUE)));
215 assertEquals(Integer.MIN_VALUE, Level.parse("ALL").hashCode());
242 assertFalse(Level.ALL.equals(null));
249 assertFalse(Level.ALL.equals(new Object()));
256 assertTrue(Level.ALL.equals(Level.ALL));
    [all...]
  /external/chromium/chrome/browser/tabs/
tab_strip_model_observer.h 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
38 ALL
  /external/blktrace/
Makefile 8 ALL = $(PROGS) $(SCRIPTS) btt/btt btreplay/btrecord btreplay/btreplay \
11 all: $(ALL)
43 $(MAKE) -C doc all
80 install: all
84 $(INSTALL) -m 755 $(ALL) $(DESTDIR)$(bindir)
  /libcore/luni/src/main/java/java/net/
Inet4Address.java 41 public static final InetAddress ALL =
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/api/
XmlVisitor.java 51 * It also notifies all the detectors before and after the document is processed
76 if (attributes == ResourceXmlDetector.ALL) {
89 if (elements == ResourceXmlDetector.ALL) {
103 && attributes != ResourceXmlDetector.ALL))
105 && elements != ResourceXmlDetector.ALL))) {
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
PxUsageDetector.java 73 return ALL;
  /packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java 82 ALL,
89 if (ALL.ordinal() == value) {
90 return ALL;
99 private static final TabState DEFAULT_TAB = TabState.ALL;
138 addTab(TabState.ALL, R.drawable.ic_tab_all, R.string.contactsAllLabel);
265 // All the flags we may change in this method.
  /external/chromium/net/data/proxy_resolver_v8_unittest/
passthrough.js 1 // Return a single-proxy result, which encodes ALL the arguments that were
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyIterator.java 83 super(Axis.ALL);
  /external/chromium/chrome/browser/printing/
print_job_unittest.cc 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
97 registrar_.Add(&observ, NotificationType::ALL,
  /external/collada/include/1.4/dom/
domFx_surface_init_planar_common.h 35 virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::ALL; }
111 * Gets the all element.
112 * @return a daeSmartRef to the all element.

Completed in 550 milliseconds

1 2 3 4 5