/external/easymock/src/org/easymock/ |
Capture.java | 88 * Return all captured values. It returns the actual list so you can modify
107 case ALL:
|
/external/regex-re2/re2/ |
prefilter.h | 1 // Copyright 2009 The RE2 Authors. All Rights Reserved. 24 ALL = 0, // Everything matches 27 AND, // All in subs() must match
|
prefilter.cc | 1 // Copyright 2009 The RE2 Authors. All Rights Reserved. 50 op_ = ALL; // AND of nothing is true 84 // ALL AND b = b 86 // ALL OR b = ALL 89 // ALL and NONE are smallest opcodes. 90 if (a->op() == ALL || a->op() == NONE) { 91 if ((a->op() == ALL && op == AND) || 141 // we know "ab" is a required string, then it doesn't help at all to 371 ab->match_ = new Prefilter(ALL); [all...] |
/frameworks/base/core/java/android/net/dhcp/ |
DhcpRequestPacket.java | 51 fillInPacket(encap, Inet4Address.ALL, Inet4Address.ANY, destUdp, srcUdp,
|
DhcpAckPacket.java | 61 InetAddress destIp = mBroadcast ? Inet4Address.ALL : mYourIp;
|
DhcpOfferPacket.java | 63 InetAddress destIp = mBroadcast ? Inet4Address.ALL : mYourIp;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/ |
SettingsUI.java | 70 mContext.registerReceiverAsUser(mIntentReceiver, UserHandle.ALL, filter, null, mHandler);
|
/frameworks/testing/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/ |
UiAutomatorInstrumentationTestRunner.java | 40 if (mode == Tracer.Mode.FILE || mode == Tracer.Mode.ALL) {
|
/libcore/luni/src/main/java/java/net/ |
Inet4Address.java | 41 public static final InetAddress ALL =
|
/external/llvm/test/MC/ARM/ |
arm_instructions.s | 2 @ RUN: | FileCheck %s -check-prefix=ALL 8 @ ALL: trap 9 @ ALL: encoding: [0xfe,0xde,0xff,0xe7]
|
/external/chromium/net/data/proxy_resolver_v8_unittest/ |
passthrough.js | 1 // Return a single-proxy result, which encodes ALL the arguments that were
|
/frameworks/base/services/java/com/android/server/ |
RecognitionManagerService.java | 79 mMonitor.register(context, null, UserHandle.ALL, true); 81 mContext.registerReceiverAsUser(mBroadcastReceiver, UserHandle.ALL,
|
IdleMaintenanceService.java | 138 mContext.registerReceiverAsUser(this, UserHandle.ALL, 207 mContext.sendOrderedBroadcastAsUser(sIdleMaintenanceStartIntent, UserHandle.ALL, 213 mContext.sendOrderedBroadcastAsUser(sIdleMaintenanceEndIntent, UserHandle.ALL,
|
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/ |
Tracer.java | 53 ALL 133 case ALL:
|
/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/jmonkeyengine/engine/src/blender/com/jme3/asset/ |
BlenderKey.java | 3 * All rights reserved.
78 protected int featuresToLoad = FeaturesToLoad.ALL;
81 /** The root path for all the assets. */
266 * If yes then all assets will be loaded even if they are on inactive layers or are not linked
277 * If yes then all assets will be loaded even if they are on inactive layers or are not linked
358 oc.write(featuresToLoad, "features-to-load", FeaturesToLoad.ALL);
376 featuresToLoad = ic.readInt("features-to-load", FeaturesToLoad.ALL);
481 int ALL = 0xFFFFFFFF;
494 /** Objects from all scenes. */
496 /** Materials from all objects. */ [all...] |
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
PostInstructionRegisterInfoMethodItem.java | 4 * All rights reserved. 64 if ((registerInfo & main.ALL) != 0) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
AirplaneModeController.java | 92 mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
|
/frameworks/base/services/java/com/android/server/dreams/ |
DreamController.java | 42 * Assumes all operations are called from the dream handler thread. 100 // Close the notification shade. Don't need to send to all, but better to be explicit. 101 mContext.sendBroadcastAsUser(mCloseNotificationShadeIntent, UserHandle.ALL); 148 mContext.sendBroadcastAsUser(mDreamingStoppedIntent, UserHandle.ALL); 200 mContext.sendBroadcastAsUser(mDreamingStartedIntent, UserHandle.ALL);
|
/packages/apps/Nfc/src/com/android/nfc/ |
RegisteredComponentCache.java | 75 mContext.registerReceiverAsUser(receiver, UserHandle.ALL, intentFilter, null, null); 80 mContext.registerReceiverAsUser(receiver, UserHandle.ALL, sdFilter, null, null); 84 mContext.registerReceiverAsUser(receiver, UserHandle.ALL, userFilter, null, null); 110 * @return a collection of {@link RegisteredComponentCache.ComponentInfo} objects for all
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
LogRecordTest.java | 112 lr = new LogRecord(Level.ALL, null); 244 lr = new LogRecord(Level.ALL, "a1"); 248 lr = new LogRecord(Level.ALL, "a1"); 307 LogRecord r = new LogRecord(Level.ALL, "msg"); 350 LogRecord r = new LogRecord(Level.ALL, "msg");
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ActionBarAdapter.java | 89 public static int ALL = 1; 93 public static int DEFAULT = ALL; 182 addTab(TabState.ALL, R.drawable.ic_tab_all, R.string.contactsAllLabel); 202 return TabState.ALL; 218 case TabState.ALL: 385 // All the flags we may change in this method.
|
/external/emma/core/java12/com/vladium/logging/ |
Logger.java | 1 /* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved. 46 * method name, the calling method is identified with all name components that 70 if ((level < NONE) || (level > ALL)) 392 return ILogLevels.ALL; 402 if ((_level >= ILogLevels.NONE) && (_level <= ILogLevels.ALL)) 548 private final int m_level; // always in [NONE, ALL] range
|
/external/llvm/include/llvm/Analysis/ |
DependenceAnalysis.h | 36 // summarizing all. 82 ALL = 7 }; 83 unsigned char Direction : 3; // Init to ALL, then refine. 89 DVEntry() : Direction(ALL), Scalar(true), PeelFirst(false), 144 virtual unsigned getDirection(unsigned Level) const { return DVEntry::ALL; } 269 /// We can try to improve the situation by examining all the dependences 524 /// collectUpperBound - All subscripts are the same type (on my machine, 747 /// getLowerBound - Looks through all the bounds info and 752 /// getUpperBound - Looks through all the bounds info and [all...] |