HomeSort by relevance Sort by last modified time
    Searched refs:from (Results 226 - 250 of 10411) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/cc/animation/
transform_operation.cc 25 static bool ShareSameAxis(const TransformOperation* from,
31 if (IsOperationIdentity(from) && IsOperationIdentity(to))
34 if (IsOperationIdentity(from) && !IsOperationIdentity(to)) {
42 if (!IsOperationIdentity(from) && IsOperationIdentity(to)) {
43 *axis_x = from->rotate.axis.x;
44 *axis_y = from->rotate.axis.y;
45 *axis_z = from->rotate.axis.z;
46 *angle_from = from->rotate.angle;
50 double length_2 = from->rotate.axis.x * from->rotate.axis.x
    [all...]
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java 105 public IApiDelta compare(IApi from, IApi to) {
106 assert from.getVisibility() == to.getVisibility();
108 Set<IPackage> fromPackages = from.getPackages();
113 public IPackageDelta createChangedDelta(IPackage from,
115 return comparePackage(from, to);
118 public IPackageDelta createAddRemoveDelta(IPackage from,
120 return new SigPackageDelta(from, to);
123 public boolean considerEqualElement(IPackage from,
125 return from.getName().equals(to.getName());
131 delta = new SigApiDelta(from, to)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
LineEnding.cpp 16 * contributors may be used to endorse or promote products derived from
97 void internalNormalizeLineEndingsToCRLF(const CString& from, OutputBuffer& buffer)
101 const char* p = from.data();
117 if (newLen < from.length())
120 if (newLen == from.length()) {
121 buffer.copy(from);
125 p = from.data();
152 void normalizeToCROrLF(const CString& from, Vector<char>& result, bool toCR);
155 void normalizeToCROrLF(const CString& from, Vector<char>& result, bool toCR)
160 const char* p = from.data()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportdescription.h 14 * derived from this software without specific prior written permission.
102 TransportDescription(const TransportDescription& from)
103 : transport_type(from.transport_type),
104 transport_options(from.transport_options),
105 ice_ufrag(from.ice_ufrag),
106 ice_pwd(from.ice_pwd),
107 ice_mode(from.ice_mode),
108 identity_fingerprint(CopyFingerprint(from.identity_fingerprint.get())),
109 candidates(from.candidates) {}
111 TransportDescription& operator=(const TransportDescription& from) {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
FromParser.java 27 import gov.nist.javax.sip.header.From;
32 /** From header parser.
43 public FromParser(String from) {
44 super(from);
53 From from = new From(); local
55 this.lexer.match(TokenTypes.FROM);
59 super.parse(from);
61 return from;
    [all...]
  /external/chromium_org/content/shell/common/
webkit_test_helpers.cc 18 const WebTestRunner::WebPreferences& from,
21 from.allowUniversalAccessFromFileURLs;
22 to->dom_paste_enabled = from.DOMPasteAllowed;
23 to->javascript_can_access_clipboard = from.javaScriptCanAccessClipboard;
24 to->xss_auditor_enabled = from.XSSAuditorEnabled;
26 from.editingBehavior);
27 to->default_font_size = from.defaultFontSize;
28 to->minimum_font_size = from.minimumFontSize;
29 to->default_encoding = from.defaultTextEncodingName.utf8().data();
30 to->javascript_enabled = from.javaScriptEnabled
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
InterpolatedTransformOperation.cpp 15 * contributors may be used to endorse or promote products derived from
43 return progress == t->progress && from == t->from && to == t->to;
50 from.apply(borderBoxSize, fromTransform);
58 PassRefPtr<TransformOperation> InterpolatedTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
60 if (from && !from->isSameType(*this))
69 fromOperations.operations().append(const_cast<TransformOperation*>(from));
InterpolatedTransformOperation.h 15 * contributors may be used to endorse or promote products derived from
42 static PassRefPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperations& to, double progress)
44 return adoptRef(new InterpolatedTransformOperation(from, to, progress));
56 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
58 InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress)
59 : from(from)
64 const TransformOperations from; member in class:WebCore::InterpolatedTransformOperation
  /external/chromium_org/third_party/jinja2/
__init__.py 33 from jinja2.environment import Environment, Template
36 from jinja2.loaders import BaseLoader, FileSystemLoader, PackageLoader, \
41 from jinja2.bccache import BytecodeCache, FileSystemBytecodeCache, \
45 from jinja2.runtime import Undefined, DebugUndefined, StrictUndefined
48 from jinja2.exceptions import TemplateError, UndefinedError, \
53 from jinja2.filters import environmentfilter, contextfilter, \
55 from jinja2.utils import Markup, escape, clear_caches, \
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
checkout_unittest.py 14 # contributors may be used to endorse or promote products derived from
35 from .checkout import Checkout
36 from .scm import SCMDetector
37 from .scm.scm_mock import MockSCM
38 from webkitpy.common.webkit_finder import WebKitFinder
39 from webkitpy.common.system.executive import Executive, ScriptError
40 from webkitpy.common.system.filesystem import FileSystem # FIXME: This should not be needed.
41 from webkitpy.common.system.filesystem_mock import MockFileSystem
42 from webkitpy.common.system.executive_mock import MockExecutive
43 from webkitpy.common.system.outputcapture import OutputCaptur
    [all...]
  /external/mockito/src/org/mockito/internal/util/reflection/
LenientCopyTool.java 15 public <T> void copyToMock(T from, T mock) {
16 copy(from, mock, from.getClass(), mock.getClass().getSuperclass());
19 public <T> void copyToRealObject(T from, T to) {
20 copy(from, to, from.getClass(), to.getClass());
23 private <T> void copy(T from, T to, Class fromClazz, Class toClass) {
25 copyValues(from, to, fromClazz);
30 private <T> void copyValues(T from, T mock, Class classFrom) {
42 fieldCopier.copyValue(from, mock, field);
    [all...]
  /dalvik/vm/mterp/mips/
OP_LONG_TO_INT.S 2 GET_OPB(a1) # a1 <- B from 15:12
3 GET_OPA4(a0) # a0 <- A from 11:8
9 GET_INST_OPCODE(t0) # t0 <- opcode from rINST
OP_MOVE.S 4 GET_OPB(a1) # a1 <- B from 15:12
5 GET_OPA4(a0) # a0 <- A from 11:8
8 GET_INST_OPCODE(t0) # t0 <- opcode from rINST
  /external/chromium_org/chrome/common/extensions/docs/server2/
test_servlet_test.py 8 from empty_dir_file_system import EmptyDirFileSystem
9 from host_file_system_creator import HostFileSystemCreator
10 from servlet import Request
11 from test_branch_utility import TestBranchUtility
12 from fail_on_access_file_system import FailOnAccessFileSystem
13 from test_servlet import TestServlet
local_renderer.py 8 from render_servlet import RenderServlet
9 from server_instance import ServerInstance
10 from servlet import Request
17 '''Renders pages fetched from the local file system.
  /external/valgrind/main/none/tests/
fdleak_dup.stderr.exp 11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
fdleak_dup2.stderr.exp 14 <inherited from parent>
17 <inherited from parent>
20 <inherited from parent>
fdleak_fcntl.stderr.exp 11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
fdleak_open.stderr.exp 8 <inherited from parent>
11 <inherited from parent>
14 <inherited from parent>
fdleak_pipe.stderr.exp 11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
fdleak_socketpair.stderr.exp 11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
SocketConnect.java 13 private InputStream from; field in class:SocketConnect
16 public SocketConnect(Socket from, Socket to) throws IOException {
17 this.from = from.getInputStream();
28 int r = from.read(buffer);
34 from.close();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
char_in.pass.cpp 15 // 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());
char_out.pass.cpp 15 // 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/chromium_org/third_party/WebKit/Tools/TestResultServer/
main.py 14 # contributors may be used to endorse or promote products derived from
31 from handlers import buildershandler
32 from handlers import menu
33 from handlers import testfilehandler

Completed in 514 milliseconds

1 2 3 4 5 6 7 8 91011>>