/external/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectsource.cc | 148 ObjectWriter* ow) const { in NamedWriteTo() 149 return WriteMessage(type_, name, 0, true, ow); in NamedWriteTo() 176 ObjectWriter* ow) const { in WriteMessage() 180 return (*type_renderer)(this, type, name, ow); in WriteMessage() 189 ow->StartObject(name); in WriteMessage() 212 ow->StartObject(field_name); in WriteMessage() 213 ASSIGN_OR_RETURN(tag, RenderMap(field, field_name, tag, ow)); in WriteMessage() 214 ow->EndObject(); in WriteMessage() 216 ASSIGN_OR_RETURN(tag, RenderList(field, field_name, tag, ow)); in WriteMessage() 220 RETURN_IF_ERROR(RenderField(field, field_name, ow)); in WriteMessage() [all …]
|
D | protostream_objectsource.h | 83 virtual util::Status NamedWriteTo(StringPiece name, ObjectWriter* ow) const; 129 ObjectWriter* ow) const; 152 ObjectWriter* ow) const; 158 ObjectWriter* ow) const; 164 ObjectWriter* ow) const; 169 StringPiece name, ObjectWriter* ow); 174 StringPiece name, ObjectWriter* ow); 180 StringPiece name, ObjectWriter* ow); 183 StringPiece name, ObjectWriter* ow); 186 StringPiece name, ObjectWriter* ow); [all …]
|
D | object_writer.cc | 42 ObjectWriter* ow) { in RenderDataPieceTo() argument 45 ow->RenderInt32(name, data.ToInt32().ValueOrDie()); in RenderDataPieceTo() 49 ow->RenderInt64(name, data.ToInt64().ValueOrDie()); in RenderDataPieceTo() 53 ow->RenderUint32(name, data.ToUint32().ValueOrDie()); in RenderDataPieceTo() 57 ow->RenderUint64(name, data.ToUint64().ValueOrDie()); in RenderDataPieceTo() 61 ow->RenderDouble(name, data.ToDouble().ValueOrDie()); in RenderDataPieceTo() 65 ow->RenderFloat(name, data.ToFloat().ValueOrDie()); in RenderDataPieceTo() 69 ow->RenderBool(name, data.ToBool().ValueOrDie()); in RenderDataPieceTo() 73 ow->RenderString(name, data.ToString().ValueOrDie()); in RenderDataPieceTo() 77 ow->RenderBytes(name, data.ToBytes().ValueOrDie()); in RenderDataPieceTo() [all …]
|
D | default_value_objectwriter.cc | 61 ObjectWriter* ow) in DefaultValueObjectWriter() argument 68 ow_(ow) {} in DefaultValueObjectWriter() 216 void DefaultValueObjectWriter::Node::WriteTo(ObjectWriter* ow) { in WriteTo() argument 218 ObjectWriter::RenderDataPieceTo(data_, name_, ow); in WriteTo() 224 ow->StartObject(name_); in WriteTo() 225 WriteChildren(ow); in WriteTo() 226 ow->EndObject(); in WriteTo() 233 ow->StartList(name_); in WriteTo() 234 WriteChildren(ow); in WriteTo() 235 ow->EndList(); in WriteTo() [all …]
|
D | protostream_objectwriter.cc | 799 Status ProtoStreamObjectWriter::RenderStructValue(ProtoStreamObjectWriter* ow, in RenderStructValue() argument 807 if (ow->options_.struct_integers_as_strings) { in RenderStructValue() 810 ow->ProtoWriter::RenderDataPiece( in RenderStructValue() 822 if (ow->options_.struct_integers_as_strings) { in RenderStructValue() 825 ow->ProtoWriter::RenderDataPiece( in RenderStructValue() 856 ow->ProtoWriter::RenderDataPiece(struct_field_name, data); in RenderStructValue() 860 Status ProtoStreamObjectWriter::RenderTimestamp(ProtoStreamObjectWriter* ow, in RenderTimestamp() argument 878 ow->ProtoWriter::RenderDataPiece("seconds", DataPiece(seconds)); in RenderTimestamp() 879 ow->ProtoWriter::RenderDataPiece("nanos", DataPiece(nanos)); in RenderTimestamp() 883 static inline util::Status RenderOneFieldPath(ProtoStreamObjectWriter* ow, in RenderOneFieldPath() argument [all …]
|
D | object_source.h | 56 virtual util::Status WriteTo(ObjectWriter* ow) const { in WriteTo() argument 57 return NamedWriteTo("", ow); in WriteTo() 64 ObjectWriter* ow) const = 0;
|
D | protostream_objectwriter.h | 268 static util::Status RenderStructValue(ProtoStreamObjectWriter* ow, 272 static util::Status RenderTimestamp(ProtoStreamObjectWriter* ow, 276 static util::Status RenderFieldMask(ProtoStreamObjectWriter* ow, 280 static util::Status RenderDuration(ProtoStreamObjectWriter* ow, 285 static util::Status RenderWrapperType(ProtoStreamObjectWriter* ow,
|
D | default_value_objectwriter.h | 84 ObjectWriter* ow); 160 void WriteTo(ObjectWriter* ow); 192 void WriteChildren(ObjectWriter* ow);
|
D | object_writer.h | 106 ObjectWriter* ow);
|
D | json_stream_parser.h | 75 explicit JsonStreamParser(ObjectWriter* ow);
|
/external/webrtc/talk/session/media/ |
D | yuvscaler_unittest.cc | 98 bool TestScale(int iw, int ih, int ow, int oh, int offset, bool usefile, in TestScale() argument 103 size_t osize = I420_SIZE(ow, oh); in TestScale() 117 !LoadPlanarYuvTestImage("faces", ow, oh, xbuf)) { in TestScale() 149 EXPECT_EQ(0, libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh, in TestScale() 165 DumpPlanarYuvTestImage(test_name, obuf, ow, oh); in TestScale() 194 const int ow = 640, oh = 360; in TEST_F() local 196 ALIGN16(uint8_t obuf[I420_SIZE(ow, oh)]); in TEST_F() 201 libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh, 0, false); in TEST_F() 203 if (dump_) DumpPlanarYuvTestImage("TestCopy", obuf, ow, oh); in TEST_F() 210 const int ow = 640, oh = 480; in TEST_F() local [all …]
|
/external/mesa3d/src/mesa/math/ |
D | m_xform_tmp.h | 593 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; in TAG() local 594 to[i][0] = m0 * ox + m4 * oy + m8 * oz + m12 * ow; in TAG() 595 to[i][1] = m1 * ox + m5 * oy + m9 * oz + m13 * ow; in TAG() 596 to[i][2] = m2 * ox + m6 * oy + m10 * oz + m14 * ow; in TAG() 597 to[i][3] = m3 * ox + m7 * oy + m11 * oz + m15 * ow; in TAG() 640 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; in TAG() local 641 to[i][0] = m0 * ox + m4 * oy + m12 * ow; in TAG() 642 to[i][1] = m1 * ox + m5 * oy + m13 * ow; in TAG() 644 to[i][3] = ow; in TAG() 663 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; in TAG() local [all …]
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | spacetodepth_op_test.py | 242 ow, oh, oc = iw // block_size, ih // block_size, ic * block_size_sq 244 [b, oh, block_size, ow, block_size, ic]) 246 tensor = array_ops.reshape(tensor, [b, oh, ow, oc]) 251 ow, oh, oc = iw // block_size, ih // block_size, ic * block_size_sq 253 [b, ic, oh, block_size, ow, block_size]) 255 tensor = array_ops.reshape(tensor, [b, oc, oh, ow])
|
D | depthtospace_op_test.py | 254 ow, oh, oc = iw * block_size, ih * block_size, ic // block_size_sq 258 tensor = array_ops.reshape(tensor, [b, oh, ow, oc]) 262 ow, oh, oc = iw * block_size, ih * block_size, ic // block_size_sq 266 tensor = array_ops.reshape(tensor, [b, oc, oh, ow])
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/ |
D | ja-t-ro-fonipa.txt | 97 ow オウ 98 owɨnd オウンド
|
D | ro-fonipa-t-ro.txt | 98 ou ow 99 ouând owɨnd
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_matchIpaRules.txt | 98 ow ɑʊ 99 ow ɑu ɑʊ
|
D | internal_baseEnglishToIpa.txt | 177 ow } $nletter > o ; # slow 178 ow > ɑʊ ;
|
/external/lua/src/ |
D | lgc.h | 95 #define isdeadm(ow,m) (!(((m) ^ WHITEBITS) & (ow))) argument
|
/external/icu/icu4c/source/data/locales/ |
D | lkt.txt | 85 other{"Letáŋhaŋ owápȟe {0} kiŋháŋ"} 88 other{"Hékta owápȟe {0} kʼuŋ héhaŋ"}
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ProfileInfo.cpp | 816 double ow = getExecutionCount(Dest); in repair() local 824 ow -= ew; in repair() 828 if (ow < 0) continue; in repair() 833 ew = ew<ow?ew:ow; in repair()
|
/external/ImageMagick/PerlMagick/t/reference/composite/ |
D | Plus.miff | 15 …m�l|�e��g��w��}��t��s��p��mzylsvloxlozlpxnpxmqynrzos|sr|qpwlltmm{f~�l~�sq�ow�q�xkyh7777777777777…
|
/external/icu/icu4c/source/data/translit/ |
D | ro_ro_FONIPA.txt | 61 ou → ow ;
|
/external/python/setuptools/docs/_theme/nature/static/ |
D | pygments.css | 34 .ow { font-weight: bold } /* Operator.Word */
|
/external/python/httplib2/doc/html/_static/ |
D | pygments.css | 40 .ow { color: #007020; font-weight: bold } /* Operator.Word */
|