HomeSort by relevance Sort by last modified time
    Searched defs:target (Results 1 - 25 of 665) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/except/except.spec/
p9-dynamic.cpp 5 void target() throw(int) function
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_redirect.h 7 int target; member in struct:ebt_redirect_info
ebt_arpreply.h 7 int target; member in struct:ebt_arpreply_info
ebt_nat.h 9 int target; member in struct:ebt_nat_info
  /external/icu4c/i18n/
anytrans.h 24 * A transliterator named Any-T or Any-T/V, where T is the target
27 * The target must be a script. It partitions text into runs of the
29 * transliterates from that script to the given target or
30 * target/variant. Adjacent COMMON or INHERITED script characters are
43 * The target or target/variant string.
45 UnicodeString target; member in class:AnyTransliterator
48 * The target script code. Never USCRIPT_INVALID_CODE.
91 * @param theTarget the target name. Must not be empty, and must
107 * Returns a transliterator from the given source to our target o
    [all...]
  /external/skia/src/animator/
SkHitClear.cpp 32 SkDisplayable* target = targets[tIndex]; local
33 target->clearBounder();
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
document-create-touch.js 11 var target = document.getElementById("box"); variable
12 var touch = document.createTouch(window, target, 1, 100, 101, 102, 103);
14 shouldBe("touch.target", "box");
23 shouldBeNull("emptyTouch.target");
33 shouldBeNull("badParamsTouch.target");
  /external/webkit/Source/WebCore/svg/
SVGAElement.h 49 virtual String target() const { return svgTarget(); } function in class:WebCore::SVGAElement
71 // This declaration used to define a non-virtual "String& target() const" method, that clashes with "virtual String Element::target() const".
SVGMPathElement.cpp 81 Element* target = document()->getElementById(getTarget(href())); local
82 if (target && target->hasTagName(SVGNames::pathTag))
83 return static_cast<SVGPathElement*>(target);
  /external/llvm/tools/llvm-ld/
Optimize.cpp 20 #include "llvm/Target/TargetData.h"
21 #include "llvm/Target/TargetMachine.h"
103 std::auto_ptr<TargetMachine> target; local
  /external/webkit/Source/WebCore/dom/
WindowEventContext.h 45 EventTarget* target() const;
58 inline EventTarget* WindowEventContext::target() const function in class:WebCore::WindowEventContext
EventContext.h 41 EventContext(PassRefPtr<Node>, PassRefPtr<EventTarget> currentTarget, PassRefPtr<EventTarget> target);
44 EventTarget* target() const;
58 inline EventTarget* EventContext::target() const function in class:WebCore::EventContext
  /frameworks/base/include/media/stagefright/foundation/
AHandlerReflector.h 27 AHandlerReflector(T *target)
28 : mTarget(target) {
33 sp<T> target = mTarget.promote(); local
34 if (target != NULL) {
35 target->onMessageReceived(msg);
  /external/guava/src/com/google/common/io/
AppendableWriter.java 25 * Writer that places all output on an {@link Appendable} target. If the target
27 * be delegated to the target.
34 private final Appendable target; field in class:AppendableWriter
38 * Creates a new writer that appends everything it writes to {@code target}.
40 * @param target target to which to append output
42 AppendableWriter(Appendable target) {
43 this.target = target;
    [all...]
  /cts/tests/src/android/provider/cts/
FileCopyHelper.java 65 OutputStream target = mContext.openFileOutput(fileName, Context.MODE_WORLD_READABLE); local
66 copyFile(source, target);
73 OutputStream target = new FileOutputStream(path); local
74 copyFile(source, target);
77 private void copyFile(InputStream source, OutputStream target) throws IOException {
81 target.write(buffer, 0, len);
87 if (target != null) {
88 target.close();
  /dalvik/dexgen/src/com/android/dexgen/util/
DexJarMaker.java 50 JarOutputStream target = null; local
52 target = new JarOutputStream(
55 add(new File(pathHolder.getDexFilePath()), target);
62 if (target != null) {
63 target.close();
75 * @param target {@code non-null;} target jar archive
78 private void add(File source, JarOutputStream target) throws IOException {
87 target.putNextEntry(entry);
91 target.write(curr)
    [all...]
  /bionic/libc/stdio/
fseek.c 52 fpos_t target, curoff; local
144 target = offset;
148 target = st.st_size + offset;
182 * If the target offset is within the current buffer,
188 target >= curoff && target < (fpos_t)(curoff + n)) {
189 int o = target - curoff;
208 curoff = target & ~(fp->_blksize - 1);
216 n = target - curoff;
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_tree_browser_cell.h 14 // browser view. This cell customization adds target and action support
27 @property(nonatomic, assign) id target; variable
  /external/chromium/chrome/browser/ui/gtk/
cairo_cached_surface.cc 52 cairo_surface_t* target = cairo_get_target(cr); local
54 target,
  /external/icu4c/i18n/unicode/
bmsearch.h 30 class Target;
41 * string and the target string. Then you call the <code>search</code> method. Here's a code sample:
44 * void boyerMooreExample(UCollator *collator, UnicodeString *pattern, UnicodeString *target)
54 * BoyerMooreSearch *search = new BoyerMooreSearch(collData, *patternString, target, status);
144 * Search for the pattern string in the target string.
146 * @param offset - the offset in the target string at which to begin the search
157 * Set the target string for the match.
159 * @param targetString - the new target string
220 Target *target; member in class:BoyerMooreSearch
    [all...]
  /external/srec/srec/include/
channorm.h 39 int target[MAX_CHAN_DIM]; /* Values located in the .TMN file */ member in struct:__anon11325
  /external/webkit/Source/WebCore/bindings/gobject/
GObjectEventListener.cpp 34 GObjectEventListener::GObjectEventListener(GObject* object, EventTarget* target, const char* domEventName, GCallback handler, bool capture, void* userData)
37 , m_coreTarget(target)
61 EventTarget* target = m_coreTarget; local
63 target->removeEventListener(m_domEventName.data(), this, m_capture);
  /external/webkit/Source/WebCore/html/
HTMLBaseElement.cpp 70 String HTMLBaseElement::target() const function in class:WebCore::HTMLBaseElement
  /external/webkit/Source/WebKit/chromium/tests/
CCThreadTest.cpp 54 PingPongUsingCondition target; local
56 thread->postTask(createCCThreadTask(&target, &PingPongUsingCondition::ping, &completion));
59 EXPECT_EQ(thread->threadID(), target.hitThreadID);
83 PingPongTestUsingTasks target; local
84 thread->postTask(createCCThreadTask(&target, &PingPongTestUsingTasks::ping));
87 EXPECT_TRUE(target.hit);
  /frameworks/base/core/tests/coretests/src/android/net/
LinkPropertiesTest.java 38 LinkProperties target = new LinkProperties(); local
40 assertFalse(source == target);
41 assertTrue(source.equals(target));
42 assertTrue(source.hashCode() == target.hashCode());
62 LinkProperties target = new LinkProperties(); local
65 target.setInterfaceName(NAME);
66 target.addLinkAddress(new LinkAddress(
68 target.addLinkAddress(new LinkAddress(
70 target.addDns(NetworkUtils.numericToInetAddress(DNS1));
71 target.addDns(NetworkUtils.numericToInetAddress(DNS2))
153 LinkProperties target = new LinkProperties(); local
184 LinkProperties target = new LinkProperties(); local
    [all...]

Completed in 960 milliseconds

1 2 3 4 5 6 7 8 91011>>