HomeSort by relevance Sort by last modified time
    Searched refs:Immutable (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/css/
WebKitCSSMatrix.idl 62 [Immutable] WebKitCSSMatrix multiply([Default=Undefined] optional WebKitCSSMatrix secondMatrix);
65 [Immutable, RaisesException] WebKitCSSMatrix inverse();
69 [Immutable] WebKitCSSMatrix translate([Default=Undefined] optional double x,
76 [Immutable] WebKitCSSMatrix scale([Default=Undefined] optional double scaleX,
83 [Immutable] WebKitCSSMatrix rotate([Default=Undefined] optional double rotX,
90 [Immutable] WebKitCSSMatrix rotateAxisAngle([Default=Undefined] optional double x,
97 [Immutable] WebKitCSSMatrix skewX([Default=Undefined] optional double angle);
101 [Immutable] WebKitCSSMatrix skewY([Default=Undefined] optional double angle);
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlToken.java 31 import javax.annotation.concurrent.Immutable;
33 @Immutable
AttributePolicy.java 37 import javax.annotation.concurrent.Immutable;
110 @Immutable
ElementPolicy.java 34 import javax.annotation.concurrent.Immutable;
119 @Immutable
ElementAndAttributePolicies.java 34 import javax.annotation.concurrent.Immutable;
41 @Immutable
  /external/chromium_org/sync/internal_api/public/util/
immutable_unittest.cc 5 #include "sync/internal_api/public/util/immutable.h"
125 Immutable<int> ix(&x);
132 Immutable<int> ix = Immutable<int>(&x);
139 Immutable<int> ix;
141 ix = Immutable<int>(&x);
148 Immutable<int> ix = MakeImmutable(&x);
168 RunTokenTest<Token, Immutable<Token> >("Token", true /* expect_copies */);
172 RunTokenTest<Token, Immutable<Token, HasSwapMemFnByRef<Token> > >(
177 RunTokenTest<Token, Immutable<Token, HasSwapMemFnByPtr<Token> > >
    [all...]
immutable.h 5 // Immutable<T> provides an easy, cheap, and thread-safe way to pass
6 // large immutable data around.
26 // undesirable. Here's the above code re-written using Immutable<T>:
28 // void ProcessStuff(const Immutable<LargeObjectList>& stuff) {
48 // NOTE: By default, Immutable<T> relies on ADL
54 // for discussion) Immutable<T> should be able to find it.
60 // NOTE: Some complexity is necessary in order to use Immutable<T>
76 // This class is part of the Immutable implementation. DO NOT USE
124 // Immutable<T> with a forward-declared type (important for protobuf
134 // #include ".../immutable.h
    [all...]
  /external/chromium_org/sync/js/
js_event_details.h 14 #include "sync/internal_api/public/util/immutable.h"
18 // A thin wrapper around Immutable<DictionaryValue>. Used for passing
37 typedef Immutable<base::DictionaryValue,
  /external/jsr305/ri/src/main/java/javax/annotation/concurrent/
Immutable.java 17 * Immutable
19 * The class to which this annotation is applied is immutable. This means that
22 * to other immutable objects, and that methods do not publish references to any
24 * Immutable objects may still have internal mutable state for purposes of
26 * long as they are computed from immutable state and that callers cannot tell
29 * Immutable objects are inherently thread-safe; they may be passed between
35 public @interface Immutable {
  /external/owasp/sanitizer/tools/findbugs/lib/
jcip-annotations.jar 
  /frameworks/base/core/java/com/android/internal/annotations/
Immutable.java 25 * Annotation type used to mark a class which is immutable.
29 public @interface Immutable {
  /frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
MediaPlayerDataSource.java 25 import javax.annotation.concurrent.Immutable;
35 @Immutable
EngineParameters.java 21 import javax.annotation.concurrent.Immutable;
30 @Immutable
  /external/chromium_org/printing/
printed_document.h 29 // A collection of rendered pages. The settings are immutable. If the print
98 // Getters. All these items are immutable hence thread-safe.
153 // Contains all the immutable stuff. All this stuff can be accessed without
156 struct Immutable {
157 Immutable(const PrintSettings& settings,
161 ~Immutable();
163 // Print settings used to generate this document. Immutable.
166 // Document name. Immutable.
188 // All the immutable members.
189 const Immutable immutable_
    [all...]
printed_document.cc 271 PrintedDocument::Immutable::Immutable(const PrintSettings& settings,
281 PrintedDocument::Immutable::~Immutable() {
  /external/chromium_org/sync/syncable/
write_transaction_info.h 35 Immutable<WriteTransactionInfo>
  /external/chromium_org/sync/internal_api/public/
change_record.h 13 #include "sync/internal_api/public/util/immutable.h"
64 typedef Immutable<ChangeRecordList> ImmutableChangeRecordList;
  /external/chromium_org/sync/api/attachments/
attachment_id.h 13 #include "sync/internal_api/public/util/immutable.h"
48 // in immutable.h.
59 typedef Immutable<sync_pb::AttachmentIdProto,
  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableTable.java 26 import javax.annotation.concurrent.Immutable;
34 @Immutable
RegularImmutableMap.java 26 import javax.annotation.concurrent.Immutable;
66 // prepend, not append, so the entries can be immutable
109 @Immutable
129 @Immutable
  /external/chromium_org/sync/api/
sync_data.h 21 #include "sync/internal_api/public/util/immutable.h"
35 // A light-weight container for immutable sync data. Pass-by-value and storage
112 // comments in immutable.h.
127 typedef Immutable<sync_pb::SyncEntity, ImmutableSyncEntityTraits>
139 Immutable<AttachmentList> attachments_;
  /external/chromium_org/third_party/WebKit/Source/bindings/
IDLExtendedAttributes.txt 61 Immutable
  /packages/apps/Dialer/src/com/android/dialer/util/
ExpirableCache.java 25 import javax.annotation.concurrent.Immutable;
111 @Immutable
  /packages/apps/Settings/src/com/android/settings/location/
InjectedSetting.java 22 import com.android.internal.annotations.Immutable;
30 @Immutable
  /external/guava/guava/src/com/google/common/net/
HostAndPort.java 29 import javax.annotation.concurrent.Immutable;
32 * An immutable representation of a host and port.
62 @Beta @Immutable

Completed in 643 milliseconds

1 2 3 4