/external/python/cpython3/Lib/tkinter/ |
D | dnd.py | 1 """Drag-and-drop support for Tkinter. 6 I am trying to make this as generic as possible -- not dependent on 10 To enable an object to be dragged, you must create an event binding 11 for it that starts the drag-and-drop process. Typically, you should 13 should call Tkdnd.dnd_start(source, event), where 'source' is the 14 object to be dragged, and 'event' is the event that invoked the call 16 instantiation, the returned instance should not be stored -- it will 17 be kept alive automatically for the duration of the drag-and-drop. 19 When a drag-and-drop is already in process for the Tk interpreter, the 24 The object is *not* necessarily a widget -- it can be any [all …]
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tkdnd.py | 1 """Drag-and-drop support for Tkinter. 6 I am trying to make this as generic as possible -- not dependent on 10 To enable an object to be dragged, you must create an event binding 11 for it that starts the drag-and-drop process. Typically, you should 13 should call Tkdnd.dnd_start(source, event), where 'source' is the 14 object to be dragged, and 'event' is the event that invoked the call 16 instantiation, the returned instance should not be stored -- it will 17 be kept alive automatically for the duration of the drag-and-drop. 19 When a drag-and-drop is already in process for the Tk interpreter, the 24 The object is *not* necessarily a widget -- it can be any [all …]
|
/external/autotest/tko/ |
D | db.py | 2 # Use of this source code is governed by a BSD-style license that can be 9 # even in environments where MyQSLdb is unavailable. Thus, we 13 class UtterlyFakeDb(object): 15 OperationalError = object() 66 class db_sql(object): 99 If they do not exist, they un-prefixed settings will be used. 130 # Using fallback to non-global in order to work without configuration 131 # overhead on non-shard instances. 194 This will re-connect to the database, so it is NOT safe 214 elapsed_time = stop_time - start_time [all …]
|
/external/v8/src/snapshot/ |
D | deserializer.cc | 2 // Use of this source code is governed by a BSD-style license that can be 7 #include "src/assembler-inl.h" 8 #include "src/heap/heap-write-barrier-inl.h" 10 #include "src/objects/api-callbacks.h" 11 #include "src/objects/hash-table.h" 12 #include "src/objects/js-array-buffer-inl.h" 13 #include "src/objects/js-array-inl.h" 14 #include "src/objects/maybe-object.h" 16 #include "src/snapshot/builtin-deserializer-allocator.h" 29 external_reference_table_ = isolate->heap()->external_reference_table(); in Initialize() [all …]
|
/external/python/cpython2/Doc/library/ |
D | nntplib.rst | 2 :mod:`nntplib` --- NNTP protocol client 15 -------------- 29 >>> resp, subs = s.xhdr('subject', first + '-' + last) 30 >>> for id, sub in subs[-10:]: print id, sub 33 1063 Re: [python-committers] (Windows) buildbots on 3.x 69 call reader-specific commands, such as ``group``. If you get unexpected 92 Exception raised when an error code in the range 400--499 is received. For 99 Exception raised when an error code in the range 500--599 is received. For 107 with a digit in the range 1--5. For backwards compatibility, the exception 117 .. _nntp-objects: [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | XPathException.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 19 * $Id: XPathException.java 468655 2006-10-28 07:12:06Z minchau $ 28 * This class implements an exception object that all 33 * of this object. 42 Object m_styleNode = null; 45 * Get the stylesheet node from where this error originated. 46 * @return The stylesheet node from where this error originated, or null. 48 public Object getStylesheetNode() in getStylesheetNode() 54 * Set the stylesheet node from where this error originated. 55 * @param styleNode The stylesheet node from where this error originated, or null. [all …]
|
/external/selinux/libselinux/man/man5/ |
D | selabel_db.5 | 1 .\" Hey Emacs! This file is -*- nroff -*- source. 6 selabel_db \- userspace SELinux labeling interface and configuration file format for the RDBMS obje… 25 The DB contexts backend maps from a pair of object name and class into security contexts. It is use… 47 argument specifies the name of a schema object, such as "postgres.public". 52 argument specifies the name of a table object, such as "postgres.public.my_table" 57 argument specifies the name of a column object, such as "postgres.public.my_table.user_id" 62 …object which contains the tuples to be relabeled, such as "postgresql.public.my_table". Note that … 67 argument specifies the name of a procedure object, such as "postgres.public.my_func". Note that we … 72 argument specifies the name of a sequence object, such as "postgres.public.my_seq". 77 argument specifies the name of a large object, such as "postgres.16308". [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | BreakIterator.java | 6 * Copyright (C) 1996-2016, International Business Machines Corporation and * 28 * objects that break up a piece of natural-language text according to a set 33 * We provide five built-in types of BreakIterator: 37 * between sentences. This is useful for triple-click selection, for example. 39 * words. This is useful for double-click selection or "find whole words" searches. 43 * <li>getLineInstance() returns a BreakIterator that locates positions where it is 47 * can force a position to be considered a line-break position or prevent a position 48 * from being a line-break position. 68 * <li>The current position of the iterator is always a boundary position (random- 84 * it possible to use BreakIterator to analyze text in any text-storage vehicle that [all …]
|
/external/python/cpython3/Doc/library/ |
D | nntplib.rst | 1 :mod:`nntplib` --- NNTP protocol client 13 -------------- 27 >>> resp, overviews = s.over((last - 9, last)) 59 Return a new :class:`NNTP` object, representing a connection 69 reader-specific commands, such as ``group``. If you get unexpected 91 Return a new :class:`NNTP_SSL` object, representing an encrypted 95 *ssl_context* is also optional, and is a :class:`~ssl.SSLContext` object. 96 Please read :ref:`ssl-security` for best practices. 99 Note that SSL-on-563 is discouraged per :rfc:`4642`, in favor of 118 The response of the server if available, as a :class:`str` object. [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | plusDomains_v1.activities.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | plus_v1.activities.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | compute_alpha.projects.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | compute_v1.projects.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | compute_beta.projects.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
D | DTMException.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 19 * $Id: DTMException.java 468653 2006-10-28 07:07:05Z minchau $ 38 static final long serialVersionUID = -775576419181334734L; 40 /** Field locator specifies where the error occured. 46 * object that specifies where an error occured. 48 * @return A SourceLocator object, or null if none was specified. 56 * object that specifies where an error occured. 58 * @param location A SourceLocator object, or null to clear the location. 71 * @return An Throwable object, or null. 122 …MLMessage(XMLErrorResources.ER_SELF_CAUSATION_NOT_PERMITTED, null)); //"Self-causation not permitt… in initCause() [all …]
|
/external/libchrome/base/memory/ |
D | ref_counted_memory.h | 2 // Use of this source code is governed by a BSD-style license that can be 24 // A generic interface to memory. This object is reference counted because most 51 // An implementation of RefCountedMemory, where the ref counting does not 73 // An implementation of RefCountedMemory, where the data is stored in a STL 79 // Constructs a RefCountedBytes object by copying from |initializer|. 82 // Constructs a RefCountedBytes object by copying |size| bytes from |p|. 85 // Constructs a RefCountedBytes object by zero-initializing a new vector of 89 // Constructs a RefCountedBytes object by performing a swap. (To non 102 // Non-const versions of front() and front_as() that are simply shorthand for 118 // An implementation of RefCountedMemory, where the bytes are stored in a STL [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | BreakIterator.java | 5 * Copyright (C) 1996-2016, International Business Machines Corporation and * 27 * objects that break up a piece of natural-language text according to a set 32 * We provide five built-in types of BreakIterator: 36 * between sentences. This is useful for triple-click selection, for example. 38 * words. This is useful for double-click selection or "find whole words" searches. 42 * <li>getLineInstance() returns a BreakIterator that locates positions where it is 46 * can force a position to be considered a line-break position or prevent a position 47 * from being a line-break position. 67 * <li>The current position of the iterator is always a boundary position (random- 83 * it possible to use BreakIterator to analyze text in any text-storage vehicle that [all …]
|
/external/jdiff/src/jdiff/ |
D | JDiff.java | 23 * Doclet-mandated start method. Everything begins here. 25 * @param root a RootDoc object passed by Javadoc 38 * @param root the RootDoc object passed by Javadoc 44 // Open the file where the XML representing the API will be stored. in startGeneration() 82 // Read the file where the XML representing the old API is stored in startGeneration() 83 // and create an API object for it. in startGeneration() 88 // Read the file where the XML representing the new API is stored in startGeneration() 89 // and create an API object for it. in startGeneration() 99 // Read the file where the XML for comments about the changes between in startGeneration() 100 // the old API and new API is stored and create a Comments object for in startGeneration() [all …]
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | Calls.cs | 9 // http://www.apache.org/licenses/LICENSE-2.0 27 /// making calls using client object generated from protocol 41 where TRequest : class 42 where TResponse : class 51 /// <returns>An awaitable call object providing access to the response.</returns> 57 where TRequest : class 58 where TResponse : class 69 /// <returns>A call object providing access to the asynchronous response stream.</returns> 75 where TRequest : class 76 where TResponse : class [all …]
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
D | BinaryCodec.java | 2 * Copyright 2001-2004 The Apache Software Foundation. 8 * http://www.apache.org/licenses/LICENSE-2.0 36 …* Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.h… 42 …* tried to avoid using ArrayUtils to minimize dependencies while using these empty arrays - dep is… 97 * @see org.apache.commons.codec.Encoder#encode(java.lang.Object) 99 public Object encode(Object raw) throws EncoderException { in encode() 107 * Decodes a byte array where each byte represents an ascii '0' or '1'. 111 … * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument 114 * @see org.apache.commons.codec.Decoder#decode(java.lang.Object) 116 public Object decode(Object ascii) throws DecoderException { in decode() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_isinstance.py | 13 # 2.2.1 where the exception wasn't caught but it also wasn't being cleared 15 # isinstance(inst, cls) where: 17 # - cls isn't a type, or a tuple 18 # - cls has a __bases__ attribute 19 # - inst has a __class__ attribute 20 # - inst.__class__ as no __bases__ attribute 22 # Sounds complicated, I know, but this mimics a situation where an 26 class I(object): 28 # This must return an object that has no __bases__ attribute 32 class C(object): [all …]
|
/external/autotest/frontend/afe/ |
D | model_logic.py | 11 import django.db.models.sql.where 19 Data validation error in adding or updating an object. The associated 84 class _WhereClause(object): 85 """Object allowing us to inject arbitrary SQL into Django queries. 87 By using this instead of extra(where=...), we can still freely combine 122 LEFT OUTER JOIN and an appropriate WHERE condition) 123 @param force_left_join - if true, a LEFT OUTER JOIN will be used 150 query_set = query_set.extra(where=[full_join_key + ' IS NULL']) 167 rhs_where = join_to_query.query.where 172 # query returns at most one record. For it to be used in WHERE clause, [all …]
|
/external/webrtc/webrtc/base/ |
D | bind_unittest.cc | 4 * Use of this source code is governed by a BSD-style license 37 void RefArgument(const scoped_refptr<LifeTimeCheck>& object) { in RefArgument() 38 EXPECT_TRUE(object.get() != nullptr); in RefArgument() 61 void Release() { --ref_count_; } in Release() 67 int Negate(int a) { return -a; } in Negate() 120 MethodBindTester object = {0}; in TEST() local 121 EXPECT_EQ(0, object.call_count); in TEST() 122 Bind(&MethodBindTester::NullaryVoid, &object)(); in TEST() 123 EXPECT_EQ(1, object.call_count); in TEST() 124 EXPECT_EQ(1, Bind(&MethodBindTester::NullaryInt, &object)()); in TEST() [all …]
|
/external/grpc-grpc/src/core/tsi/ |
D | ssl_transport_security.h | 9 * http://www.apache.org/licenses/LICENSE-2.0 39 /* --- tsi_ssl_root_certs_store object --- 41 This object stores SSL root certificates. It can be shared by multiple SSL 45 /* Given a NULL-terminated string containing the PEM encoding of the root 46 certificates, creates a tsi_ssl_root_certs_store object. */ 50 /* Destroys the tsi_ssl_root_certs_store object. */ 53 /* --- tsi_ssl_session_cache object --- 68 /* --- tsi_ssl_client_handshaker_factory object --- 70 This object creates a client tsi_handshaker objects implemented in terms of 76 /* Object that holds a private key / certificate chain pair in PEM format. */ [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_isinstance.py | 14 # 2.2.1 where the exception wasn't caught but it also wasn't being cleared 16 # isinstance(inst, cls) where: 18 # - inst isn't an InstanceType 19 # - cls isn't a ClassType, a TypeType, or a TupleType 20 # - cls has a __bases__ attribute 21 # - inst has a __class__ attribute 22 # - inst.__class__ as no __bases__ attribute 24 # Sounds complicated, I know, but this mimics a situation where an 28 class I(object): 30 # This must return an object that has no __bases__ attribute [all …]
|