HomeSort by relevance Sort by last modified time
    Searched full:scoped (Results 1 - 25 of 546) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/base/memory/
scoped_policy.h 11 // Defines the ownership policy for a scoped object.
13 // The scoped object takes ownership of an object by taking over an existing
17 // The scoped object will retain the the object and any initial ownership is
  /external/conscrypt/src/compat/native/
ScopedPrimitiveArray.h 27 class Scoped ## NAME ## ArrayRO { \
29 explicit Scoped ## NAME ## ArrayRO(JNIEnv* env) \
31 Scoped ## NAME ## ArrayRO(JNIEnv* env, PRIMITIVE_TYPE ## Array javaArray) \
39 ~Scoped ## NAME ## ArrayRO() { \
56 Scoped ## NAME ## ArrayRO(const Scoped ## NAME ## ArrayRO&); \
57 void operator=(const Scoped ## NAME ## ArrayRO&); \
76 class Scoped ## NAME ## ArrayRW { \
78 explicit Scoped ## NAME ## ArrayRW(JNIEnv* env) \
80 Scoped ## NAME ## ArrayRW(JNIEnv* env, PRIMITIVE_TYPE ## Array javaArray)
    [all...]
  /libnativehelper/include/nativehelper/
ScopedPrimitiveArray.h 27 class Scoped ## NAME ## ArrayRO { \
29 explicit Scoped ## NAME ## ArrayRO(JNIEnv* env) \
31 Scoped ## NAME ## ArrayRO(JNIEnv* env, PRIMITIVE_TYPE ## Array javaArray) \
39 ~Scoped ## NAME ## ArrayRO() { \
56 Scoped ## NAME ## ArrayRO(const Scoped ## NAME ## ArrayRO&); \
57 void operator=(const Scoped ## NAME ## ArrayRO&); \
76 class Scoped ## NAME ## ArrayRW { \
78 explicit Scoped ## NAME ## ArrayRW(JNIEnv* env) \
80 Scoped ## NAME ## ArrayRW(JNIEnv* env, PRIMITIVE_TYPE ## Array javaArray)
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
aligned_malloc_unittest.cc 27 scoped_ptr<char, AlignedFreeDeleter> scoped(
29 if (scoped.get() == NULL) {
32 const uintptr_t scoped_address = reinterpret_cast<uintptr_t> (scoped.get());
40 scoped_ptr<char, AlignedFreeDeleter> scoped(
42 EXPECT_TRUE(scoped.get() != NULL);
43 const uintptr_t aligned_address = reinterpret_cast<uintptr_t> (scoped.get());
48 EXPECT_EQ(scoped.get(), realigned_ptr);
  /external/chromium_org/tools/json_schema_compiler/test/
idl_other_namespace.idl 5 // Provides types for testing scoped types included in idl_basics.idl.
idl_other_namespace_sub_namespace.idl 5 // Provides types for testing scoped types included in idl_basics.idl.
  /external/clang/test/SemaCXX/
warn-c++11-extensions.cpp 8 enum struct E1 { A, B }; // expected-warning {{scoped enumerations are a C++11 extension}}
9 enum class E2 { C, D }; // expected-warning {{scoped enumerations are a C++11 extension}}
  /external/chromium_org/chrome/browser/ui/views/
auto_keep_alive.h 10 // Class to scoped decrement keep alive count.
  /external/chromium_org/mojo/common/test/
test_utils.h 44 // Gets a (scoped) |PlatformHandle| from the given (scoped) |FILE|.
47 // Gets a (scoped) |FILE| from a (scoped) |PlatformHandle|.
  /external/qemu/android/base/files/
ScopedStdioFile.h 20 // Helper class used to implement a scoped stdio FILE* pointer.
46 // Swap two scoped FILE* pointers.
53 // Explicit close of a scoped FILE*.
  /external/clang/test/CXX/class.access/class.friend/
p9-cxx0x.cpp 63 // Dependent because dependently-scoped.
74 // Dependently-scoped, no friends.
87 // Dependently-scoped, wrong friend.
103 // Dependently-scoped, right friend.
  /external/clang/test/CodeGenCXX/
scoped-enums-debug-info.cpp 2 // Test that we are emitting debug info and base types for scoped enums.
  /external/qemu/android/base/memory/
ScopedPtr.h 22 // Helper scoped pointer template class. Ensures that an object is
64 // Return pointer of scoped object. Owernship is _not_
68 // Return a reference to the scoped object. Allows one to
72 // Return a pointer to the scoped object. Allows one to write
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p2.cpp 6 auto int ao; // expected-error {{illegal storage class on file-scoped variable}}
9 register int ro; // expected-error {{illegal storage class on file-scoped variable}}
  /external/libcxx/test/utilities/allocator.adaptor/scoped.adaptor.operators/
Android.mk 17 test_makefile := external/libcxx/test/utilities/allocator.adaptor/scoped.adaptor.operators/Android.mk
19 test_name := utilities/allocator.adaptor/scoped.adaptor.operators/eq
  /external/clang/test/Parser/
recovery.cpp 157 case ns::V1:: break; // expected-error{{'V1' cannot appear before '::' because it is not a class, namespace, or scoped enumeration; did you mean ':'?}}
158 case C1::V2:: break; // expected-error{{'V2' cannot appear before '::' because it is not a class, namespace, or scoped enumeration; did you mean ':'?}}
159 case C1::V3:: break; // expected-error{{'V3' cannot appear before '::' because it is not a class, namespace, or scoped enumeration; did you mean ':'?}}
160 case V4:: break; // expected-error{{'V4' cannot appear before '::' because it is not a class, namespace, or scoped enumeration; did you mean ':'?}}
161 case V6:: func_3(); // expected-error{{'V6' cannot appear before '::' because it is not a class, namespace, or scoped enumeration; did you mean ':'?}}
167 case EC3::V5:: break; // expected-error{{'V5' cannot appear before '::' because it is not a class, namespace, or scoped enumeration; did you mean ':'?}}
189 return x ? S::n :: 0; // expected-error{{'n' cannot appear before '::' because it is not a class, namespace, or scoped enumeration; did you mean ':'?}}
192 return x ? s.nn :: x; // expected-error{{'nn' cannot appear before '::' because it is not a class, namespace, or scoped enumeration; did you mean ':'?}}
195 return x ? s.nn :: S::n; // expected-error{{'nn' cannot appear before '::' because it is not a class, namespace, or scoped enumeration; did you mean ':'?}}
  /external/chromium_org/ash/session/
session_state_observer.h 32 // scoped pointer.
  /external/chromium_org/base/test/
scoped_path_override.h 21 // Contructor that initializes the override to a scoped temp directory.
  /external/chromium_org/chrome/browser/extensions/api/system_info/
system_info_api.h 13 // A Profile-scoped object which is registered as an observer of EventRouter
  /external/chromium_org/chrome/renderer/extensions/
chrome_v8_extension_handler.h 17 // Base class for context-scoped handlers used with ChromeV8Extension.
  /external/chromium_org/media/base/
scoped_histogram_timer.h 11 // Scoped class which logs its time on this earth as a UMA statistic. Must be
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_globals.h 43 // Helper class to access the globals with scoped locking.
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
logcat_trace_context.h 22 // Scoped helper class for directing Traces to Android's logcat facility. While
  /external/chromium_org/v8/src/
smart-pointers.h 15 // Default constructor. Constructs an empty scoped pointer.
18 // Constructs a scoped pointer from a plain one.
79 // When the destructor of the scoped pointer is executed the plain pointer
88 // A 'scoped array pointer' that calls DeleteArray on its pointer when the
  /external/clang/test/Sema/
decl-invalid.c 26 register int test1; // expected-error {{illegal storage class on file-scoped variable}}

Completed in 490 milliseconds

1 2 3 4 5 6 7 8 91011>>