Searched refs:type (Results 76 - 100 of 19236) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebSelectionBound.h20 explicit WebSelectionBound(Type type) argument
21 : type(type)
26 // The logical type of the endpoint. Note that this is dependent not only on
28 Type type; member in struct:blink::WebSelectionBound
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DCodeGen.cpp17 sh::GLenum type, ShShaderSpec spec, ShShaderOutput output)
21 return new TranslatorESSL(type, spec);
23 return new TranslatorGLSL(type, spec);
26 return new TranslatorHLSL(type, spec, output);
16 ConstructCompiler( sh::GLenum type, ShShaderSpec spec, ShShaderOutput output) argument
/external/chromium_org/third_party/webrtc/base/
H A Dsocketfactory.h23 // Returns a new socket for blocking communication. The type can be
28 virtual Socket* CreateSocket(int type) = 0;
29 virtual Socket* CreateSocket(int family, int type) = 0;
30 // Returns a new socket for nonblocking communication. The type can be
32 virtual AsyncSocket* CreateAsyncSocket(int type) = 0;
33 virtual AsyncSocket* CreateAsyncSocket(int family, int type) = 0;
/external/chromium_org/ui/webui/resources/js/
H A Dassert.js56 * @param {function(new: T, ...)} type A user-defined constructor.
60 function assertInstanceof(value, type) {
61 if (!(value instanceof type))
62 throw new Error(value + ' is not a[n] ' + (type.name || typeof type));
/external/clang/test/CodeCompletion/
H A Dconstexpr.cpp6 typedef int type; typedef in struct:S
13 // CHECK: COMPLETION: type : type
/external/clang/test/CodeGen/
H A D2002-03-12-StructInitialize.c6 char type[10]; member in struct:Connection_Type
H A D2002-03-12-StructInitializer.c10 char type[10]; member in struct:Connection_Type
H A D2007-04-24-str-const.c6 unsigned type; member in struct:__anon18541
/external/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
H A Denable_if.fail.cpp18 typedef std::enable_if<false>::type A;
/external/chromium_org/chrome/browser/ui/views/touch_uma/
H A Dtouch_uma_ash.cc11 ash::TouchUMA::GestureActionType type = ash::TouchUMA::GESTURE_UNKNOWN; local
14 type = ash::TouchUMA::GESTURE_TABSWITCH_TAP;
17 type = ash::TouchUMA::GESTURE_TABNOSWITCH_TAP;
20 type = ash::TouchUMA::GESTURE_TABCLOSE_TAP;
23 type = ash::TouchUMA::GESTURE_NEWTAB_TAP;
26 type = ash::TouchUMA::GESTURE_ROOTVIEWTOP_TAP;
29 ash::TouchUMA::GetInstance()->RecordGestureAction(type);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasPattern.cpp35 Pattern::RepeatMode CanvasPattern::parseRepetitionType(const String& type, argument
38 if (type.isEmpty() || type == "repeat")
41 if (type == "no-repeat")
44 if (type == "repeat-x")
47 if (type == "repeat-y")
50 exceptionState.throwDOMException(SyntaxError, "The provided type ('" + type + "') is not one of 'repeat', 'no-repeat', 'repeat-x', or 'repeat-y'.");
/external/chromium_org/tools/json_to_struct/
H A Dstruct_generator.py10 if contents['type'] == 'array':
16 """Generate a string defining a field of the type specified by
17 field_info['type'] in a C structure.
20 type = field_info['type']
21 if type == 'int':
23 elif type == 'string':
25 elif type == 'string16':
27 elif type == 'enum':
29 elif type
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/settings/
H A DChatSetting.java25 private int type; field in class:ChatSetting
27 public ChatSetting(String key, String value, int type){ argument
30 setType(type);
50 return type;
53 public void setType(int type) { argument
54 this.type = type;
/external/chromium_org/base/files/
H A Dfile_util_linux.cc30 bool GetFileSystemType(const FilePath& path, FileSystemType* type) { argument
35 *type = FILE_SYSTEM_UNKNOWN;
43 *type = FILE_SYSTEM_0;
52 *type = FILE_SYSTEM_ORDINARY;
55 *type = FILE_SYSTEM_NFS;
59 *type = FILE_SYSTEM_SMB;
62 *type = FILE_SYSTEM_CODA;
67 *type = FILE_SYSTEM_MEMORY;
70 *type = FILE_SYSTEM_CGROUP;
73 *type
[all...]
/external/chromium_org/chrome/browser/extensions/api/identity/
H A Didentity_mint_queue_unittest.cc32 IdentityMintRequestQueue::MintType type = local
39 EXPECT_CALL(request1, StartMintToken(type)).Times(1);
40 queue.RequestStart(type, *key, &request1);
41 queue.RequestComplete(type, *key, &request1);
43 EXPECT_CALL(request2, StartMintToken(type)).Times(1);
44 queue.RequestStart(type, *key, &request2);
45 queue.RequestComplete(type, *key, &request2);
49 IdentityMintRequestQueue::MintType type = local
55 EXPECT_CALL(request1, StartMintToken(type)).Times(1);
56 queue.RequestStart(type, *ke
61 IdentityMintRequestQueue::MintType type = local
84 IdentityMintRequestQueue::MintType type = local
102 IdentityMintRequestQueue::MintType type = local
117 IdentityMintRequestQueue::MintType type = local
[all...]
/external/chromium_org/chrome/browser/resources/sync_internals/
H A Dtypes.css6 #type-counters-table {
10 #type-counters-table th {
15 #type-counters-table th.type {
20 #type-counters-table tr:nth-child(odd) {
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_change.cc13 AutofillChange::AutofillChange(Type type, const AutofillKey& key) argument
14 : GenericAutofillChange<AutofillKey>(type, key) {
21 Type type, const std::string& key, const AutofillProfile* profile)
22 : GenericAutofillChange<std::string>(type, key),
24 DCHECK(type == ADD ? (profile && profile->guid() == key) : true);
25 DCHECK(type == UPDATE ? (profile && profile->guid() == key) : true);
26 DCHECK(type == REMOVE ? !profile : true);
34 return type() == change.type() &&
36 (type() !
20 AutofillProfileChange( Type type, const std::string& key, const AutofillProfile* profile) argument
[all...]
/external/chromium_org/ui/gfx/
H A Dscreen.cc26 ScreenType type = SCREEN_TYPE_NATIVE; local
28 type = g_screen_type_delegate_->GetScreenTypeForNativeView(view);
29 if (type == SCREEN_TYPE_NATIVE)
31 DCHECK(g_screen_[type]);
32 return g_screen_[type];
36 void Screen::SetScreenInstance(ScreenType type, Screen* instance) { argument
37 DCHECK_LE(type, SCREEN_TYPE_LAST);
38 g_screen_[type] = instance;
42 Screen* Screen::GetScreenByType(ScreenType type) { argument
43 return g_screen_[type];
[all...]
/external/clang/test/SemaCXX/
H A Dcrash-lambda-12645424.cpp7 typedef _Tp type; typedef in struct:add_lvalue_reference
14 typedef T type; typedef in struct:C
18 typedef typename C<typename Fun0<T>::type, Funs...>::type type; typedef in struct:C
23 typedef type_list<typename C<Ts, Funs...>::type...> type; typedef in struct:tl_map
28 tl_map< filtered_pattern, add_lvalue_reference > type; member in struct:F
32 F<Pattern> type; member in struct:get_case
36 template<typename Expr> typename get_case<Expr, Pattern>::type operato
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DLocal.java22 * A temporary variable that holds a single value of a known type.
26 final TypeId<T> type; field in class:Local
30 private Local(Code code, TypeId<T> type) { argument
32 this.type = type;
35 static <T> Local<T> get(Code code, TypeId<T> type) { argument
36 return new Local<T>(code, type);
46 this.spec = RegisterSpec.make(nextAvailableRegister, type.ropType);
54 return type.ropType.getCategory();
68 return type;
[all...]
H A DUnaryOp.java29 @Override Rop rop(TypeId<?> type) {
30 return Rops.opNot(type.ropType);
36 @Override Rop rop(TypeId<?> type) {
37 return Rops.opNeg(type.ropType);
41 abstract Rop rop(TypeId<?> type); argument
/external/kernel-headers/original/uapi/linux/
H A Dandroid_alarm.h48 #define ANDROID_ALARM_CLEAR(type) _IO('a', 0 | ((type) << 4))
53 #define ALARM_IOW(c, type, size) _IOW('a', (c) | ((type) << 4), size)
55 #define ANDROID_ALARM_SET(type) ALARM_IOW(2, type, struct timespec)
56 #define ANDROID_ALARM_SET_AND_WAIT(type) ALARM_IOW(3, type, struct timespec)
57 #define ANDROID_ALARM_GET_TIME(type) ALARM_IOW(4, type, struc
[all...]
/external/valgrind/main/none/tests/ppc32/
H A DtestVMX.stdout.exp3 Function vec_abs [type char] ===> OK
4 Function vec_abs [type short] ===> OK
5 Function vec_abs [type integer] ===> OK
8 Function vec_abss [type char] ===> OK
9 Function vec_abss [type short] ===> OK
10 Function vec_abss [type integer] ===> OK
13 Function vec_add [type char] ===> OK
14 Function vec_add [type unsigned char] ===> OK
15 Function vec_add [type short] ===> OK
16 Function vec_add [type unsigne
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
H A Dgenerate_outerProductGLSL.py4 type = "mat" + str(x)
6 type = type + "x" + str(y)
7 print type + " outerProduct(vec" + str(y) + " u, vec" + str(x) + " v)\n{"
8 print " " + type + " m;"
/external/chromium_org/v8/src/
H A Dproperty-details-inl.h16 Representation Representation::FromType(Type* type) { argument
18 if (type->Is(Type::None())) return Representation::None();
19 if (type->Is(Type::SignedSmall())) return Representation::Smi();
20 if (type->Is(Type::Signed32())) return Representation::Integer32();
21 if (type->Is(Type::Number())) return Representation::Double();

Completed in 7252 milliseconds

1234567891011>>