HomeSort by relevance Sort by last modified time
    Searched refs:source (Results 126 - 150 of 24255) sorted by null

1 2 3 4 56 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
bpo-21.d 0 #source: start.s
2 #source: bpo-11.s
3 #source: bpo-7.s
bpo-21m.d 0 #source: start.s
2 #source: bpo-11.s
3 #source: bpo-7.s
bpo-7.d 0 #source: start.s
2 #source: bpo-4.s
3 #source: greg-1.s
bpo-7m.d 0 #source: start.s
2 #source: bpo-4.s
3 #source: greg-1.s
loc5.d 0 #source: loc1.s
2 #source: start.s
3 #source: loc2.s
loc5m.d 0 #source: loc1.s
2 #source: start.s
3 #source: loc2.s
loc7.d 0 #source: dloc1.s
2 #source: start.s
3 #source: dloc2.s
loc7m.d 0 #source: dloc1.s
2 #source: start.s
3 #source: dloc2.s
local12.d 0 #source: local1.s
2 #source: ext1-254.s
3 #source: start.s
local12m.d 0 #source: local1.s
2 #source: ext1-254.s
3 #source: start.s
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowHtml.java 13 public static Spanned fromHtml(String source) {
14 if (source == null) {
22 return new SpannedThatActsLikeString(source);
26 String source; field in class:ShadowHtml.SpannedThatActsLikeString
28 private SpannedThatActsLikeString(String source) {
29 this.source = source;
59 return source.length();
64 return source.charAt(i);
74 return source;
    [all...]
  /external/strace/tests/
mount.c 7 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
48 static const char source[] = "mount_source"; local
53 int rc = mount(source, target, fstype, 15, data);
55 source, target, fstype, str_ro_nosuid_nodev_noexec,
58 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
60 source, target, fstype,
64 rc = mount(source, target, fstype, MS_MGC_VAL, data);
66 source, target, fstype, "MS_MGC_VAL", data, rc, errno2name());
68 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data)
    [all...]
  /external/strace/tests-m32/
mount.c 7 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
48 static const char source[] = "mount_source"; local
53 int rc = mount(source, target, fstype, 15, data);
55 source, target, fstype, str_ro_nosuid_nodev_noexec,
58 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
60 source, target, fstype,
64 rc = mount(source, target, fstype, MS_MGC_VAL, data);
66 source, target, fstype, "MS_MGC_VAL", data, rc, errno2name());
68 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data)
    [all...]
  /external/strace/tests-mx32/
mount.c 7 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
48 static const char source[] = "mount_source"; local
53 int rc = mount(source, target, fstype, 15, data);
55 source, target, fstype, str_ro_nosuid_nodev_noexec,
58 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
60 source, target, fstype,
64 rc = mount(source, target, fstype, MS_MGC_VAL, data);
66 source, target, fstype, "MS_MGC_VAL", data, rc, errno2name());
68 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data)
    [all...]
  /libcore/ojluni/src/main/java/java/text/
RuleBasedCollator.java 2 * Copyright (C) 2014 The Android Open Source Project
31 * The original version of this source code and documentation is copyrighted
325 * @param source the string to be collated
329 public CollationElementIterator getCollationElementIterator(String source) {
331 if (source == null) {
332 throw new NullPointerException("source == null");
334 return new CollationElementIterator(collAsICU().getCollationElementIterator(source));
340 * @param source the character iterator to be collated
346 CharacterIterator source) {
348 if (source == null)
    [all...]
  /external/wayland/src/
event-loop.c 55 int (*dispatch)(struct wl_event_source *source,
74 wl_event_source_fd_dispatch(struct wl_event_source *source,
77 struct wl_event_source_fd *fd_source = (struct wl_event_source_fd *) source;
90 return fd_source->func(fd_source->fd, mask, source->data);
99 struct wl_event_source *source, uint32_t mask, void *data)
103 if (source->fd < 0) {
104 free(source);
108 source->loop = loop;
109 source->data = data;
110 wl_list_init(&source->link)
134 struct wl_event_source_fd *source; local
195 struct wl_event_source_timer *source; local
258 struct wl_event_source_signal *source; local
292 struct wl_event_source_idle *source; local
338 struct wl_event_source *source, *next; local
383 struct wl_event_source *source, *next; local
397 struct wl_event_source_idle *source; local
411 struct wl_event_source *source; local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
PlotListener.java 27 * Fired immediately before the Plot "source" is drawn onto canvas.
31 * @param source
34 public void onBeforeDraw(Plot source, Canvas canvas);
37 * Fired immediately after the Plot "source" is drawn onto canvas.
41 * @param source
44 public void onAfterDraw(Plot source, Canvas canvas);
  /external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/mock/
MockPropertyChangeEvent.java 33 * @param source
35 public MockPropertyChangeEvent(Object source) {
36 super(source);
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
Node.java 29 * When set to true, the source object is ignored in {@link #equals} and {@link #hashCode}.
35 private final Object source; field in class:Node
37 protected Node(NodeId id, Object source) {
39 this.source = source;
47 return source;
56 && (ignoreSourceInComparisons || Objects.equal(source, other.source));
60 return ignoreSourceInComparisons ? id.hashCode() : Objects.hashCode(id, source);
  /external/libchrome/base/
scoped_observer.h 2 // Use of this source code is governed by a BSD-style license that can be
20 template <class Source, class Observer>
29 // Adds the object passed to the constructor as an observer on |source|.
30 void Add(Source* source) {
31 sources_.push_back(source);
32 source->AddObserver(observer_);
35 // Remove the object passed to the constructor as an observer from |source|.
36 void Remove(Source* source) {
    [all...]
  /external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
convert_to_auto_ptr.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
24 source() function
32 std::auto_ptr<A> ap2(source());
  /external/nist-sip/java/javax/sip/
DialogTerminatedEvent.java 8 public DialogTerminatedEvent(Object source, Dialog dialog) {
9 super(source);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetShaderSource.java 1 // C function void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source )
8 byte[] source,
12 // C function void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source )
19 byte source
22 // C function void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source )
  /libcore/ojluni/src/main/java/java/nio/file/
AtomicMoveNotSupportedException.java 43 * @param source
44 * a string identifying the source file or {@code null} if not known
50 public AtomicMoveNotSupportedException(String source,
54 super(source, target, reason);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
convert_to_auto_ptr.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
24 source() function
32 std::auto_ptr<A> ap2(source());

Completed in 449 milliseconds

1 2 3 4 56 7 8 91011>>