HomeSort by relevance Sort by last modified time
    Searched refs:type (Results 251 - 275 of 32510) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/mesa/drivers/dri/common/
xmlpool.h 60 #define DRI_CONF_OPT_BEGIN(name,type,def) \
61 "<option name=\""#name"\" type=\""#type"\" default=\""#def"\">\n"
68 "<option name=\""#name"\" type=\"bool\" default="#def">\n"
71 #define DRI_CONF_OPT_BEGIN_Q(name,type,def) \
72 "<option name=\""#name"\" type=\""#type"\" default="#def">\n"
75 #define DRI_CONF_OPT_BEGIN_V(name,type,def,valid) \
76 "<option name=\""#name"\" type=\""#type"\" default=\""#def"\" valid=\""valid"\">\n
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlToken.java 37 final HtmlTokenType type; field in class:HtmlToken
39 static HtmlToken instance(int start, int end, HtmlTokenType type) {
40 return new HtmlToken(start, end, type);
49 private HtmlToken(int start, int end, HtmlTokenType type) {
52 this.type = type;
  /external/skia/tools/fiddle/
parse-fiddle-output 9 type=$(echo $line | sed -n 's/[^"]*"\([^"]*\)":.*/\1/p')
10 if [ "$type" ]; then
11 case "$type" in
17 dst="${TMPDIR:-/tmp}/fiddle_${type}${ext}"
  /external/skqp/tools/fiddle/
parse-fiddle-output 9 type=$(echo $line | sed -n 's/[^"]*"\([^"]*\)":.*/\1/p')
10 if [ "$type" ]; then
11 case "$type" in
17 dst="${TMPDIR:-/tmp}/fiddle_${type}${ext}"
  /external/v8/src/objects/
object-macros.h 19 #define DECL_ACCESSORS(name, type) \
20 inline type* name() const; \
21 inline void set_##name(type* value, \
24 #define DECLARE_CAST(type) \
25 INLINE(static type* cast(Object* object)); \
26 INLINE(static const type* cast(const Object* object));
  /external/valgrind/none/tests/s390x/
dfp_utils.h 10 #define DFP_VAL_PRINT(op, type) \
12 size_t n = sizeof(type); \
22 #define DFP_BINOP_PRINT(op1, op2, result, type, op, cc) \
24 DFP_VAL_PRINT(op1, type); \
26 DFP_VAL_PRINT(op2, type); \
28 DFP_VAL_PRINT(result, type); \
  /frameworks/opt/net/voip/src/jni/rtp/
AudioCodec.cpp 41 AudioCodecType *type = gAudioCodecTypes; local
42 while (type->name != NULL) {
43 if (strcasecmp(codecName, type->name) == 0) {
44 AudioCodec *codec = type->create();
45 codec->name = type->name;
48 ++type;
  /libcore/ojluni/src/main/java/jdk/net/
ExtendedSocketOptions.java 40 private final Class<T> type; field in class:ExtendedSocketOptions.ExtSocketOption
41 ExtSocketOption(String name, Class<T> type) {
43 this.type = type;
46 @Override public Class<T> type() { return type; } method in class:ExtendedSocketOptions.ExtSocketOption
  /prebuilts/go/darwin-x86/src/runtime/
defs1_linux.go 28 type Usigset C.__sigset_t
29 type Fpxreg C.struct__libc_fpxreg
30 type Xmmreg C.struct__libc_xmmreg
31 type Fpstate C.struct__libc_fpstate
32 type Fpxreg1 C.struct__fpxreg
33 type Xmmreg1 C.struct__xmmreg
34 type Fpstate1 C.struct__fpstate
35 type Fpreg1 C.struct__fpreg
36 type StackT C.stack_t
37 type Mcontext C.mcontext_
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
types_darwin.go 83 type (
92 type Timespec C.struct_timespec
94 type Timeval C.struct_timeval
96 type Timeval32 C.struct_timeval32
100 type Rusage C.struct_rusage
102 type Rlimit C.struct_rlimit
104 type _Gid_t C.gid_t
108 type Stat_t C.struct_stat64
110 type Statfs_t C.struct_statfs64
112 type Flock_t C.struct_floc
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
defs1_linux.go 28 type Usigset C.__sigset_t
29 type Fpxreg C.struct__libc_fpxreg
30 type Xmmreg C.struct__libc_xmmreg
31 type Fpstate C.struct__libc_fpstate
32 type Fpxreg1 C.struct__fpxreg
33 type Xmmreg1 C.struct__xmmreg
34 type Fpstate1 C.struct__fpstate
35 type Fpreg1 C.struct__fpreg
36 type StackT C.stack_t
37 type Mcontext C.mcontext_
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
types_darwin.go 83 type (
92 type Timespec C.struct_timespec
94 type Timeval C.struct_timeval
96 type Timeval32 C.struct_timeval32
100 type Rusage C.struct_rusage
102 type Rlimit C.struct_rlimit
104 type _Gid_t C.gid_t
108 type Stat_t C.struct_stat64
110 type Statfs_t C.struct_statfs64
112 type Flock_t C.struct_floc
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
FileType.java 52 String type; local
54 type = "directory";
56 type = Files.probeContentType(file);
57 if (type == null)
58 type = "<not recognized>";
60 System.out.format("%s\t%s%n", file, type);
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/file/
FileType.java 52 String type; local
54 type = "directory";
56 type = Files.probeContentType(file);
57 if (type == null)
58 type = "<not recognized>";
60 System.out.format("%s\t%s%n", file, type);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
timers.h 21 typedef std::chrono::high_resolution_clock type; typedef in struct:benchmark::ChooseSteadyClock
26 typedef std::chrono::steady_clock type; typedef in struct:benchmark::ChooseSteadyClock
32 typedef ChooseSteadyClock<>::type type; typedef in struct:benchmark::ChooseClockType
34 typedef std::chrono::high_resolution_clock type;
39 typedef ChooseClockType::type ClockType;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
ifunc-5.s 2 .type foo, %gnu_indirect_function
4 .type foo, @function
8 .type start,"function"
11 .type _start,"function"
14 .type __start,"function"
17 .type __start,"function"
ifunc-6.s 2 .type foo, %gnu_indirect_function
4 .type foo, @function
9 .type start,"function"
12 .type _start,"function"
15 .type __start,"function"
18 .type __start,"function"
ifunc-7.s 2 .type foo, %gnu_indirect_function
4 .type foo, @function
9 .type start,"function"
12 .type _start,"function"
15 .type __start,"function"
18 .type __start,"function"
ifunc-9.s 2 .type foo, %gnu_indirect_function
4 .type foo, @function
8 .type start,"function"
11 .type _start,"function"
14 .type __start,"function"
17 .type __start,"function"
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
cortex-a8-far-3.s 2 .type far_fn, %function
5 .type far_fn1, %function
8 .type far_fn2, %function
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ifunc/
ifunc-21-i386.s 2 .type start,"function"
5 .type _start,"function"
8 .type __start,"function"
11 .type __start,"function"
18 .type foo, %gnu_indirect_function
21 .type bar, %function
ifunc-21-x86-64.s 2 .type start,"function"
5 .type _start,"function"
8 .type __start,"function"
11 .type __start,"function"
18 .type foo, %gnu_indirect_function
21 .type bar, %function
ifunc-5-i386.s 2 .type foo, %gnu_indirect_function
4 .type foo, @function
8 .type start,"function"
11 .type _start,"function"
14 .type __start,"function"
17 .type __start,"function"
ifunc-5-local-i386.s 2 .type foo, %gnu_indirect_function
3 .type foo, @function
7 .type start,"function"
10 .type _start,"function"
13 .type __start,"function"
16 .type __start,"function"
ifunc-6-i386.s 2 .type foo, %gnu_indirect_function
4 .type foo, @function
9 .type start,"function"
12 .type _start,"function"
15 .type __start,"function"
18 .type __start,"function"

Completed in 496 milliseconds

<<11121314151617181920>>