/libcore/luni/src/main/java/java/lang/reflect/ |
Type.java | 24 public interface Type {
|
/development/host/windows/usb/api/ |
adb_interface_enum.h | 86 static AdbObjectType Type() {
|
adb_endpoint_object.h | 187 static AdbObjectType Type() {
|
adb_io_completion.h | 118 static AdbObjectType Type() {
|
/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/base/i18n/ |
icu_string_conversions.h | 19 enum Type { 48 OnStringConversionError::Type on_error, 52 OnStringConversionError::Type on_error, 60 OnStringConversionError::Type on_error, 64 OnStringConversionError::Type on_error,
|
/external/chromium/chrome/browser/tab_contents/ |
infobar_delegate.h | 25 // does not map to a specific InfoBar type. Instead, you must implement either 47 // The type of the infobar. It controls its appearance, such as its background 49 enum Type { 85 // Returns the type of the infobar. The type determines the appearance (such 87 virtual Type GetInfoBarType() const; 89 // Type-checking downcast routines:
|
/external/chromium_org/base/i18n/ |
icu_string_conversions.h | 20 enum Type { 43 OnStringConversionError::Type on_error, 47 OnStringConversionError::Type on_error, 55 OnStringConversionError::Type on_error, 59 OnStringConversionError::Type on_error,
|
/external/chromium_org/cc/animation/ |
animation_curve.cc | 13 DCHECK(Type() == AnimationCurve::Color); 17 AnimationCurve::CurveType ColorAnimationCurve::Type() const { return Color; } 20 DCHECK(Type() == AnimationCurve::Float); 24 AnimationCurve::CurveType FloatAnimationCurve::Type() const { 30 DCHECK(Type() == AnimationCurve::Transform); 34 AnimationCurve::CurveType TransformAnimationCurve::Type() const { 39 DCHECK(Type() == AnimationCurve::Filter); 43 AnimationCurve::CurveType FilterAnimationCurve::Type() const { 49 DCHECK(Type() == AnimationCurve::ScrollOffset); 54 DCHECK(Type() == AnimationCurve::ScrollOffset) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/ |
CrossThreadCopier.cpp | 43 CrossThreadCopierBase<false, false, KURL>::Type CrossThreadCopierBase<false, false, KURL>::copy(const KURL& url) 48 CrossThreadCopierBase<false, false, String>::Type CrossThreadCopierBase<false, false, String>::copy(const String& str) 53 CrossThreadCopierBase<false, false, ResourceError>::Type CrossThreadCopierBase<false, false, ResourceError>::copy(const ResourceError& error) 58 CrossThreadCopierBase<false, false, ResourceRequest>::Type CrossThreadCopierBase<false, false, ResourceRequest>::copy(const ResourceRequest& request) 63 CrossThreadCopierBase<false, false, ResourceResponse>::Type CrossThreadCopierBase<false, false, ResourceResponse>::copy(const ResourceResponse& response) 76 CrossThreadCopier<PassRefPtr<CopierThreadSafeRefCountedTest> >::Type 81 CrossThreadCopier<RefPtr<CopierThreadSafeRefCountedTest> >::Type 86 CrossThreadCopier<CopierThreadSafeRefCountedTest*>::Type 93 typedef int Type; 96 // Verify that RefCounted objects only match our generic template which exposes Type as int [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
PassTraits.h | 42 typedef T Type; 44 static Type& transfer(Type& value) { return value; } 48 typedef OwnPtr<T> Type; 50 static PassType transfer(Type& value) { return value.release(); } 54 typedef RefPtr<T> Type; 56 static PassType transfer(Type& value) { return value.release(); }
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
api_implementation.py | 82 def Type(): 85 # See comment on 'Type' above.
|
/external/chromium_org/ui/gfx/ |
scoped_gobject.h | 15 // struct. When using this, you need to include ::Type. E.g., 16 // ScopedGObject<GdkPixbufLoader>::Type loader(gdk_pixbuf_loader_new()); 29 typedef scoped_ptr_malloc<T, GObjectUnrefer<T> > 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/compiler-rt/lib/ubsan/ |
ubsan_handlers_cxx.h | 23 const TypeDescriptor &Type; 28 /// \brief Handle a runtime type check failure, caused by an incorrect vptr. 29 /// When this handler is called, all we know is that the type was not in the
|
/external/llvm/lib/Object/ |
ObjectFile.cpp | 26 ObjectFile::ObjectFile(unsigned int Type, MemoryBuffer *source) 27 : Binary(Type, source) { 46 sys::fs::file_magic Type = sys::fs::identify_magic(Object->getBuffer()); 47 switch (Type) { 74 llvm_unreachable("Unexpected Object File Type");
|
/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
AArch64ELFObjectWriter.cpp | 51 unsigned Type; 63 Type = ELF::R_AARCH64_LD_PREL_LO19; 66 Type = ELF::R_AARCH64_ADR_PREL_LO21; 69 Type = ELF::R_AARCH64_ADR_PREL_PG_HI21; 72 Type = ELF::R_AARCH64_ADR_GOT_PAGE; 75 Type = ELF::R_AARCH64_TSTBR14; 78 Type = ELF::R_AARCH64_CONDBR19; 81 Type = ELF::R_AARCH64_JUMP26; 84 Type = ELF::R_AARCH64_CALL26; 87 Type = ELF::R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/network/chrome-firephp/ |
devtools.js | 8 Console.Type = { 19 Console.addMessage = function(type, format, args) { 29 var console_types = Object.getOwnPropertyNames(Console.Type); 30 for (var type = 0; type < console_types.length; ++type) { 31 var method_name = Console.Type[console_types[type]]; 82 var type = meta.Type; [all...] |
/art/compiler/sea_ir/types/ |
types.h | 27 typedef art::verifier::RegType Type; 29 // Stores information about the result type of each instruction. 30 // Note: Main purpose is to encapsulate the map<instruction id, type*>, 34 art::SafeMap<int, const Type*>* GetTypeMap() { 37 // Returns the type associated with instruction with @instruction_id. 38 const Type* FindTypeOf(int instruction_id) { 39 art::SafeMap<int, const Type*>::const_iterator result_it = type_map_.find(instruction_id); 46 // Saves the fact that instruction @instruction_id produces a value of type @type. 47 void SetTypeOf(int instruction_id, const Type* type) [all...] |
/external/chromium/chrome/browser/prefs/ |
session_startup_pref.h | 19 enum Type { 40 // Whether the startup type and URLs are managed via policy. 46 explicit SessionStartupPref(Type type); 51 Type type; member in struct:SessionStartupPref 53 // The URLs to restore. Only used if type == URLS.
|
/external/chromium/chrome/common/ |
translate_errors.h | 13 enum Type {
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
tokenizer.py | 25 Type = tokens.TokenType 36 default_types: Dictionary of modes to types, defining what type to give 37 non-matched text when in the given mode. Defaults to Type.NORMAL. 47 default_types: Dictionary of modes to types, defining what type to give 48 non-matched text when in the given mode. Defaults to Type.NORMAL. 83 token_type: The type of token. 106 self.__AddToken(self._CreateToken('', Type.BLANK_LINE, line, line_number)) 126 self.__AddToken(self._CreateToken(match.group(), matcher.type, line, 159 A Token object, of the default type for the current mode. 161 type = Type.NORMA [all...] |
/external/chromium_org/chromeos/network/ |
network_profile.h | 15 enum Type { 29 Type type() const { function in struct:chromeos::NetworkProfile
|
/external/chromium_org/content/browser/device_orientation/ |
device_data.h | 20 // TODO(timvolodine): move the DeviceData::Type enum to the service class 22 enum Type {
|
/external/chromium_org/content/child/fileapi/ |
webfilewriter_impl.h | 21 enum Type { 28 Type type,
|