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

1 2 3

  /external/bluetooth/bluedroid/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:__anon5020
57 typedef void (tBTA_AG_AT_CMD_CBACK)(void *p_user, UINT16 cmd, UINT8 arg_type,
  /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/lldb/scripts/Python/interface/
SBCommandInterpreter.i 73 GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type);
76 GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type);
  /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;
  /external/bison/lib/
printf-args.h 88 } arg_type; typedef in typeref:enum:__anon4959
93 arg_type type;
  /external/bluetooth/bluedroid/bta/hf_client/
bta_hf_client_at.h 31 UINT8 arg_type; /* allowable argument type syntax */ member in struct:__anon5217
38 typedef void (tBTA_AG_AT_CMD_CBACK)(void *p_user, UINT16 cmd, UINT8 arg_type,
  /external/e2fsprogs/intl/
printf-args.h 75 } arg_type; typedef in typeref:enum:__anon24264
80 arg_type type;
  /external/lldb/include/lldb/Interpreter/
CommandObject.h 54 lldb::CommandArgumentType arg_type; member in struct:lldb_private::CommandObject::ArgumentTableEntry
63 lldb::CommandArgumentType arg_type; member in struct:lldb_private::CommandObject::CommandArgumentData
67 arg_type(lldb::eArgTypeNone),
90 GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type);
93 GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type);
196 FindArgumentDataByType (lldb::CommandArgumentType arg_type);
205 GetArgumentHelp (Stream &str, lldb::CommandArgumentType arg_type, CommandInterpreter &interpreter);
208 GetArgumentName (lldb::CommandArgumentType arg_type);
  /external/chromium_org/third_party/mesa/src/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/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/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/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...]
CommandObjectPlugin.cpp 40 cmd_arg.arg_type = eArgTypeFilename;
CommandObjectSyntax.cpp 42 command_arg.arg_type = eArgTypeCommandName;
CommandObjectLog.cpp 67 channel_arg.arg_type = eArgTypeLogChannel;
73 category_arg.arg_type = eArgTypeLogCategory;
248 channel_arg.arg_type = eArgTypeLogChannel;
254 category_arg.arg_type = eArgTypeLogCategory;
326 channel_arg.arg_type = eArgTypeLogChannel;
  /external/lldb/include/lldb/API/
SBCommandInterpreter.h 38 GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type);
41 GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type);
  /external/chromium_org/third_party/mesa/src/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();
  /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();
  /art/compiler/llvm/
intrinsic_helper.cc 109 ::llvm::Type* arg_type[kIntrinsicMaxArgc]; local
123 arg_type[num_args++] = GetLLVMTypeOfIntrinsicValType(irb, type);
132 ::llvm::ArrayRef< ::llvm::Type*>(arg_type, num_args),
  /external/chromium_org/remoting/webapp/
build-html.py 127 arg_type = arg
128 elif arg_type == '--js':
130 elif arg_type == '--template':
  /external/chromium_org/testing/gtest/scripts/
gen_gtest_pred_impl.py 620 arg_type = 'user-defined type (Bool)'
627 arg_type = 'built-in type (int)'
651 'arg_type' : arg_type,
659 // predicate-formatter is a %(pf_type)s on a %(arg_type)s.
  /external/protobuf/gtest/scripts/
gen_gtest_pred_impl.py 623 arg_type = 'user-defined type (Bool)'
630 arg_type = 'built-in type (int)'
654 'arg_type' : arg_type,
662 // predicate-formatter is a %(pf_type)s on a %(arg_type)s.

Completed in 1019 milliseconds

1 2 3