HomeSort by relevance Sort by last modified time
    Searched refs:Type (Results 51 - 75 of 4324) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/base/
lazy_instance.h 5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
8 // need to have guaranteed thread-safety. The Type constructor will only ever
20 // property. You can have multiple LazyInstance's of the same type, and each
21 // will manage a unique instance. It also preallocates the space for Type, as
22 // to avoid allocating the Type instance on the heap. This may help with the
24 // requires that Type be a complete type so we can determine the size.
57 template <typename Type>
62 static Type* New(void* instance)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeList.java 17 package com.android.dexgen.rop.type;
20 * List of {@link Type} instances (or of things that contain types).
49 public Type getType(int n);
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type);
  /dalvik/dx/src/com/android/dx/rop/type/
TypeList.java 17 package com.android.dx.rop.type;
20 * List of {@link Type} instances (or of things that contain types).
49 public Type getType(int n);
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
FileMetadata.h 48 enum Type {
54 Type type; member in struct:WebCore::FileMetadata
57 FileMetadata() : modificationTime(invalidFileTime()), length(-1), type(TypeUnknown) { }
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileInfo.h 47 enum Type {
53 Type type; member in struct:WebKit::WebFileInfo
57 WebFileInfo() : modificationTime(0.0), length(-1), type(TypeUnknown) { }
  /external/clang/include/clang/AST/
ASTFwd.h 23 class Type;
24 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_atomic_test.cc 23 typedef typename T::Type Type;
25 Type old_val = 42;
26 Type new_val = 24;
27 Type var = old_val;
35 Type old_val = 42;
36 Type new_val = 24;
37 Type var = old_val;
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
TypeList.java 17 package com.android.dx.rop.type;
20 * List of {@link Type} instances (or of things that contain types).
49 public Type getType(int n);
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type);
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
AmbientLight.java 22 public Type getType() {
23 return Type.Ambient;
  /external/chromium_org/chrome/browser/extensions/
crx_installer_error.h 16 enum Type {
30 CrxInstallerError(Type type, const string16& message)
31 : type_(type), message_(message) {
34 Type type() const { return type_; } function in class:extensions::CrxInstallerError
38 Type type_;
  /external/chromium_org/content/browser/device_orientation/
data_fetcher.h 17 // type or if this fetcher can never provide this type of data. Otherwise,
19 virtual const DeviceData* GetDeviceData(DeviceData::Type type) = 0;
  /external/chromium_org/ipc/
ipc_param_traits.h 9 // a data type is read, written and logged in the IPC system.
18 typedef P Type;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
EventListener.h 34 enum Type {
52 Type type() const { return m_type; } function in class:WebCore::EventListener
55 explicit EventListener(Type type)
56 : m_type(type)
63 Type m_type;
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageQuota.h 47 enum Type {
52 static PassRefPtr<StorageQuota> create(Type type)
54 return adoptRef(new StorageQuota(type));
64 explicit StorageQuota(Type);
65 Type m_type;
  /external/chromium_org/tools/android/forwarder2/
command.h 16 enum Type {
38 command::Type* command_type_out);
42 bool ReceivedCommand(command::Type command, Socket* socket);
44 bool SendCommand(command::Type command, int port, Socket* socket);
  /external/llvm/include/llvm/Analysis/
FindUsedTypes.h 22 class Type;
26 SetVector<Type *> UsedTypes;
36 const SetVector<Type *> &getTypes() const { return UsedTypes; }
45 /// IncorporateType - Incorporate one type and all of its subtypes into the
48 void IncorporateType(Type *Ty);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rops.java 23 import com.android.dexgen.rop.type.Prototype;
24 import com.android.dexgen.rop.type.StdTypeList;
25 import com.android.dexgen.rop.type.Type;
26 import com.android.dexgen.rop.type.TypeBearer;
27 import com.android.dexgen.rop.type.TypeList;
35 new Rop(RegOps.NOP, Type.VOID, StdTypeList.EMPTY, "nop");
39 new Rop(RegOps.MOVE, Type.INT, StdTypeList.INT, "move-int");
43 new Rop(RegOps.MOVE, Type.LONG, StdTypeList.LONG, "move-long");
47 new Rop(RegOps.MOVE, Type.FLOAT, StdTypeList.FLOAT, "move-float")
1826 Type type = arrayType.getType(); local
1857 Type type = arrayType.getType(); local
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Rops.java 23 import com.android.dx.rop.type.Prototype;
24 import com.android.dx.rop.type.StdTypeList;
25 import com.android.dx.rop.type.Type;
26 import com.android.dx.rop.type.TypeBearer;
27 import com.android.dx.rop.type.TypeList;
35 new Rop(RegOps.NOP, Type.VOID, StdTypeList.EMPTY, "nop");
39 new Rop(RegOps.MOVE, Type.INT, StdTypeList.INT, "move-int");
43 new Rop(RegOps.MOVE, Type.LONG, StdTypeList.LONG, "move-long");
47 new Rop(RegOps.MOVE, Type.FLOAT, StdTypeList.FLOAT, "move-float")
1830 Type type = arrayType.getType(); local
1861 Type type = arrayType.getType(); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
Rops.java 23 import com.android.dx.rop.type.Prototype;
24 import com.android.dx.rop.type.StdTypeList;
25 import com.android.dx.rop.type.Type;
26 import com.android.dx.rop.type.TypeBearer;
27 import com.android.dx.rop.type.TypeList;
35 new Rop(RegOps.NOP, Type.VOID, StdTypeList.EMPTY, "nop");
39 new Rop(RegOps.MOVE, Type.INT, StdTypeList.INT, "move-int");
43 new Rop(RegOps.MOVE, Type.LONG, StdTypeList.LONG, "move-long");
47 new Rop(RegOps.MOVE, Type.FLOAT, StdTypeList.FLOAT, "move-float")
1830 Type type = arrayType.getType(); local
1861 Type type = arrayType.getType(); local
    [all...]
  /external/chromium_org/ppapi/shared_impl/
socket_option_data.h 15 enum Type {
24 Type GetType() const;
33 Type type_;
  /external/chromium_org/third_party/WebKit/public/web/
WebMediaPlayerAction.h 37 enum Type {
45 Type type; member in struct:WebKit::WebMediaPlayerAction
49 : type(Unknown), enable(false) { }
50 WebMediaPlayerAction(Type type, bool enable)
51 : type(type), enable(enable) { }
WebPluginAction.h 37 enum Type {
43 Type type; member in struct:WebKit::WebPluginAction
47 : type(Unknown), enable(false) { }
48 WebPluginAction(Type type, bool enable)
49 : type(type), enable(enable) { }
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
RpcUtil.java 43 * {@code RpcCallback} accepting a specific message type. This is always
44 * type-safe (parameter type contravariance).
47 public static <Type extends Message> RpcCallback<Type>
49 return (RpcCallback<Type>)originalCallback;
53 // return new RpcCallback<Type>() {
54 // public void run(Type parameter) {
61 * Take an {@code RpcCallback} accepting a specific message type and convert
68 public static <Type extends Message
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
RpcUtil.java 43 * {@code RpcCallback} accepting a specific message type. This is always
44 * type-safe (parameter type contravariance).
47 public static <Type extends Message> RpcCallback<Type>
49 return (RpcCallback<Type>)originalCallback;
53 // return new RpcCallback<Type>() {
54 // public void run(Type parameter) {
61 * Take an {@code RpcCallback} accepting a specific message type and convert
68 public static <Type extends Message
    [all...]
  /external/webrtc/src/system_wrappers/interface/
sort.h 21 enum Type
36 // data [in/out] A pointer to an array of intrinsic type.
39 // dataType Enum corresponding to the type of the array.
42 WebRtc_Word32 Sort(void* data, WebRtc_UWord32 numOfElements, Type dataType);
50 // data [in/out] A pointer to an array of arbitrary type.
56 // keyType Enum corresponding to the type of the key array.
61 WebRtc_UWord32 sizeOfElement, Type keyType);

Completed in 537 milliseconds

1 23 4 5 6 7 8 91011>>