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

1 2

  /external/deqp/framework/delibs/decpp/
deCommandLine.hpp 45 struct NamedValue
65 const NamedValue<ValueType>* namedValues; //!< Named values or null.
66 const NamedValue<ValueType>* namedValuesEnd; //!< Named value list end.
93 Option (const char* shortName_, const char* longName_, const char* description_, const NamedValue<ValueType>* namedValues_, const NamedValue<ValueType>* namedValuesEnd_, const char* defaultValue_ = DE_NULL)
106 Option (const char* shortName_, const char* longName_, const char* description_, const NamedValue<ValueType> (&namedValues_)[NumNamedValues], const char* defaultValue_ = DE_NULL)
331 *value = static_cast<const NamedValue<typename OptTraits<OptType>::ValueType>*>(match)->value;
361 const NamedValue<typename OptTraits<OptType>::ValueType>* typedVal = static_cast<const NamedValue<typename OptTraits<OptType>::ValueType> >(value);
368 const NamedValue<typename OptTraits<OptType>::ValueType>* typedVal = static_cast<const NamedValue<typename OptTrait (…)
    [all...]
deCommandLine.cpp 45 inline const char* getNamedValueName (const void* namedValue)
47 return static_cast<const NamedValue<deUint8>*>(namedValue)->name;
399 static const NamedValue<deUint64> s_namedValues[] =
  /external/deqp/execserver/tools/
xsMain.cpp 45 using de::cmdline::NamedValue;
  /prebuilts/go/darwin-x86/src/database/sql/
