HomeSort by relevance Sort by last modified time
    Searched refs:field_name (Results 26 - 50 of 87) sorted by null

12 3 4

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
svn.py 81 def value_from_svn_info(cls, path, field_name):
85 match = re.search("^%s: (?P<value>.+)$" % field_name, info_output, re.MULTILINE)
87 raise ScriptError(script_args=svn_info_args, message='svn info did not contain a %s.' % field_name)
  /external/protobuf/python/google/protobuf/
reflection.py 369 for field_name, field_value in kwargs.iteritems():
370 field = _GetFieldByName(message_descriptor, field_name)
373 (message_descriptor.name, field_name))
394 def _GetFieldByName(message_descriptor, field_name):
399 field_name: The name of the field to retrieve.
404 return message_descriptor.fields_by_name[field_name]
406 raise ValueError('Protocol message has no "%s" field.' % field_name)
643 def HasField(self, field_name):
645 field = singular_fields[field_name]
648 'Protocol message has no singular "%s" field.' % field_name)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 557 for literal_text, field_name, format_spec, conversion in \
565 if field_name is not None:
569 # given the field_name, find the object it references
571 obj, arg_used = self.get_field(field_name, args, kwargs)
614 # (literal_text, field_name, format_spec, conversion)
616 # field_name can be None, in which case there's no
618 # if field_name is not None, it is looked up, formatted
624 # given a field_name, find the object it references.
625 # field_name: the field being looked up, e.g. "0.name"
629 def get_field(self, field_name, args, kwargs)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 557 for literal_text, field_name, format_spec, conversion in \
565 if field_name is not None:
569 # given the field_name, find the object it references
571 obj, arg_used = self.get_field(field_name, args, kwargs)
614 # (literal_text, field_name, format_spec, conversion)
616 # field_name can be None, in which case there's no
618 # if field_name is not None, it is looked up, formatted
624 # given a field_name, find the object it references.
625 # field_name: the field being looked up, e.g. "0.name"
629 def get_field(self, field_name, args, kwargs)
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/scripting-engines/
trace-event-python.c 72 const char *field_name,
91 PyTuple_SetItem(t, n++, PyString_FromString(field_name));
108 const char *field_name)
110 define_value(field_type, ev_name, field_name, field->value,
114 define_values(field_type, field->next, ev_name, field_name);
119 const char *field_name,
137 PyTuple_SetItem(t, n++, PyString_FromString(field_name));
  /external/flac/libFLAC/
metadata_object.c 295 static int vorbiscomment_find_entry_from_(const FLAC__StreamMetadata *object, unsigned offset, const char *field_name, unsigned field_name_length)
301 FLAC__ASSERT(0 != field_name);
304 if(FLAC__metadata_object_vorbiscomment_entry_matches(object->data.vorbis_comment.comments[i], field_name, field_name_length))
    [all...]
  /external/chromium_org/base/android/linker/
linker_jni.cc 99 // with name |field_name| and signature |field_sig|.
104 const char* field_name,
107 *field_id = env->GetFieldID(clazz, field_name, field_sig);
109 LOG_ERROR("Could not find ID for field '%s'", field_name);
113 "%s: Found ID %p for field '%s'", __FUNCTION__, *field_id, field_name);
  /external/chromium_org/chrome/browser/history/
shortcuts_database.cc 49 bool DeleteShortcut(const char* field_name,
54 field_name).c_str()));
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
tasn_new.c 283 if (tt->field_name)
284 CRYPTO_push_info(tt->field_name);
  /external/clang/docs/tools/
dump_format_style.py 101 field_type, field_name = re.match(r'([<>:\w]+)\s+(\w+);', line).groups()
102 option = Option(str(field_name), str(field_type), comment)
  /external/openssl/crypto/asn1/
tasn_new.c 283 if (tt->field_name)
284 CRYPTO_push_info(tt->field_name);
  /external/protobuf/python/google/protobuf/internal/
generator_test.py 57 field_name = 'optional_nested_message'
61 proto_type.DESCRIPTOR.fields_by_name[field_name].message_type)
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 163 string field_name = UnderscoresToCamelCase(field->name(), true); local
164 string result = "k" + field_name + "FieldNumber";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_string.py 163 # (literal_text, field_name, format_spec, conversion)
168 field_name, _, format_spec = field[1:].partition(':')
169 yield '', field_name, format_spec, None
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_string.py 163 # (literal_text, field_name, format_spec, conversion)
168 field_name, _, format_spec = field[1:].partition(':')
169 yield '', field_name, format_spec, None
  /art/test/004-JniTest/
jni_test.cc 109 jstring field_name = env->NewStringUTF("testReflectFieldGetFromAttachedNativeThreadField"); local
110 assert(field_name != nullptr);
113 jobject field = env->CallObjectMethod(clazz, getFieldMetodId, field_name);
  /external/chromium_org/chromeos/network/onc/
onc_merger.cc 27 const std::string& field_name) {
29 return field_name == ::onc::network_config::kGUID;
31 return field_name == ::onc::certificate::kGUID;
onc_utils.cc 260 const std::string& field_name,
265 if (FieldIsCredential(object_signature, field_name)) {
268 return Mapper::MapField(field_name, object_signature, onc_value,
  /external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
python-proto2.cc 1019 char* field_name; local
1093 char* field_name; local
1546 PyObject* field_name; local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/timeline/
trace_event_importer.py 55 for field_name in container:
56 if field_name == 'traceEvents':
61 'name' : field_name,
62 'value' : container[field_name]})
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser_unittest.cc     [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
generator_test.py 60 field_name = 'optional_nested_message'
64 proto_type.DESCRIPTOR.fields_by_name[field_name].message_type)
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 179 string field_name = UnderscoresToCamelCase(field->name(), true); local
180 string result = "k" + field_name + "FieldNumber";
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 1105 string field_name; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpas_glue.c 704 const char *field_name, *txt = NULL; local
714 field_name = wpa_supplicant_ctrl_req_to_string(field, default_txt,
716 if (field_name == NULL) {
722 wpas_notify_eap_status(wpa_s, "eap parameter needed", field_name);
730 field_name, ssid->id, txt);

Completed in 691 milliseconds

12 3 4