HomeSort by relevance Sort by last modified time
    Searched refs:elem (Results 326 - 350 of 837) sorted by null

<<11121314151617181920>>

  /external/skqp/src/compute/skc/
extent_ring.h 59 skc_uint elem; // size of element in bytes member in struct:skc_extent_ring::__anon38766
  /external/webrtc/webrtc/libjingle/xmpp/
pubsubtasks.h 27 const XmlElement* elem; member in struct:buzz::PubSubItem
  /external/grpc-grpc/test/core/transport/
metadata_test.cc 294 grpc_mdelem elem = grpc_mdelem_from_slices( local
297 size_t elem_size = grpc_chttp2_get_size_in_hpack_table(elem, false);
300 GRPC_MDELEM_UNREF(elem);
306 grpc_mdelem elem = grpc_mdelem_from_slices( local
310 GPR_ASSERT(grpc_is_binary_header(GRPC_MDKEY(elem)));
311 size_t elem_size = grpc_chttp2_get_size_in_hpack_table(elem, false);
319 GRPC_MDELEM_UNREF(elem);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTemplateElement.java 262 ElemTemplateElement elem = (ElemTemplateElement) newChild; local
266 m_firstChild = elem;
272 last.m_nextSibling = elem;
275 elem.m_parentNode = this;
288 * @param elem Child to be added to child list
292 public ElemTemplateElement appendChild(ElemTemplateElement elem)
295 if (null == elem)
302 m_firstChild = elem;
308 last.m_nextSibling = elem;
311 elem.setParentElem(this)
    [all...]
  /external/grpc-grpc/src/core/lib/surface/
channel.cc 279 grpc_channel_element* elem = local
281 elem->filter->get_channel_info(elem, channel_info);
290 grpc_channel_element* elem = local
292 elem->filter->start_transport_op(elem, op);
452 grpc_channel_element* elem; local
457 elem = grpc_channel_stack_element(CHANNEL_STACK_FROM_CHANNEL(channel), 0);
458 elem->filter->start_transport_op(elem, op)
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
repeated_field.c 72 VALUE elem = native_slot_get(field_type, field_type_class, mem); local
73 rb_ary_push(ary, elem);
174 void* elem = RepeatedField_memoryat(self, i, element_size); local
175 native_slot_init(field_type, elem);
382 VALUE elem = native_slot_get(field_type, self->field_type_class, mem); local
383 rb_ary_push(ary, elem);
454 VALUE elem = native_slot_get(field_type, field_type_class, mem); local
457 rb_funcall(elem, rb_intern("hash"), 0));
476 VALUE elem = rb_ary_entry(list, i); local
477 RepeatedField_push(dupped, elem);
    [all...]
  /external/grpc-grpc/test/core/end2end/tests/
filter_latency.cc 250 static grpc_error* init_call_elem(grpc_call_element* elem,
255 static void client_destroy_call_elem(grpc_call_element* elem,
263 static void server_destroy_call_elem(grpc_call_element* elem,
271 static grpc_error* init_channel_elem(grpc_channel_element* elem,
276 static void destroy_channel_elem(grpc_channel_element* elem) {}
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_const.c 304 LLVMValueRef elem; local
307 elem = LLVMConstInt(elem_type, util_float_to_half((float)val), 0);
309 elem = LLVMConstReal(elem_type, val);
314 elem = LLVMConstInt(elem_type, (long long) round(val*dscale), 0);
317 return elem;
  /external/libxml2/
tree.c     [all...]
  /external/grpc-grpc/src/php/ext/grpc/
call.c 70 grpc_metadata *elem; local
72 elem = &elements[i];
73 key_len = GRPC_SLICE_LENGTH(elem->key);
75 memcpy(str_key, GRPC_SLICE_START_PTR(elem->key), key_len);
76 str_val = ecalloc(GRPC_SLICE_LENGTH(elem->value) + 1, sizeof(char));
77 memcpy(str_val, GRPC_SLICE_START_PTR(elem->value),
78 GRPC_SLICE_LENGTH(elem->value));
91 GRPC_SLICE_LENGTH(elem->value),
97 GRPC_SLICE_LENGTH(elem->value), false);
  /external/tensorflow/tensorflow/python/data/kernel_tests/
from_generator_test.py 114 for elem in input_list:
116 self.assertAllEqual(elem[0], val0)
117 self.assertAllEqual(elem[1], val1)
166 for elem in [0, 1]:
168 self.assertAllEqual(elem, self.evaluate(get_next()))
318 def flat_map_fn(elem):
326 args=(elem,))
334 def flat_map_fn(elem, message):
342 output_shapes=((), ()), args=(elem, message))
  /frameworks/av/media/libstagefright/
Utils.cpp 721 for (auto elem : stringMappings) {
723 if (msg->findString(elem.first, &value)) {
724 meta->setCString(elem.second, value.c_str());
728 for (auto elem : floatMappings) {
730 if (msg->findFloat(elem.first, &value)) {
731 meta->setFloat(elem.second, value);
735 for (auto elem : int64Mappings) {
737 if (msg->findInt64(elem.first, &value)) {
738 meta->setInt64(elem.second, value);
742 for (auto elem : int32Mappings)
    [all...]
  /build/blueprint/bootstrap/bpdoc/
bpdoc.go 119 v := reflect.ValueOf(s).Elem()
188 elem := fieldValue.Elem()
190 if elem.Kind() != reflect.Ptr {
194 elem = elem.Elem()
196 if elem.Kind() == reflect.Struct {
198 ret[nestPoint] = elem
199 walk(elem, nestPoint+"."
    [all...]
  /external/guava/guava/src/com/google/common/collect/
TreeMultiset.java 177 int cmp = comparator().compare(range.getLowerEndpoint(), node.elem);
199 int cmp = comparator().compare(range.getUpperEndpoint(), node.elem);
520 @Nullable private final E elem;
533 AvlNode(@Nullable E elem, int elemCount) {
535 this.elem = elem;
545 int cmp = comparator.compare(e, elem);
578 int cmp = comparator.compare(e, elem);
619 int cmp = comparator.compare(e, elem);
670 int cmp = comparator.compare(e, elem);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java 173 int cmp = comparator().compare(range.getLowerEndpoint(), node.elem);
195 int cmp = comparator().compare(range.getUpperEndpoint(), node.elem);
516 @Nullable private final E elem;
529 AvlNode(@Nullable E elem, int elemCount) {
531 this.elem = elem;
541 int cmp = comparator.compare(e, elem);
574 int cmp = comparator.compare(e, elem);
615 int cmp = comparator.compare(e, elem);
666 int cmp = comparator.compare(e, elem);
    [all...]
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
compat.c 632 const char *elem, *field; local
636 if (!ExprResolveLhs(info->ctx, stmt->name, &elem, &field, &ndx))
638 else if (elem && istreq(elem, "interpret"))
641 else if (elem && istreq(elem, "indicator"))
646 elem, field, ndx, stmt->value);
654 const char *elem, *field; local
666 ok = ExprResolveLhs(info->ctx, def->name, &elem, &field, &arrayNdx);
725 const char *elem, *field local
    [all...]
  /art/test/906-iterate-heap/src/art/
Test906.java 300 HeapElem elem = new HeapElem(); local
301 elem.classTag = classTags[i];
302 elem.size = sizes[i];
303 elem.tag = tags[i];
304 elem.length = lengths[i];
305 ret.add(elem);
  /external/antlr/tool/src/main/resources/org/antlr/codegen/templates/C/
ASTParser.stg 74 <listLabel(elem=label,...)>
81 <listLabel(elem=label,...)>
88 <listLabel(elem=label,...)>
  /external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Java/
ASTParser.stg 76 <listLabel(elem=label, ...)>
82 <listLabel(elem=label, ...)>
88 <listLabel(elem=label, ...)>
  /external/google-breakpad/src/testing/gtest/test/
gtest_filter_unittest.py 233 for elem in lhs:
234 self.assert_(elem in rhs, '%s in %s' % (elem, rhs))
236 for elem in rhs:
237 self.assert_(elem in lhs, '%s in %s' % (elem, lhs))
  /external/googletest/googletest/test/
googletest-filter-unittest.py 238 for elem in lhs:
239 self.assert_(elem in rhs, '%s in %s' % (elem, rhs))
241 for elem in rhs:
242 self.assert_(elem in lhs, '%s in %s' % (elem, lhs))
  /external/icu/icu4c/source/common/
uvector.cpp 133 void UVector::addElement(int32_t elem, UErrorCode &status) {
136 elements[count].integer = elem;
151 void UVector::setElementAt(int32_t elem, int32_t index) {
158 elements[index].integer = elem;
175 void UVector::insertElementAt(int32_t elem, int32_t index, UErrorCode &status) {
182 elements[index].integer = elem;
  /external/pdfium/fxjs/xfa/
cjx_object.cpp 343 CFX_XMLElement* elem = SetValue(eAttr, XFA_AttributeType::Boolean, local
345 if (elem)
346 elem->SetString(CXFA_Node::AttributeToName(eAttr), bValue ? L"1" : L"0");
355 CFX_XMLElement* elem = SetValue(eAttr, XFA_AttributeType::Integer, local
357 if (elem) {
358 elem->SetString(CXFA_Node::AttributeToName(eAttr),
397 CFX_XMLElement* elem = SetValue(eAttr, XFA_AttributeType::Enum, local
399 if (elem) {
400 elem->SetString(CXFA_Node::AttributeToName(eAttr),
478 auto* elem = static_cast<CFX_XMLElement*>(xfaObj->GetXMLMappingNode()) local
    [all...]
  /external/tensorflow/tensorflow/python/platform/
base.i 86 T elem;
87 bool success = convert(item, &elem);
93 if (out) out->push_back(elem);
  /external/v8/src/ast/
modules.cc 267 for (const auto& elem : regular_imports_) {
268 Entry* entry = elem.second;
304 for (const auto& elem : regular_exports_) {
305 duplicate = BetterDuplicate(elem.second, export_names, duplicate);
332 for (const auto& elem : regular_exports_) {
333 const Entry* entry = elem.second;

Completed in 754 milliseconds

<<11121314151617181920>>