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

1 2 3 4

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxtmpl.h 51 template<class TYPE,class ARG_TYPE>
52 WINBOOL DXCompareElements(const TYPE *pElement1,const ARG_TYPE *pElement2) {
54 _ASSERT(DXIsValidAddress(pElement2,sizeof(ARG_TYPE),FALSE));
86 template<class TYPE,class ARG_TYPE>
96 void SetAt(int nIndex,ARG_TYPE newElement);
100 void SetAtGrow(int nIndex,ARG_TYPE newElement);
101 int Add(ARG_TYPE newElement);
106 void InsertAt(int nIndex,ARG_TYPE newElement,int nCount = 1);
119 template<class TYPE,class ARG_TYPE>
120 inline int CDXArray<TYPE,ARG_TYPE>::GetSize() const { return m_nSize;
    [all...]
  /frameworks/base/tools/aidl/
aidl_language.h 34 typedef struct arg_type { struct
39 struct arg_type *next;
40 } arg_type; typedef in typeref:struct:arg_type
58 arg_type* args;
112 arg_type *arg;
  /system/bt/bta/ag/
bta_ag_at.c 86 UINT8 arg_type; local
107 arg_type = BTA_AG_AT_NONE;
113 arg_type = BTA_AG_AT_READ;
121 arg_type = BTA_AG_AT_TEST;
126 arg_type = BTA_AG_AT_SET;
135 arg_type = BTA_AG_AT_FREE;
139 if ((arg_type & p_cb->p_at_tbl[idx].arg_type) != 0)
142 if (arg_type == BTA_AG_AT_SET &&
155 (*p_cb->p_cmd_cback)(p_cb->p_user, idx, arg_type, p_arg, int_arg)
    [all...]
bta_ag_at.h 50 UINT8 arg_type; /* allowable argument type syntax */ member in struct:__anon68518
57 typedef void (tBTA_AG_AT_CMD_CBACK)(void *p_user, UINT16 cmd, UINT8 arg_type,
  /art/runtime/arch/arm/
quick_entrypoints_cc_arm.cc 46 char arg_type = shorty[shorty_index]; local
48 arg_type = (arg_type == 'D') ? 'J' : arg_type; // Regard double as long.
49 arg_type = (arg_type == 'F') ? 'I' : arg_type; // Regard float as int.
51 switch (arg_type) {
  /external/google-breakpad/src/testing/include/gmock/
gmock-generated-matchers.h     [all...]
  /bionic/benchmarks/benchmark/
Benchmark.h 163 #define BENCHMARK_WITH_ARG(f, arg_type) \
164 BENCHMARK_START(f, ::testing::BenchmarkWithArg<arg_type>) \
165 virtual void Run(int, arg_type) override; \
167 static ::testing::BenchmarkWithArg<arg_type>* __benchmark_##f = (new f())
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_logic.c 496 LLVMTypeRef arg_type; local
506 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 4);
510 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 8);
516 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 2);
520 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 4);
523 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 16);
526 if (arg_type != bld->int_vec_type) {
527 mask = LLVMBuildBitCast(builder, mask, arg_type, "");
530 if (arg_type != bld->vec_type) {
531 a = LLVMBuildBitCast(builder, a, arg_type, "");
    [all...]
  /external/ltrace/
type.h 29 enum arg_type { enum
46 enum arg_type type;
72 struct arg_type_info *type_get_simple(enum arg_type type);
138 int type_is_integral(enum arg_type type);
141 int type_is_signed(enum arg_type type);
printf.c 122 enum arg_type format_type, enum arg_type elt_type,
130 static enum arg_type ints[] =
133 static enum arg_type uints[] =
209 enum arg_type format_type = ARGTYPE_VOID;
210 enum arg_type elt_type = ARGTYPE_VOID;
  /external/libnl/src/
nl-route-add.c 79 ARG_TYPE,
96 { "type", 1, 0, ARG_TYPE },
119 case ARG_TYPE: nl_cli_route_parse_type(route, optarg); break;
nl-route-list.c 77 ARG_TYPE,
95 { "type", 1, 0, ARG_TYPE },
119 case ARG_TYPE: nl_cli_route_parse_type(route, optarg); break;
nl-route-delete.c 107 ARG_TYPE,
127 { "type", 1, 0, ARG_TYPE },
152 case ARG_TYPE: nf++; nl_cli_route_parse_type(route, optarg); break;
  /external/bison/lib/
printf-args.h 88 } arg_type; typedef in typeref:enum:__anon4691
93 arg_type type;
  /external/e2fsprogs/intl/
printf-args.h 75 } arg_type; typedef in typeref:enum:__anon8174
80 arg_type type;
printf-parse.h 66 to the end of the format string. Also fills in the arg_type fields of the
wprintf-parse.h 66 to the end of the format string. Also fills in the arg_type fields of the
  /system/bt/bta/hf_client/
bta_hf_client_at.h 31 UINT8 arg_type; /* allowable argument type syntax */ member in struct:__anon68708
38 typedef void (tBTA_AG_AT_CMD_CBACK)(void *p_user, UINT16 cmd, UINT8 arg_type,
  /external/lldb/source/Interpreter/
CommandObject.cpp 494 CommandObject::FindArgumentDataByType (CommandArgumentType arg_type)
499 if (table[i].arg_type == arg_type)
506 CommandObject::GetArgumentHelp (Stream &str, CommandArgumentType arg_type, CommandInterpreter &interpreter)
509 ArgumentTableEntry *entry = (ArgumentTableEntry *) &(table[arg_type]);
511 // The table is *supposed* to be kept in arg_type order, but someone *could* have messed it up...
513 if (entry->arg_type != arg_type)
514 entry = CommandObject::FindArgumentDataByType (arg_type);
541 CommandObject::GetArgumentName (CommandArgumentType arg_type)
554 str << "Arg name for type (" << arg_type << ") not in arg table!"; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
invocation.cpp 215 llvm::Type *arg_type = arg.getType(); local
217 unsigned arg_size = TD.getTypeStoreSize(arg_type);
219 if (llvm::isa<llvm::PointerType>(arg_type) && arg.hasByValAttr()) {
220 arg_type =
221 llvm::dyn_cast<llvm::PointerType>(arg_type)->getElementType();
224 if (arg_type->isPointerTy()) {
228 unsigned address_space = llvm::cast<llvm::PointerType>(arg_type)->getAddressSpace();
  /cts/tools/dasm/src/dasm/
DopInfo.java 64 public final static String ARG_TYPE = "T";
86 public final static String ARG_REG_TYPE = ARG_REGISTER + ARG_TYPE;
88 + ARG_TYPE;
95 public final static String ARG_REGLIST_TYPE = ARG_REGLIST + ARG_TYPE;
99 public final static String ARG_REGRANGE_TYPE = ARG_REGRANGE + ARG_TYPE;
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/
types.pass.cpp 75 template <class F, class return_type, class arg_type>
79 static_assert((std::is_same<typename F::argument_type, arg_type>::value), "" );
  /external/lldb/scripts/Python/interface/
SBCommandInterpreter.i 73 GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type);
76 GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type);
  /external/lldb/source/Commands/
CommandObjectHelp.cpp 40 command_arg.arg_type = eArgTypeCommandName;
176 const CommandArgumentType arg_type = CommandObject::LookupArgumentName (command.GetArgumentAtIndex (0)); local
177 if (arg_type != eArgTypeLastArg)
180 CommandObject::GetArgumentHelp (output_strm, arg_type, m_interpreter);
CommandObjectSettings.cpp 46 var_name_arg.arg_type = eArgTypeSettingVariableName;
53 value_arg.arg_type = eArgTypeValue;
313 var_name_arg.arg_type = eArgTypeSettingVariableName;
402 var_name_arg.arg_type = eArgTypeSettingVariableName;
406 prefix_name_arg.arg_type = eArgTypeSettingPrefix;
500 var_name_arg.arg_type = eArgTypeSettingVariableName;
507 index_arg.arg_type = eArgTypeSettingIndex;
511 key_arg.arg_type = eArgTypeSettingKey;
622 var_name_arg.arg_type = eArgTypeSettingVariableName;
629 index_arg.arg_type = eArgTypeSettingIndex
    [all...]

Completed in 643 milliseconds

1 2 3 4