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

1 2 3

  /libcore/ojluni/src/main/java/java/security/
Guard.java 29 * <p> This interface represents a guard, which is an object that is used
43 public interface Guard {
50 * @param object the object being protected by the guard.
  /external/v8/src/base/platform/
platform-solaris.cc 157 bool VirtualMemory::Guard(void* address) {
158 OS::Guard(address, OS::CommitPageSize());
platform-aix.cc 201 bool VirtualMemory::Guard(void* address) {
202 OS::Guard(address, OS::CommitPageSize());
platform-cygwin.cc 229 bool VirtualMemory::Guard(void* address) {
platform-freebsd.cc 204 bool VirtualMemory::Guard(void* address) {
205 OS::Guard(address, OS::CommitPageSize());
platform-linux.cc 324 bool VirtualMemory::Guard(void* address) {
326 OS::Guard(address, OS::CommitPageSize());
platform-macos.cc 197 bool VirtualMemory::Guard(void* address) {
198 OS::Guard(address, OS::CommitPageSize());
platform-openbsd.cc 235 bool VirtualMemory::Guard(void* address) {
236 OS::Guard(address, OS::CommitPageSize());
platform-qnx.cc 261 bool VirtualMemory::Guard(void* address) {
262 OS::Guard(address, OS::CommitPageSize());
platform-posix.cc 126 // Create guard pages.
127 void OS::Guard(void* address, const size_t size) {
platform-win32.cc 820 void OS::Guard(void* address, const size_t size) {
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Monitor.java 156 * <p>This version adds some verbosity around the {@code Guard} objects, but removes that same
164 * private final Monitor.Guard valuePresent = new Monitor.Guard(monitor) {
169 * private final Monitor.Guard valueAbsent = new Monitor.Guard(monitor) {
206 // TODO(user): Change API to make it impossible to use a Guard with the "wrong" monitor,
209 // guard.lock();
210 // try { /* monitor locked and guard satisfied here */ }
211 // finally { guard.unlock(); }
222 // guard.enter() paired with monitor.leave()? That might ge
    [all...]
  /external/llvm/include/llvm/IR/
ValueMap.h 240 unique_lock<typename Config::mutex_type> Guard;
242 Guard = unique_lock<typename Config::mutex_type>(*M);
252 unique_lock<typename Config::mutex_type> Guard;
254 Guard = unique_lock<typename Config::mutex_type>(*M);
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 455 /// function yet) and export the guard variable that we are going to
471 FailureMBB(nullptr), Guard(nullptr),
477 return ParentMBB && SuccessMBB && FailureMBB && Guard;
491 if (!Guard)
492 Guard = StackProtCheckCall.getArgOperand(0);
517 /// 2.The guard variable since the guard variable we are checking against is
521 Guard = nullptr;
528 const Value *getGuard() { return Guard; }
551 /// The guard variable which we will compare against the stored value in th
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 290 /// The architectural #ifdef guard.
291 std::string Guard;
324 StringRef Guard, bool IsUnavailable, bool BigEndianSafe)
326 CK(CK), Body(Body), Guard(Guard.str()), IsUnavailable(IsUnavailable),
361 /// Get the architectural guard string (#ifdef).
362 std::string getGuard() const { return Guard; }
420 // Sort lexicographically on a two-tuple (Guard, Name)
421 if (Guard != Other.Guard)
    [all...]
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 1946 llvm::GlobalVariable *guard = CGM.getStaticLocalDeclGuardAddress(&D); local
    [all...]
MicrosoftCXXABI.cpp 762 /// Info on the global variable used to guard initialization of static locals.
765 GuardInfo() : Guard(nullptr), BitIndex(0) {}
766 llvm::GlobalVariable *Guard;
770 /// Map from DeclContext to the current guard variable. We assume that the
    [all...]
  /external/v8/src/regexp/
jsregexp.h     [all...]
  /development/tools/checkstyle/
checkstyle.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 

Completed in 621 milliseconds

1 2 3