ctxutil.go 29 func ctxDriverExec(ctx context.Context, execerCtx driver.ExecerContext, execer driver.Execer, query string, nvdargs []driver.NamedValue) (driver.Result, error) {
46 func ctxDriverQuery(ctx context.Context, queryerCtx driver.QueryerContext, queryer driver.Queryer, query string, nvdargs []driver.NamedValue) (driver.Rows, error) {
63 func ctxDriverStmtExec(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Result, error) {
80 func ctxDriverStmtQuery(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Rows, error) {
139 func namedValueToValue(named []driver.NamedValue) ([]driver.Value, error) {
convert_test.go 437 want []driver.NamedValue
441 want: []driver.NamedValue{
442 driver.NamedValue{
450 want: []driver.NamedValue{
451 driver.NamedValue{
459 want: []driver.NamedValue{
460 driver.NamedValue{
468 want: []driver.NamedValue{
469 driver.NamedValue{
477 want: []driver.NamedValue{
    [all...]
convert.go 22 func describeNamedValue(nv *driver.NamedValue) string {
48 func (c ccChecker) CheckNamedValue(nv *driver.NamedValue) error {
96 func defaultCheckNamedValue(nv *driver.NamedValue) (err error) {
105 func driverArgsConnLocked(ci driver.Conn, ds *driverStmt, args []interface{}) ([]driver.NamedValue, error) {
106 nvargs := make([]driver.NamedValue, len(args))
fakedb_test.go 434 func checkSubsetTypes(allowAny bool, args []driver.NamedValue) error {
452 func (c *fakeConn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {
469 func (c *fakeConn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {
720 func (s *fakeStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) {
775 func (s *fakeStmt) execInsert(args []driver.NamedValue, doInsert bool) (driver.Result, error) {
835 func (s *fakeStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) {
  /prebuilts/go/linux-x86/src/database/sql/
ctxutil.go 29 func ctxDriverExec(ctx context.Context, execerCtx driver.ExecerContext, execer driver.Execer, query string, nvdargs []driver.NamedValue) (driver.Result, error) {
46 func ctxDriverQuery(ctx context.Context, queryerCtx driver.QueryerContext, queryer driver.Queryer, query string, nvdargs []driver.NamedValue) (driver.Rows, error) {
63 func ctxDriverStmtExec(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Result, error) {
80 func ctxDriverStmtQuery(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Rows, error) {
139 func namedValueToValue(named []driver.NamedValue) ([]driver.Value, error) {
convert_test.go 437 want []driver.NamedValue
441 want: []driver.NamedValue{
442 driver.NamedValue{
450 want: []driver.NamedValue{
451 driver.NamedValue{
459 want: []driver.NamedValue{
460 driver.NamedValue{
468 want: []driver.NamedValue{
469 driver.NamedValue{
477 want: []driver.NamedValue{
    [all...]
convert.go 22 func describeNamedValue(nv *driver.NamedValue) string {
48 func (c ccChecker) CheckNamedValue(nv *driver.NamedValue) error {
96 func defaultCheckNamedValue(nv *driver.NamedValue) (err error) {
105 func driverArgsConnLocked(ci driver.Conn, ds *driverStmt, args []interface{}) ([]driver.NamedValue, error) {
106 nvargs := make([]driver.NamedValue, len(args))
fakedb_test.go 434 func checkSubsetTypes(allowAny bool, args []driver.NamedValue) error {
452 func (c *fakeConn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {
469 func (c *fakeConn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {
720 func (s *fakeStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) {
775 func (s *fakeStmt) execInsert(args []driver.NamedValue, doInsert bool) (driver.Result, error) {
835 func (s *fakeStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) {
  /external/deqp/executor/tools/
xeTestLogCompare.cpp 79 using de::cmdline::NamedValue;
81 static const NamedValue<OutputMode> s_outputModes[] =
86 static const NamedValue<OutputFormat> s_outputFormats[] =
91 static const NamedValue<OutputValue> s_outputValues[] =
xeBatchResultToXml.cpp 63 using de::cmdline::NamedValue;
65 static const NamedValue<OutputMode> s_modes[] =
xeCommandLineExecutor.cpp 90 using de::cmdline::NamedValue;
92 static const NamedValue<bool> s_yesNo[] =
  /hardware/google/interfaces/media/c2/1.0/
types.hal 293 struct NamedValue {
298 vec<NamedValue> namedValues;
  /prebuilts/go/darwin-x86/src/database/sql/driver/
driver.go 29 // NamedValue holds both the value name and value.
30 type NamedValue struct {
157 ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
184 QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
313 ExecContext(ctx context.Context, args []NamedValue) (Result, error)
322 QueryContext(ctx context.Context, args []NamedValue) (Rows, error)
339 // If CheckNamedValue returns ErrRemoveArgument, the NamedValue will not be included in
350 CheckNamedValue(*NamedValue) error
  /prebuilts/go/linux-x86/src/database/sql/driver/
driver.go 29 // NamedValue holds both the value name and value.
30 type NamedValue struct {
157 ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
184 QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
313 ExecContext(ctx context.Context, args []NamedValue) (Result, error)
322 QueryContext(ctx context.Context, args []NamedValue) (Rows, error)
339 // If CheckNamedValue returns ErrRemoveArgument, the NamedValue will not be included in
350 CheckNamedValue(*NamedValue) error
  /external/deqp/framework/common/
tcuCommandLine.cpp 109 using de::cmdline::NamedValue;
111 static const NamedValue<bool> s_enableNames[] =
116 static const NamedValue<tcu::RunMode> s_runModes[] =
123 static const NamedValue<WindowVisibility> s_visibilites[] =
129 static const NamedValue<tcu::SurfaceType> s_surfaceTypes[] =
136 static const NamedValue<tcu::ScreenRotation> s_screenRotations[] =
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 224 class NamedValue(object):
243 class ConstantValue(NamedValue):
245 NamedValue.__init__(self, module, parent_kind, constant.name)
249 class EnumValue(NamedValue):
251 NamedValue.__init__(self, module, enum.parent_kind, field.name)
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 298 if (const VariantValue NamedValue =
301 *Value = NamedValue;
  /external/deqp/external/vulkancts/modules/vulkan/
vktBuildPrograms.cpp 542 using de::cmdline::NamedValue;
544 static const NamedValue<deUint32> s_vulkanVersion[] =
  /external/libmojo/mojo/public/tools/bindings/generators/
mojom_java_generator.py 136 if isinstance(element, (mojom.NamedValue,
321 if isinstance(token, mojom.NamedValue):
mojom_js_generator.py 260 if isinstance(token, (mojom.EnumValue, mojom.NamedValue)):
mojom_cpp_generator.py 442 if isinstance(token, mojom.NamedValue):
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
debug.go 219 // This slot wasn't in the NamedValue table so it needs to be added.

Completed in 246 milliseconds

1 2