Searched defs:from (Results 176 - 200 of 925) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Da_time.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
210 const ASN1_TIME *from, const ASN1_TIME *to)
213 if (!asn1_time_to_tm(&tm_from, from))
209 ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from, const ASN1_TIME *to) argument
/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;
H A Dztrans.cpp27 ztrans_open(UDate time, const void* from, const void* to){ argument
28 return (ZTrans*) new TimeZoneTransition(time,*(TimeZoneRule*)from,*(TimeZoneRule*)to);
67 ztrans_setFrom(ZTrans* trans, const void* from) { argument
68 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setFrom(*(TimeZoneRule*)from);
72 ztrans_adoptFrom(ZTrans* trans, void* from) { argument
73 return ((TimeZoneTransition*)trans)->TimeZoneTransition::adoptFrom((TimeZoneRule*)from);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpresencereceivetask.cc14 * derived from this software without specific prior written permission.
54 Jid from(stanza->Attr(QN_FROM));
55 HandlePresence(from, stanza);
72 void PresenceReceiveTask::HandlePresence(const Jid& from, argument
79 DecodeStatus(from, stanza, &status);
83 void PresenceReceiveTask::DecodeStatus(const Jid& from, argument
86 presence_status->set_jid(from);
/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/chromium_org/third_party/libxslt/libxslt/
H A DnumbersInternals.h31 const xmlChar *from; member in struct:_xsltNumberData
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_double_list.h73 static INLINE void list_replace(struct list_head *from, struct list_head *to) argument
75 to->prev = from->prev;
76 to->next = from->next;
77 from->next->prev = to;
78 from->prev->next = to;
110 * Cast from a pointer to a member of a struct back to the containing struct.
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_clip_tmp.h51 const GLfloat *from = (GLfloat *)clip_vec->start; local
59 const GLfloat cx = from[0];
60 const GLfloat cy = from[1];
61 const GLfloat cz = from[2];
62 const GLfloat cw = from[3];
132 const GLfloat *from = (GLfloat *)clip_vec->start; local
139 const GLfloat cx = from[0];
140 const GLfloat cy = from[1];
141 const GLfloat cz = from[2];
142 const GLfloat cw = from[
189 const GLfloat *from = (GLfloat *)clip_vec->start; local
225 const GLfloat *from = (GLfloat *)clip_vec->start; local
[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/chromium_org/third_party/skia/src/animator/
H A DSkAnimateBase.h56 SkString from; member in class:SkAnimateBase
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dacm_opus_unittest.cc39 void TestSetPacketLossRate(int from, int to, int expected_return);
43 void AcmOpusTest::TestSetPacketLossRate(int from, int to, int expected_return) { argument
44 for (int loss = from; loss <= to; (to >= from) ? ++loss : --loss) {
86 void AcmOpusTest:TestSetPacketLossRate(int /* from */, int /* to */,
/external/chromium_org/third_party/zlib/
H A Dinffast.c78 unsigned dmax; /* maximum distance from zlib header */
95 unsigned char FAR *from; /* where to copy match from */ local
187 if (dist > op) { /* see if copy from window */
208 from = out - dist;
210 PUP(out) = PUP(from);
216 from = window - OFF;
218 from += wsize - op;
219 if (op < len) { /* some from window */
222 PUP(out) = PUP(from);
[all...]
/external/chromium_org/tools/gn/
H A Dvisibility.cc88 bool Visibility::CheckItemVisibility(const Item* from, argument
91 if (!to->visibility().CanSeeMe(from->label())) {
93 *err = Err(from->defined_from(), "Dependency not allowed.",
94 "The item " + from->label().GetUserVisibleName(false) + "\n"
/external/chromium_org/tools/json_schema_compiler/
H A Dutil.h19 // Creates a new item at |out| from |from|[|index|]. These are used by template
21 bool GetItemFromList(const base::ListValue& from, int index, int* out);
22 bool GetItemFromList(const base::ListValue& from, int index, bool* out);
23 bool GetItemFromList(const base::ListValue& from, int index, double* out);
24 bool GetItemFromList(const base::ListValue& from, int index, std::string* out);
25 bool GetItemFromList(const base::ListValue& from,
28 bool GetItemFromList(const base::ListValue& from,
34 bool GetItemFromList(const base::ListValue& from, argument
38 if (!from
66 PopulateArrayFromDictionary( const base::DictionaryValue& from, const std::string& name, std::vector<T>* out) argument
101 PopulateOptionalArrayFromDictionary( const base::DictionaryValue& from, const std::string& name, scoped_ptr<std::vector<T> >* out) argument
133 AddItemToList(const linked_ptr<T>& from, base::ListValue* out) argument
140 PopulateListFromArray( const std::vector<T>& from, base::ListValue* out) argument
153 PopulateListFromOptionalArray( const scoped_ptr<std::vector<T> >& from, base::ListValue* out) argument
162 CreateValueFromArray(const std::vector<T>& from) argument
169 CreateValueFromOptionalArray( const scoped_ptr<std::vector<T> >& from) argument
[all...]
/external/chromium_org/ui/views/examples/
H A Ddouble_split_view_example.cc22 void SetColor(SkColor from, SkColor to);
38 void SplittedView::SetColor(SkColor from, SkColor to) { argument
39 set_background(Background::CreateVerticalGradientBackground(from, to));
H A Dscroll_view_example.cc34 void SetColor(SkColor from, SkColor to) { argument
35 set_background(Background::CreateVerticalGradientBackground(from, to));
H A Dsingle_split_view_example.cc21 void SetColor(SkColor from, SkColor to);
39 void SplittedView::SetColor(SkColor from, SkColor to) { argument
40 set_background(Background::CreateVerticalGradientBackground(from, to));
/external/chromium_org/v8/test/cctest/
H A Dtest-code-stubs-arm.cc14 // from this software without specific prior written permission.
143 double from) {
145 return CALL_GENERATED_FP_INT(func, from, 0);
147 return (*func)(from);
142 RunGeneratedCodeCallWrapper(ConvertDToIFunc func, double from) argument
H A Dtest-code-stubs-arm64.cc14 // from this software without specific prior written permission.
139 double from) {
142 Simulator::CallArgument(from),
148 return (*func)(from);
138 RunGeneratedCodeCallWrapper(ConvertDToIFunc func, double from) argument
H A Dtest-code-stubs-mips.cc14 // from this software without specific prior written permission.
144 double from) {
146 Simulator::current(Isolate::Current())->CallFP(FUNCTION_ADDR(func), from, 0.); local
149 return (*func)(from);
143 RunGeneratedCodeCallWrapper(ConvertDToIFunc func, double from) argument
H A Dtest-code-stubs-mips64.cc14 // from this software without specific prior written permission.
144 double from) {
146 Simulator::current(Isolate::Current())->CallFP(FUNCTION_ADDR(func), from, 0.); local
149 return (*func)(from);
143 RunGeneratedCodeCallWrapper(ConvertDToIFunc func, double from) argument
H A Dtest-code-stubs.cc14 // from this software without specific prior written permission.
79 double from,
82 int result = (*callWrapper)(func, from);
88 double from) {
89 return (*func)(from);
77 RunOneTruncationTestWithTest(ConvertDToICallWrapper callWrapper, ConvertDToIFunc func, double from, double raw) argument
87 DefaultCallWrapper(ConvertDToIFunc func, double from) argument
/external/compiler-rt/lib/asan/tests/
H A Dasan_mem_test.cc186 static void* transfer(void *to, const void *from, size_t size) { argument
187 return Ident(memcpy)(to, from, size);
198 static void* transfer(void *to, const void *from, size_t size) { argument
199 return Ident(memmove)(to, from, size);
225 // Zero bytes are not terminators and don't prevent from OOB.
/external/compiler-rt/test/BlocksRuntime/
H A Dfail.c22 bool readfile(char *buffer, const char *from) { argument
23 int fd = open(from, 0);
87 printf("didn't read errorfile %s, it should have something from\n*****\n%s\n*****\nin it.\n",
/external/flac/libFLAC/ia32/
H A Dnasm.h16 ; contributors may be used to endorse or promote products derived from variable

Completed in 415 milliseconds

1234567891011>>