Searched refs:from (Results 126 - 150 of 2750) sorted by relevance

1234567891011>>

/external/valgrind/drd/tests/
H A Dtc17_sembar.stderr.exp5 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/valgrind/helgrind/tests/
H A Drwlock_test.stderr.exp6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dtc17_sembar.stderr.exp5 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/clang/test/OpenMP/
H A Dtarget_exit_data_device_messages.cpp14 #pragma omp target exit data map(from: i) device // expected-error {{expected '(' after 'device'}}
15 #pragma omp target exit data map(from: i) device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
16 #pragma omp target exit data map(from: i) device () // expected-error {{expected expression}}
17 #pragma omp target exit data map(from: i) device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp target exit data map(from: i) device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target exit data' are ignored}}
19 #pragma omp target exit data map(from: i) device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
20 #pragma omp target exit data map(from: i) device (argc + argc)
21 #pragma omp target exit data map(from: i) device (argc), device (argc+1) // expected-error {{directive '#pragma omp target exit data' cannot contain more than one 'device' clause}}
22 #pragma omp target exit data map(from: i) device (S1) // expected-error {{'S1' does not refer to a value}}
23 #pragma omp target exit data map(from
[all...]
H A Dtarget_exit_data_if_messages.cpp14 #pragma omp target exit data map(from: i) if // expected-error {{expected '(' after 'if'}}
15 #pragma omp target exit data map(from: i) if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
16 #pragma omp target exit data map(from: i) if () // expected-error {{expected expression}}
17 #pragma omp target exit data map(from: i) if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp target exit data map(from: i) if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target exit data' are ignored}}
19 #pragma omp target exit data map(from: i) if (argc > 0 ? argv[1] : argv[2])
20 #pragma omp target exit data map(from: i) if (argc + argc)
21 #pragma omp target exit data map(from: i) if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target exit data' cannot contain more than one 'if' clause}}
22 #pragma omp target exit data map(from: i) if (S1) // expected-error {{'S1' does not refer to a value}}
23 #pragma omp target exit data map(from
[all...]
H A Dtarget_exit_data_nowait_messages.cpp6 #pragma omp nowait target exit data map(from: i) // expected-error {{expected an OpenMP directive}}
7 #pragma omp target nowait exit data map(from: i) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
8 #pragma omp target exit nowait data map(from: i) // expected-error {{expected an OpenMP directive}}
9 #pragma omp target exit data nowait() map(from: i) // expected-warning {{extra tokens at the end of '#pragma omp target exit data' are ignored}} expected-error {{expected at least one map clause for '#pragma omp target exit data'}}
10 #pragma omp target exit data map(from: i) nowait( // expected-warning {{extra tokens at the end of '#pragma omp target exit data' are ignored}}
11 #pragma omp target exit data map(from: i) nowait (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target exit data' are ignored}}
12 #pragma omp target exit data map(from: i) nowait device (-10u)
13 #pragma omp target exit data map(from: i) nowait (3.14) device (-10u) // expected-warning {{extra tokens at the end of '#pragma omp target exit data' are ignored}}
14 #pragma omp target exit data map(from: i) nowait nowait // expected-error {{directive '#pragma omp target exit data' cannot contain more than one 'nowait' clause}}
15 #pragma omp target exit data nowait map(from
[all...]
/external/jsilver/src/com/google/streamhtmlparser/impl/
H A DParserStateTable.java26 * <p>The logic of what character causes what state transition is derived from
88 * in the {@code from} state.
97 * @param from the source state
101 InternalState getNextState(InternalState from, int currentChar) { argument
103 if (from == null || currentChar < 0)
106 int id = from.getId();
116 result = defaultStateTable[from.getId()];
121 void setExpression(String expr, InternalState from, InternalState to) { argument
122 if ((expr == null) || (from == null) || (to == null)) {
128 setDefaultDestination(from, t
144 fill(InternalState from, InternalState to) argument
151 setDefaultDestination(InternalState from, InternalState to) argument
162 setDestination(InternalState from, char chr, InternalState to) argument
174 setRange(InternalState from, char start, char end, InternalState to) argument
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h44 bool addEdge(uptr from, uptr to) { argument
45 check(from, to);
46 return v[from].setBit(to);
50 uptr addEdges(const BV &from, uptr to, uptr added_edges[], argument
53 t1.copyFrom(from);
64 // Returns true if an edge from=>to exist.
66 // and thus can be called from different threads w/o locking.
69 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); } argument
71 // Returns true if the edge from
72 removeEdge(uptr from, uptr to) argument
87 removeEdgesFrom(const BV &from) argument
100 removeEdgesFrom(uptr from) argument
104 hasEdge(uptr from, uptr to) const argument
111 isReachable(uptr from, const BV &targets) argument
128 findPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
145 findShortestPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DFromParser.java43 public FromParser(String from) { argument
44 super(from);
53 From from = new From();
59 super.parse(from);
61 return from;
77 * Obtained from:
85 * Obtained from:
88 * Moved some changes from jain-sip-1.2 to java.net
94 * CVS: Obtained from:
95 * CVS: If this change has been taken from anothe
[all...]
/external/vboot_reference/scripts/image_signing/
H A Dset_channel.sh33 local from=$(grep '^CHROMEOS_RELEASE_TRACK=' "${lsb}" | cut -d '=' -f 2)
34 from=${from%"-channel"}
35 echo "Current channel is '${from}'. Changing to '${to}'."
41 ${sudo} sed -i "s/\b${from}\b/${to}/" "${lsb}" &&
/external/webrtc/webrtc/p2p/base/
H A Dtransportdescription.h99 TransportDescription(const TransportDescription& from) argument
100 : transport_options(from.transport_options),
101 ice_ufrag(from.ice_ufrag),
102 ice_pwd(from.ice_pwd),
103 ice_mode(from.ice_mode),
104 connection_role(from.connection_role),
105 identity_fingerprint(CopyFingerprint(from.identity_fingerprint.get())),
106 candidates(from.candidates) {}
108 TransportDescription& operator=(const TransportDescription& from) { argument
110 if (this == &from)
134 CopyFingerprint( const rtc::SSLFingerprint* from) argument
[all...]
/external/libxcam/modules/isp/
H A Disp_config_translator.h36 XCamReturn translate_white_balance (const XCam3aResultWhiteBalance &from, struct atomisp_wb_config &to);
37 XCamReturn translate_black_level (const XCam3aResultBlackLevel &from, struct atomisp_ob_config &to);
38 XCamReturn translate_color_matrix (const XCam3aResultColorMatrix &from, struct atomisp_cc_config &to);
39 XCamReturn translate_exposure (const XCam3aResultExposure &from, struct atomisp_exposure &to);
40 XCamReturn translate_demosaicing (const X3aDemosaicResult &from, struct atomisp_de_config &to);
41 XCamReturn translate_defect_pixel (const XCam3aResultDefectPixel &from, struct atomisp_dp_config &to);
42 XCamReturn translate_noise_reduction (const XCam3aResultNoiseReduction &from, struct atomisp_nr_config &to);
43 XCamReturn translate_edge_enhancement (const XCam3aResultEdgeEnhancement &from, struct atomisp_ee_config &to);
44 XCamReturn translate_gamma_table (const XCam3aResultGammaTable &from, struct atomisp_gamma_table &to);
45 XCamReturn translate_macc (const XCam3aResultMaccMatrix &from, struc
[all...]
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
H A DLenientCopyTool.java15 public <T> void copyToMock(T from, T mock) { argument
16 copy(from, mock, from.getClass());
19 public <T> void copyToRealObject(T from, T to) { argument
20 copy(from, to, from.getClass());
23 private <T> void copy(T from, T to, Class<?> fromClazz) { argument
25 copyValues(from, to, fromClazz);
30 private <T> void copyValues(T from, T mock, Class<?> classFrom) { argument
41 fieldCopier.copyValue(from, moc
[all...]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/controller/
H A DServiceController.java3 import static org.robolectric.util.ReflectionHelpers.ClassParameter.from;
32 from(Context.class, RuntimeEnvironment.application.getBaseContext()),
33 from(ActivityThread.class, null),
34 from(String.class, component.getClass().getSimpleName()),
35 from(IBinder.class, null),
36 from(Application.class, RuntimeEnvironment.application),
37 from(Object.class, null));
44 invokeWhilePaused("onBind", from(Intent.class, getIntent()));
59 invokeWhilePaused("onRebind", from(Intent.class, getIntent()));
64 invokeWhilePaused("onStartCommand", from(Inten
[all...]
/external/clang/test/Modules/
H A Dexplicit-build-flags.cpp52 #error bad FOO from command line and module
56 #error bad FOO from command line overriding module
60 #error FOO leaked from module
/external/curl/docs/cmdline-opts/
H A Dmail-from.d1 Long: mail-from
3 Help: Mail from this address
8 Specify a single address that the given mail should get sent from.
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dchar_in.pass.cpp15 // const externT* from, const externT* from_end, const externT*& from_next,
28 const std::basic_string<F::intern_type> from("some text");
29 std::vector<char> to(from.size());
34 assert(f.in(mbs, from.data(), from.data() + from.size(), from_next,
36 assert(from_next == from.data());
H A Dchar_out.pass.cpp15 // const internT* from, const internT* from_end, const internT*& from_next,
28 const std::basic_string<F::intern_type> from("some text");
29 std::vector<char> to(from.size());
34 assert(f.out(mbs, from.data(), from.data() + from.size(), from_next,
36 assert(from_next == from.data());
/external/valgrind/none/tests/
H A Dfdleak_dup.stderr.exp11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
H A Dfdleak_dup2.stderr.exp14 <inherited from parent>
17 <inherited from parent>
20 <inherited from parent>
H A Dfdleak_fcntl.stderr.exp11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
H A Dfdleak_open.stderr.exp8 <inherited from parent>
11 <inherited from parent>
14 <inherited from parent>
H A Dfdleak_pipe.stderr.exp11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
H A Dfdleak_socketpair.stderr.exp11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
H A Dfdleak_cmsg.stderr.exp17 <inherited from parent>
20 <inherited from parent>
23 <inherited from parent>
38 <inherited from parent>
41 <inherited from parent>
44 <inherited from parent>

Completed in 799 milliseconds

1234567891011>>