HomeSort by relevance Sort by last modified time
    Searched defs:target (Results 226 - 250 of 1683) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputBindingTest.java 48 InputBinding target = InputBinding.CREATOR.createFromParcel(p); local
49 assertEquals(uid, target.getUid());
50 assertEquals(pid, target.getPid());
51 assertSame(binder, target.getConnectionToken());
  /dalvik/vm/
SignalCatcher.cpp 75 static void printProcessName(const DebugOutputTarget* target)
91 dvmPrintDebugMessage(target, "Cmd line: %s\n", tmpBuf);
104 DebugOutputTarget target; local
106 dvmCreateFileOutputTarget(&target, fp);
117 dvmPrintDebugMessage(&target,
121 printProcessName(&target);
122 dvmPrintDebugMessage(&target, "\n");
123 dvmDumpJniStats(&target);
124 dvmDumpAllThreadsEx(&target, true);
153 DebugOutputTarget target; local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3convertutf.c 57 UTF16* target = *targetStart; local
60 if (target >= targetEnd) {
64 if (ch <= UNI_MAX_BMP) { /* Target is a character <= 0xFFFF */
72 *target++ = UNI_REPLACEMENT_CHAR;
75 *target++ = (UTF16)ch; /* normal case */
81 *target++ = UNI_REPLACEMENT_CHAR;
84 /* target is a character in range 0xFFFF - 0x10FFFF. */
85 if (target + 1 >= targetEnd) {
90 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
91 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START)
106 UTF32* target = *targetStart; local
210 UTF8* target = *targetStart; local
334 UTF16* target = *targetStart; local
407 UTF8* target = *targetStart; local
460 UTF32* target = *targetStart; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ACyclicDFACodeGenerator.java 89 description = parentGenerator.target.getTargetStringLiteralFromString(description);
100 //System.out.println("edge "+s.stateNumber+"-"+edge.label.toString()+"->"+edge.target.stateNumber);
104 EOTTarget = (DFAState)edge.target;
108 edge.target.stateNumber+" predicates alt "+
132 DFAState target = (DFAState)edge.target; local
134 target.getGatedPredicatesInNFAConfigurations();
136 //System.out.println("preds="+target.getGatedPredicatesInNFAConfigurations());
147 (DFAState)edge.target,
166 // Note: these predicates emanate from the EOT target stat
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Graph.java 101 Node target = (Node) it.next(); local
102 DFS(target, visited, sorted);
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRedirectHandler.java 128 HttpHost target = (HttpHost) context.getAttribute( local
130 if (target == null) {
131 throw new IllegalStateException("Target host not available " +
140 URI absoluteRequestURI = URIUtils.rewriteURI(requestURI, target, true);
160 HttpHost target = new HttpHost( local
164 redirectURI = URIUtils.rewriteURI(uri, target, true);
  /external/apache-http/src/org/apache/http/params/
BasicHttpParams.java 146 * @param target the parameters to which to copy
148 protected void copyParams(HttpParams target) {
156 target.setParameter((String)me.getKey(), me.getValue());
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
CountersTable.java 136 int target = numberElem.getTargetNode(support, node); local
138 if (DTM.NULL != target)
144 count = counter.getPreviouslyCounted(support, target);
160 for (; DTM.NULL != target;
161 target = numberElem.getPreviousNode(support, target))
165 // since the original target node was already checked in the
176 - 1) == target))
190 m_newFound.addElement(target);
  /external/bison/lib/
fcntl.c 155 F_DUPFD - duplicate FD, with int ARG being the minimum target fd.
160 target fd. If successful, return the duplicate, which will not be
180 int target = va_arg (arg, int); local
181 result = dupfd (fd, target, 0);
187 int target = va_arg (arg, int);
188 /* Detect invalid target; needed for cygwin 1.5.x. */
189 if (target < 0 || getdtablesize () <= target)
200 result = fcntl (fd, action, target);
219 int target = va_arg (arg, int) local
    [all...]
  /external/chromium/net/http/
http_auth_handler.h 31 // authentication scheme. |target| and |origin| are both stored
34 HttpAuth::Target target,
99 HttpAuth::Target target() const { function in class:net::HttpAuthHandler
169 // The {scheme, host, port} for the authentication target. Used by "ntlm"
178 HttpAuth::Target target_;
  /external/chromium_org/ash/drag_drop/
drag_drop_interactive_uitest.cc 146 views::Widget* target = local
151 EXPECT_EQ(root_windows[1], target->GetNativeView()->GetRootWindow());
161 target->Close();
  /external/chromium_org/ash/magnifier/
partial_magnification_controller.cc 81 aura::Window* target = static_cast<aura::Window*>(event->target()); local
82 aura::Window* current_root = target->GetRootWindow();
  /external/chromium_org/ash/wm/panels/
panel_window_resizer.cc 199 aura::Window* target = GetTarget(); local
200 aura::Window* target_root = target->GetRootWindow();
201 aura::Window* old_parent = target->parent();
203 target, target_root, target_root->GetBoundsInScreen());
204 wm::ReparentTransientChildrenOfChild(target, old_parent, target->parent());
217 aura::Window* target = GetTarget(); local
218 aura::Window* target_root = target->GetRootWindow();
219 aura::Window* old_parent = target->parent();
221 target, target_root, gfx::Rect(last_location_, gfx::Size()))
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_pixeltest_readback.cc 343 scoped_refptr<SolidColorLayer> target = CreateSolidColorLayer( local
345 background->AddChild(target);
349 target->AddChild(green);
353 target->AddChild(blue);
358 target.get(),
368 scoped_refptr<SolidColorLayer> target = CreateSolidColorLayer( local
370 background->AddChild(target);
374 target->AddChild(green);
378 target->AddChild(blue);
383 target.get()
393 scoped_refptr<SolidColorLayer> target = CreateSolidColorLayer( local
418 scoped_refptr<SolidColorLayer> target = CreateSolidColorLayer( local
443 scoped_refptr<SolidColorLayer> target = CreateSolidColorLayer( local
468 scoped_refptr<SolidColorLayer> target = CreateSolidColorLayer( local
    [all...]
  /external/chromium_org/chrome/renderer/
external_host_bindings.cc 41 std::string target; local
43 target = args[1].ToString();
44 if (target.compare("*") != 0) {
45 GURL resolved(target);
47 DLOG(WARNING) << "Unable to parse the specified target URL. " << target;
51 target = resolved.spec();
54 target = "*";
61 routing_id_, message, origin, target)));
66 const std::string& target) {
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_drag_dest_gtk.cc 134 // Add the delegate's requested target if applicable. Need to do this here
181 GdkAtom target = gtk_selection_data_get_target(data); local
183 // If the source can't provide us with valid data for a requested target,
185 if (target == ui::GetAtomForTarget(ui::TEXT_PLAIN)) {
193 } else if (target == ui::GetAtomForTarget(ui::TEXT_URI_LIST)) {
220 } else if (target == ui::GetAtomForTarget(ui::TEXT_HTML)) {
227 } else if (target == ui::GetAtomForTarget(ui::NETSCAPE_URL)) {
236 } else if (target == ui::GetAtomForTarget(ui::CHROME_NAMED_URL)) {
238 } else if (target == ui::GetAtomForTarget(ui::CUSTOM_DATA)) {
263 if (delegate() && target == delegate()->GetBookmarkTargetAtom())
    [all...]
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/
NestedSystemMessageHandler.java 88 targetFiled = messageClazz.getDeclaredField("target");
98 Handler target = null; local
100 target = (Handler) targetFiled.get(msg);
109 if (target == null) {
110 // No target is a magic identifier for the quit message.
113 target.dispatchMessage(msg);
  /external/chromium_org/gpu/command_buffer/service/
async_pixel_transfer_delegate.h 26 GLenum target; member in struct:gpu::AsyncTexImage2DParams
37 GLenum target; member in struct:gpu::AsyncTexSubImage2DParams
  /external/chromium_org/net/disk_cache/
block_files_unittest.cc 50 int target = i % kMaxSize; local
51 files.DeleteBlock(address[target], false);
52 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[target]));
  /external/chromium_org/net/http/
http_auth_handler.h 30 // authentication scheme. |target| and |origin| are both stored
33 HttpAuth::Target target,
99 HttpAuth::Target target() const { function in class:net::HttpAuthHandler
173 // The {scheme, host, port} for the authentication target. Used by "ntlm"
182 HttpAuth::Target target_;
  /external/chromium_org/sandbox/win/src/
policy_target_test.cc 238 base::win::ScopedProcessInformation target; local
250 target.Set(temp_process_info);
252 EXPECT_EQ(1, ::ResumeThread(target.thread_handle()));
254 EXPECT_EQ(WAIT_TIMEOUT, ::WaitForSingleObject(target.process_handle(), 2000));
256 EXPECT_NE(::GetThreadDesktop(target.thread_id()),
263 EXPECT_TRUE(::TerminateProcess(target.process_handle(), 0));
265 ::WaitForSingleObject(target.process_handle(), INFINITE);
301 base::win::ScopedProcessInformation target; local
313 target.Set(temp_process_info);
315 EXPECT_EQ(1, ::ResumeThread(target.thread_handle()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentTimeline.h 80 void addEventToDispatch(EventTarget* target, PassRefPtr<Event> event)
82 m_events.append(EventToDispatch(target, event));
101 EventToDispatch(EventTarget* target, PassRefPtr<Event> event)
102 : target(target)
106 RefPtr<EventTarget> target; member in struct:WebCore::DocumentTimeline::EventToDispatch
ElementAnimationTest.cpp 118 Element* target = animation->target(); local
119 EXPECT_EQ(*element.get(), *target);
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventContext.h 67 EventTarget* target() const { return m_target.get(); } function in class:WebCore::EventContext
96 inline bool EventContext::isUnreachableNode(EventTarget* target)
99 return target && target->toNode() && !target->toNode()->isSVGElement() && !target->toNode()->treeScope().isInclusiveAncestorOf(m_node->treeScope());
103 inline void EventContext::setTarget(PassRefPtr<EventTarget> target)
105 ASSERT(!isUnreachableNode(target.get()));
106 m_target = target;
  /external/chromium_org/third_party/WebKit/Source/core/html/ime/
InputMethodContext.cpp 69 HTMLElement* InputMethodContext::target() const function in class:WebCore::InputMethodContext

Completed in 363 milliseconds

1 2 3 4 5 6 7 8 91011>>