Searched refs:from (Results 401 - 425 of 3600) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFontImpl.cpp15 * contributors may be used to endorse or promote products derived from
90 int from, int to) const
96 runInfo.from = from;
121 WebFloatRect WebFontImpl::selectionRectForText(const WebTextRun& run, const WebFloatPoint& leftBaseline, int height, int from, int to) const argument
124 return m_font.selectionRectForText(run, leftBaseline, height, from, to);
88 drawText(WebCanvas* canvas, const WebTextRun& run, const WebFloatPoint& leftBaseline, WebColor color, const WebRect& clip, bool canvasIsOpaque, int from, int to) const argument
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_copy_tmp.h35 GLfloat *from = f->start; \
42 if (BITS&1) t[i][0] = from[0]; \
43 if (BITS&2) t[i][1] = from[1]; \
44 if (BITS&4) t[i][2] = from[2]; \
45 if (BITS&8) t[i][3] = from[3]; \
/external/mesa3d/src/mesa/math/
H A Dm_copy_tmp.h35 GLfloat *from = f->start; \
42 if (BITS&1) t[i][0] = from[0]; \
43 if (BITS&2) t[i][1] = from[1]; \
44 if (BITS&4) t[i][2] = from[2]; \
45 if (BITS&8) t[i][3] = from[3]; \
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dplugin.pb.cc179 CodeGeneratorRequest::CodeGeneratorRequest(const CodeGeneratorRequest& from) argument
182 MergeFrom(from);
416 void CodeGeneratorRequest::MergeFrom(const ::google::protobuf::Message& from) { argument
417 GOOGLE_CHECK_NE(&from, this);
420 &from);
422 ::google::protobuf::internal::ReflectionOps::Merge(from, this);
428 void CodeGeneratorRequest::MergeFrom(const CodeGeneratorRequest& from) { argument
429 GOOGLE_CHECK_NE(&from, this);
430 file_to_generate_.MergeFrom(from.file_to_generate_);
431 proto_file_.MergeFrom(from
440 CopyFrom(const ::google::protobuf::Message& from) argument
446 CopyFrom(const CodeGeneratorRequest& from) argument
496 CodeGeneratorResponse_File(const CodeGeneratorResponse_File& from) argument
754 MergeFrom(const ::google::protobuf::Message& from) argument
766 MergeFrom(const CodeGeneratorResponse_File& from) argument
782 CopyFrom(const ::google::protobuf::Message& from) argument
788 CopyFrom(const CodeGeneratorResponse_File& from) argument
834 CodeGeneratorResponse(const CodeGeneratorResponse& from) argument
1025 MergeFrom(const ::google::protobuf::Message& from) argument
1037 MergeFrom(const CodeGeneratorResponse& from) argument
1048 CopyFrom(const ::google::protobuf::Message& from) argument
1054 CopyFrom(const CodeGeneratorResponse& from) argument
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dplugin.pb.cc173 CodeGeneratorRequest::CodeGeneratorRequest(const CodeGeneratorRequest& from) argument
176 MergeFrom(from);
408 void CodeGeneratorRequest::MergeFrom(const ::google::protobuf::Message& from) { argument
409 GOOGLE_CHECK_NE(&from, this);
412 &from);
414 ::google::protobuf::internal::ReflectionOps::Merge(from, this);
420 void CodeGeneratorRequest::MergeFrom(const CodeGeneratorRequest& from) { argument
421 GOOGLE_CHECK_NE(&from, this);
422 file_to_generate_.MergeFrom(from.file_to_generate_);
423 proto_file_.MergeFrom(from
432 CopyFrom(const ::google::protobuf::Message& from) argument
438 CopyFrom(const CodeGeneratorRequest& from) argument
491 CodeGeneratorResponse_File(const CodeGeneratorResponse_File& from) argument
748 MergeFrom(const ::google::protobuf::Message& from) argument
760 MergeFrom(const CodeGeneratorResponse_File& from) argument
776 CopyFrom(const ::google::protobuf::Message& from) argument
782 CopyFrom(const CodeGeneratorResponse_File& from) argument
829 CodeGeneratorResponse(const CodeGeneratorResponse& from) argument
1019 MergeFrom(const ::google::protobuf::Message& from) argument
1031 MergeFrom(const CodeGeneratorResponse& from) argument
1042 CopyFrom(const ::google::protobuf::Message& from) argument
1048 CopyFrom(const CodeGeneratorResponse& from) argument
[all...]
/external/chromium_org/third_party/libxml/src/
H A DtestAutomata.c80 int from, to; local
82 from = scanNumber(&ptr);
88 if (states[from] == NULL)
89 states[from] = xmlAutomataNewState(am);
100 xmlAutomataNewTransition(am, states[from], states[to],
104 int from, to; local
106 from = scanNumber(&ptr);
112 if (states[from] == NULL)
113 states[from] = xmlAutomataNewState(am);
118 xmlAutomataNewEpsilon(am, states[from], state
132 int from, to; local
[all...]
/external/eigen/unsupported/Eigen/src/BVH/
H A DKdBVH.h30 //these templates help the tree initializer get the bounding boxes either from a provided
180 //Build the part of the tree between objects[from] and objects[to] (not including objects[to]).
181 //This routine partitions the objCenters in [from, to) along the dimension dim, recursively constructs
183 void build(VIPairList &objCenters, int from, int to, const VolumeList &objBoxes, int dim) argument
185 eigen_assert(to - from > 1);
186 if(to - from == 2) {
187 boxes.push_back(objBoxes[objCenters[from].second].merged(objBoxes[objCenters[from + 1].second]));
188 children.push_back(from + (int)objects.size() - 1); //there are objects.size() - 1 tree nodes
189 children.push_back(from
[all...]
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dbreakpoint.c22 /* IA64 breakpoint support. Much of this clagged from gdb
34 extract_bit_field(char *bundle, int from, int len) { argument
36 int to = from + len;
37 int from_byte = from / 8;
47 result = c >> (from % 8);
48 lshift = 8 - (from % 8);
66 replace_bit_field(char *bundle, long long val, int from, int len) { argument
67 int to = from + len;
68 int from_byte = from / 8;
78 ((unsigned char)(c << (8 - from
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor.pb.cc663 FileDescriptorSet::FileDescriptorSet(const FileDescriptorSet& from) argument
666 MergeFrom(from);
798 void FileDescriptorSet::MergeFrom(const ::google::protobuf::Message& from) { argument
799 GOOGLE_CHECK_NE(&from, this);
802 &from);
804 ::google::protobuf::internal::ReflectionOps::Merge(from, this);
810 void FileDescriptorSet::MergeFrom(const FileDescriptorSet& from) { argument
811 GOOGLE_CHECK_NE(&from, this);
812 file_.MergeFrom(from.file_);
813 mutable_unknown_fields()->MergeFrom(from
816 CopyFrom(const ::google::protobuf::Message& from) argument
822 CopyFrom(const FileDescriptorSet& from) argument
878 FileDescriptorProto(const FileDescriptorProto& from) argument
1314 MergeFrom(const ::google::protobuf::Message& from) argument
1326 MergeFrom(const FileDescriptorProto& from) argument
1347 CopyFrom(const ::google::protobuf::Message& from) argument
1353 CopyFrom(const FileDescriptorProto& from) argument
1419 DescriptorProto_ExtensionRange(const DescriptorProto_ExtensionRange& from) argument
1590 MergeFrom(const ::google::protobuf::Message& from) argument
1602 MergeFrom(const DescriptorProto_ExtensionRange& from) argument
1615 CopyFrom(const ::google::protobuf::Message& from) argument
1621 CopyFrom(const DescriptorProto_ExtensionRange& from) argument
1673 DescriptorProto(const DescriptorProto& from) argument
2050 MergeFrom(const ::google::protobuf::Message& from) argument
2062 MergeFrom(const DescriptorProto& from) argument
2080 CopyFrom(const ::google::protobuf::Message& from) argument
2086 CopyFrom(const DescriptorProto& from) argument
2238 FieldDescriptorProto(const FieldDescriptorProto& from) argument
2703 MergeFrom(const ::google::protobuf::Message& from) argument
2715 MergeFrom(const FieldDescriptorProto& from) argument
2746 CopyFrom(const ::google::protobuf::Message& from) argument
2752 CopyFrom(const FieldDescriptorProto& from) argument
2809 EnumDescriptorProto(const EnumDescriptorProto& from) argument
3038 MergeFrom(const ::google::protobuf::Message& from) argument
3050 MergeFrom(const EnumDescriptorProto& from) argument
3064 CopyFrom(const ::google::protobuf::Message& from) argument
3070 CopyFrom(const EnumDescriptorProto& from) argument
3125 EnumValueDescriptorProto(const EnumValueDescriptorProto& from) argument
3352 MergeFrom(const ::google::protobuf::Message& from) argument
3364 MergeFrom(const EnumValueDescriptorProto& from) argument
3380 CopyFrom(const ::google::protobuf::Message& from) argument
3386 CopyFrom(const EnumValueDescriptorProto& from) argument
3438 ServiceDescriptorProto(const ServiceDescriptorProto& from) argument
3667 MergeFrom(const ::google::protobuf::Message& from) argument
3679 MergeFrom(const ServiceDescriptorProto& from) argument
3693 CopyFrom(const ::google::protobuf::Message& from) argument
3699 CopyFrom(const ServiceDescriptorProto& from) argument
3757 MethodDescriptorProto(const MethodDescriptorProto& from) argument
4053 MergeFrom(const ::google::protobuf::Message& from) argument
4065 MergeFrom(const MethodDescriptorProto& from) argument
4084 CopyFrom(const ::google::protobuf::Message& from) argument
4090 CopyFrom(const MethodDescriptorProto& from) argument
4171 FileOptions(const FileOptions& from) argument
4602 MergeFrom(const ::google::protobuf::Message& from) argument
4614 MergeFrom(const FileOptions& from) argument
4644 CopyFrom(const ::google::protobuf::Message& from) argument
4650 CopyFrom(const FileOptions& from) argument
4707 MessageOptions(const MessageOptions& from) argument
4927 MergeFrom(const ::google::protobuf::Message& from) argument
4939 MergeFrom(const MessageOptions& from) argument
4954 CopyFrom(const ::google::protobuf::Message& from) argument
4960 CopyFrom(const MessageOptions& from) argument
5038 FieldOptions(const FieldOptions& from) argument
5351 MergeFrom(const ::google::protobuf::Message& from) argument
5363 MergeFrom(const FieldOptions& from) argument
5384 CopyFrom(const ::google::protobuf::Message& from) argument
5390 CopyFrom(const FieldOptions& from) argument
5442 EnumOptions(const EnumOptions& from) argument
5593 MergeFrom(const ::google::protobuf::Message& from) argument
5605 MergeFrom(const EnumOptions& from) argument
5612 CopyFrom(const ::google::protobuf::Message& from) argument
5618 CopyFrom(const EnumOptions& from) argument
5666 EnumValueOptions(const EnumValueOptions& from) argument
5817 MergeFrom(const ::google::protobuf::Message& from) argument
5829 MergeFrom(const EnumValueOptions& from) argument
5836 CopyFrom(const ::google::protobuf::Message& from) argument
5842 CopyFrom(const EnumValueOptions& from) argument
5890 ServiceOptions(const ServiceOptions& from) argument
6041 MergeFrom(const ::google::protobuf::Message& from) argument
6053 MergeFrom(const ServiceOptions& from) argument
6060 CopyFrom(const ::google::protobuf::Message& from) argument
6066 CopyFrom(const ServiceOptions& from) argument
6114 MethodOptions(const MethodOptions& from) argument
6265 MergeFrom(const ::google::protobuf::Message& from) argument
6277 MergeFrom(const MethodOptions& from) argument
6284 CopyFrom(const ::google::protobuf::Message& from) argument
6290 CopyFrom(const MethodOptions& from) argument
6340 UninterpretedOption_NamePart(const UninterpretedOption_NamePart& from) argument
6526 MergeFrom(const ::google::protobuf::Message& from) argument
6538 MergeFrom(const UninterpretedOption_NamePart& from) argument
6551 CopyFrom(const ::google::protobuf::Message& from) argument
6557 CopyFrom(const UninterpretedOption_NamePart& from) argument
6609 UninterpretedOption(const UninterpretedOption& from) argument
6946 MergeFrom(const ::google::protobuf::Message& from) argument
6958 MergeFrom(const UninterpretedOption& from) argument
6981 CopyFrom(const ::google::protobuf::Message& from) argument
6987 CopyFrom(const UninterpretedOption& from) argument
[all...]
H A Dreflection_ops.cc16 // contributors may be used to endorse or promote products derived from
44 void ReflectionOps::Copy(const Message& from, Message* to) { argument
45 if (&from == to) return;
47 Merge(from, to);
50 void ReflectionOps::Merge(const Message& from, Message* to) { argument
51 GOOGLE_CHECK_NE(&from, to);
53 const Descriptor* descriptor = from.GetDescriptor();
57 const Reflection* from_reflection = from.GetReflection();
61 from_reflection->ListFields(from, &fields);
66 int count = from_reflection->FieldSize(from, fiel
[all...]
/external/chromium_org/media/cast/logging/
H A Dlog_deserializer.cc30 void MergePacketEvent(const AggregatedPacketEvent& from, argument
32 for (int i = 0; i < from.base_packet_event_size(); i++) {
33 const BasePacketEvent& from_base_event = from.base_packet_event(i);
41 // packet size (> 0) from being overwritten with an invalid one (= 0).
55 void MergeFrameEvent(const AggregatedFrameEvent& from, argument
57 to->mutable_event_type()->MergeFrom(from.event_type());
58 to->mutable_event_timestamp_ms()->MergeFrom(from.event_timestamp_ms());
59 if (!to->has_encoded_frame_size() && from.has_encoded_frame_size())
60 to->set_encoded_frame_size(from.encoded_frame_size());
61 if (!to->has_delay_millis() && from
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dreflection_ops.cc16 // contributors may be used to endorse or promote products derived from
48 void ReflectionOps::Copy(const Message& from, Message* to) { argument
49 if (&from == to) return;
51 Merge(from, to);
54 void ReflectionOps::Merge(const Message& from, Message* to) { argument
55 GOOGLE_CHECK_NE(&from, to);
57 const Descriptor* descriptor = from.GetDescriptor();
61 const Reflection* from_reflection = from.GetReflection();
65 from_reflection->ListFields(from, &fields);
70 int count = from_reflection->FieldSize(from, fiel
[all...]
/external/libhevc/common/arm/
H A Dihevc_intra_pred_luma_mode_3_to_9.s87 @stack contents from #40
183 vld1.8 {d0,d1}, [r6] @stores the 32 values reqd based on indices values (from least idx)
202 vtbl.8 d12, {d0,d1}, d8 @load from ref_main_idx (row 0)
205 vtbl.8 d13, {d0,d1}, d9 @load from ref_main_idx + 1 (row 0)
209 vtbl.8 d16, {d0,d1}, d4 @load from ref_main_idx (row 1)
213 vtbl.8 d17, {d0,d1}, d5 @load from ref_main_idx + 1 (row 1)
219 vtbl.8 d14, {d0,d1}, d8 @load from ref_main_idx (row 2)
223 vtbl.8 d15, {d0,d1}, d9 @load from ref_main_idx + 1 (row 2)
230 vtbl.8 d10, {d0,d1}, d4 @load from ref_main_idx (row 3)
234 vtbl.8 d11, {d0,d1}, d5 @load from ref_main_id
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Ddo-webcore-rename16 # from this software without specific prior written permission.
236 for my $from (@sortedRenameKeys) {
238 $newContents =~ s/\b(JS|V8|to|)$from/$1$renames{$from}/g;
241 for my $from (@sortedRenameKeys) {
242 $newContents =~ s/\b$from(?!["\w])/$renames{$from}/g; # this " unconfuses Xcode syntax highlighting
/external/chromium_org/third_party/icu/source/i18n/
H A Dtztrans.cpp21 TimeZoneTransition::TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to) argument
22 : UObject(), fTime(time), fFrom(from.clone()), fTo(to.clone()) {
96 TimeZoneTransition::setFrom(const TimeZoneRule& from) { argument
100 fFrom = from.clone();
104 TimeZoneTransition::adoptFrom(TimeZoneRule* from) { argument
108 fFrom = from;
/external/icu/icu4c/source/i18n/
H A Dtztrans.cpp21 TimeZoneTransition::TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to) argument
22 : UObject(), fTime(time), fFrom(from.clone()), fTo(to.clone()) {
96 TimeZoneTransition::setFrom(const TimeZoneRule& from) { argument
100 fFrom = from.clone();
104 TimeZoneTransition::adoptFrom(TimeZoneRule* from) { argument
108 fFrom = from;
/external/nist-sip/java/javax/sip/message/
H A DMessageFactory.java17 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
22 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
27 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
33 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
38 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
43 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
16 createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content) argument
21 createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content) argument
26 createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards) argument
32 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content) argument
37 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content) argument
42 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DMethodImplementationBuilder.java16 * contributors may be used to endorse or promote products derived from
106 public void addCatch(@Nullable TypeReference type, @Nonnull Label from, argument
108 impl.addCatch(type, from, to, handler);
111 public void addCatch(@Nullable String type, @Nonnull Label from, @Nonnull Label to, argument
113 impl.addCatch(type, from, to, handler);
116 public void addCatch(@Nonnull Label from, @Nonnull Label to, @Nonnull Label handler) { argument
117 impl.addCatch(from, to, handler);
/external/valgrind/main/gdbserver_tests/
H A Dmcwatchpoints.stderr.exp5 breakme function called from line 19
28 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/valgrind/main/memcheck/tests/
H A Dpartiallydefinedeq.stderr.exp18 Use --track-origins=yes to see where uninitialised values come from
19 ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
/external/eigen/Eigen/src/Core/arch/AltiVec/
H A DPacketMath.h147 template<> EIGEN_STRONG_INLINE Packet4f pset1<Packet4f>(const float& from) { argument
148 // Taken from http://developer.apple.com/hardwaredrivers/ve/alignment.html
150 af[0] = from;
156 template<> EIGEN_STRONG_INLINE Packet4i pset1<Packet4i>(const int& from) { argument
158 ai[0] = from;
259 template<> EIGEN_STRONG_INLINE Packet4f pload<Packet4f>(const float* from) { EIGEN_DEBUG_ALIGNED_LOAD return vec_ld(0, from); } argument
260 template<> EIGEN_STRONG_INLINE Packet4i pload<Packet4i>(const int* from) { EIGEN_DEBUG_ALIGNED_LOAD return vec_ld(0, from); } argument
262 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) argument
274 ploadu(const int* from) argument
286 ploaddup(const float* from) argument
293 ploaddup(const int* from) argument
301 pstore(float* to, const Packet4f& from) argument
302 pstore(int* to, const Packet4i& from) argument
304 pstoreu(float* to, const Packet4f& from) argument
322 pstoreu(int* to, const Packet4i& from) argument
[all...]
/external/openssl/crypto/conf/
H A Dconf_def.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
75 static int str_copy(CONF *conf,char *section,char **to, char *from);
503 static int str_copy(CONF *conf, char *section, char **pto, char *from) argument
511 len=strlen(from)+1;
516 if (IS_QUOTE(conf,*from))
518 q= *from;
519 from++;
520 while (!IS_EOF(conf,*from) && (*from !
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dpresencepushtask.cc14 * derived from this software without specific prior written permission.
74 Jid from(stanza->Attr(QN_FROM));
76 client_->mucs().find(from.BareJid());
78 HandlePresence(from, stanza);
80 HandleMucPresence(elem->second, from, stanza);
86 void PresencePushTask::HandlePresence(const Jid& from, argument
92 FillStatus(from, stanza, &s);
97 const Jid& from,
99 if (from == muc->local_jid()) {
124 FillMucStatus(from, stanz
96 HandleMucPresence(buzz::Muc* muc, const Jid& from, const XmlElement* stanza) argument
129 FillStatus(const Jid& from, const XmlElement* stanza, PresenceStatus* s) argument
217 FillMucStatus(const Jid& from, const XmlElement* stanza, MucPresenceStatus* s) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/conf/
H A Dconf.c34 * The word 'cryptographic' can be left out if the rouines from the library
36 * 4. If you include any Windows specific code (or a derivative thereof) from
183 static int str_copy(CONF *conf, char *section, char **pto, char *from) { argument
194 len = strlen(from) + 1;
200 if (IS_QUOTE(conf, *from)) {
201 q = *from;
202 from++;
203 while (!IS_EOF(conf, *from) && (*from != q)) {
204 if (IS_ESC(conf, *from)) {
[all...]
/external/chromium_org/cc/animation/
H A Dtransform_operation.h59 static bool BlendTransformOperations(const TransformOperation* from,
65 const TransformOperation* from,

Completed in 670 milliseconds

<<11121314151617181920>>