Searched refs:from (Results 226 - 250 of 3600) sorted by relevance

1234567891011>>

/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DDepHandler.java27 void handle(PathClass from, PathClass to) throws IOException; argument
/external/valgrind/main/drd/tests/
H A Dannotate_hb_race.stderr.exp8 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
H A Dannotate_ignore_rw.stderr.exp9 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
H A Dannotate_publish_hg.stderr.exp7 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
H A Dpth_uninitialized_cond.stderr.exp10 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
H A Dread_and_free_race.stderr.exp8 Address 0x........ is at offset 0 from 0x......... Allocation context:
14 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
/external/valgrind/main/helgrind/tests/
H A Dcond_timedwait_invalid.stderr.exp15 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Dxmlautomata.h57 xmlAutomataStatePtr from,
63 xmlAutomataStatePtr from,
70 xmlAutomataStatePtr from,
78 xmlAutomataStatePtr from,
86 xmlAutomataStatePtr from,
95 xmlAutomataStatePtr from,
103 xmlAutomataStatePtr from,
112 xmlAutomataStatePtr from,
117 xmlAutomataStatePtr from,
121 xmlAutomataStatePtr from,
[all...]
/external/libxml2/include/libxml/
H A Dxmlautomata.h57 xmlAutomataStatePtr from,
63 xmlAutomataStatePtr from,
70 xmlAutomataStatePtr from,
78 xmlAutomataStatePtr from,
86 xmlAutomataStatePtr from,
95 xmlAutomataStatePtr from,
103 xmlAutomataStatePtr from,
112 xmlAutomataStatePtr from,
117 xmlAutomataStatePtr from,
121 xmlAutomataStatePtr from,
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/notifications/
H A DNotificationPermissionClient.cpp19 NotificationPermissionClient* NotificationPermissionClient::from(ExecutionContext* context) function in class:blink::NotificationPermissionClient
30 return static_cast<NotificationPermissionClient*>(WillBeHeapSupplement<LocalFrame>::from(document->frame(), supplementName()));
/external/chromium_org/third_party/bintrees/bintrees/
H A Dcwalker.pxd8 from ctrees cimport node_t
9 from stack cimport node_stack_t
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpresencereceivetask.h14 * derived from this software without specific prior written permission.
38 // A task to receive presence status callbacks from the XMPP server.
56 // Called by the XMPP engine when presence stanzas are received from the
63 void HandlePresence(const Jid& from, const XmlElement * stanza);
67 static void DecodeStatus(const Jid& from, const XmlElement * stanza,
/external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/vc9/
H A Dconfig.h4 #define yasm__combpath(from, to) yasm__combpath_win(from, to)
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
H A Dgas-parse-intel.c15 * may be used to endorse or promote products derived from this
39 #define SET_FIELDS(to, from) \
40 (to)->object = (from)->object; \
41 (to)->locallabel_base = (from)->locallabel_base; \
42 (to)->locallabel_base_len = (from)->locallabel_base_len; \
43 (to)->preproc = (from)->preproc; \
44 (to)->errwarns = (from)->errwarns; \
45 (to)->linemap = (from)->linemap; \
46 (to)->prev_bc = (from)->prev_bc;
/external/chromium_org/tools/telemetry/
H A Drun_tests9 from telemetry.unittest import gtest_progress_reporter
10 from telemetry.unittest import run_tests
/external/jarjar/
H A Dbuild.gradle25 manifest.from file('manifest.txt')
/external/libnl/include/netlink/route/
H A Drtnl.h33 * Extract FROM realm from a realms field
38 * Extract TO realm from a realms field
45 #define RTNL_MAKE_REALM(from, to) \
46 ((RTNL_REALM_TO(from) << 16) & RTNL_REALM_TO(to))
/external/smack/src/org/jivesoftware/smackx/ping/packet/
H A DPing.java27 public Ping(String from, String to) { argument
29 setFrom(from);
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderIterator.java99 * @param from one less than the index to consider first,
105 protected int findNext(int from) { argument
106 if (from < -1)
111 while (!found && (from < to)) {
112 from++;
113 found = filterHeader(from);
115 return found ? from : -1;
140 * Obtains the next header from this iteration.
H A DBasicListHeaderIterator.java107 * @param from one less than the index to consider first,
113 protected int findNext(int from) { argument
114 if (from < -1)
119 while (!found && (from < to)) {
120 from++;
121 found = filterHeader(from);
123 return found ? from : -1;
153 * Obtains the next header from this iteration.
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8RecursionScope.h15 * contributors may be used to endorse or promote products derived from
45 // 1. Calls into page/author script from a frame
46 // 2. Calls into page/author script from a worker
65 V8PerIsolateData::from(m_isolate)->incrementRecursionLevel();
74 if (!V8PerIsolateData::from(m_isolate)->decrementRecursionLevel())
80 return V8PerIsolateData::from(isolate)->recursionLevel();
86 return recursionLevel(isolate) > 0 || V8PerIsolateData::from(isolate)->internalScriptRecursionLevel() > 0;
99 V8PerIsolateData::from(m_isolate)->incrementInternalScriptRecursionLevel();
106 V8PerIsolateData::from(m_isolate)->decrementInternalScriptRecursionLevel();
/external/chromium_org/third_party/webrtc/base/
H A Dtestclient_unittest.cc28 SocketAddress addr = client.address(), from; local
30 EXPECT_TRUE(client.CheckNextPacket("foo", 3, &from));
31 EXPECT_EQ(from, addr);
46 SocketAddress addr = client.address(), from; local
49 EXPECT_TRUE(client.CheckNextPacket("foo", 3, &from));
50 EXPECT_EQ(from, server.address());
/external/dhcpcd/
H A Ddhcpcd-run-hooks5 from="from"
7 signature="${signature_base} ${from} ${interface}"
9 signature_end="${signature_base_end} ${from} ${interface}"
13 # remove variables from the environment so later scripts don't see them.
/external/valgrind/main/callgrind/
H A Djumps.c79 static UInt jcc_hash_idx(BBCC* from, UInt jmp, BBCC* to, UInt size) argument
81 return (UInt) ( (UWord)from + 7* (UWord)to + 13*jmp) % size;
108 new_idx = jcc_hash_idx(curr_jcc->from, curr_jcc->jmp,
138 * for a spontaneous call, from is 0 (i.e. caller unknown)
140 static jCC* new_jcc(BBCC* from, UInt jmp, BBCC* to) argument
152 jcc->from = from;
162 if (from) {
164 CLG_ASSERT((0 <= jmp) && (jmp <= from->bb->cjmp_count));
165 jcc->next_from = from
190 get_jcc(BBCC* from, UInt jmp, BBCC* to) argument
[all...]
/external/chromium_org/cc/animation/
H A Dtransform_operation.cc5 // Needed on Windows to get |M_PI| from <cmath>
35 static bool ShareSameAxis(const TransformOperation* from, argument
41 if (IsOperationIdentity(from) && IsOperationIdentity(to))
44 if (IsOperationIdentity(from) && !IsOperationIdentity(to)) {
52 if (!IsOperationIdentity(from) && IsOperationIdentity(to)) {
53 *axis_x = from->rotate.axis.x;
54 *axis_y = from->rotate.axis.y;
55 *axis_z = from->rotate.axis.z;
56 *angle_from = from->rotate.angle;
60 SkMScalar length_2 = from
87 BlendSkMScalars(SkMScalar from, SkMScalar to, SkMScalar progress) argument
93 BlendTransformOperations( const TransformOperation* from, const TransformOperation* to, SkMScalar progress, gfx::Transform* result) argument
231 BoundingBoxForArc(const gfx::Point3F& point, const TransformOperation* from, const TransformOperation* to, SkMScalar min_progress, SkMScalar max_progress, gfx::BoxF* box) argument
364 BlendedBoundsForBox(const gfx::BoxF& box, const TransformOperation* from, const TransformOperation* to, SkMScalar min_progress, SkMScalar max_progress, gfx::BoxF* bounds) argument
[all...]

Completed in 892 milliseconds

1234567891011>>