OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Immutable
(Results
1 - 25
of
53
) sorted by null
1
2
3
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGMatrix.idl
37
[
Immutable
, StrictTypeChecking] SVGMatrix translate(float x, float y);
38
[
Immutable
, StrictTypeChecking] SVGMatrix scale(float scaleFactor);
39
[
Immutable
, StrictTypeChecking] SVGMatrix scaleNonUniform(float scaleFactorX, float scaleFactorY);
40
[
Immutable
, StrictTypeChecking] SVGMatrix rotate(float angle);
42
[
Immutable
] SVGMatrix flipX();
43
[
Immutable
] SVGMatrix flipY();
44
[
Immutable
, StrictTypeChecking] SVGMatrix skewX(float angle);
45
[
Immutable
, StrictTypeChecking] SVGMatrix skewY(float angle);
SVGZoomEvent.idl
29
[
Immutable
] readonly attribute SVGPoint previousTranslate;
31
[
Immutable
] readonly attribute SVGPoint newTranslate;
/external/chromium_org/third_party/WebKit/Source/core/css/
WebKitCSSMatrix.idl
61
[
Immutable
] WebKitCSSMatrix multiply([Default=Undefined] optional WebKitCSSMatrix secondMatrix);
64
[
Immutable
, RaisesException] WebKitCSSMatrix inverse();
68
[
Immutable
] WebKitCSSMatrix translate([Default=Undefined] optional double x,
75
[
Immutable
] WebKitCSSMatrix scale([Default=Undefined] optional double scaleX,
82
[
Immutable
] WebKitCSSMatrix rotate([Default=Undefined] optional double rotX,
89
[
Immutable
] WebKitCSSMatrix rotateAxisAngle([Default=Undefined] optional double x,
96
[
Immutable
] WebKitCSSMatrix skewX([Default=Undefined] optional double angle);
100
[
Immutable
] WebKitCSSMatrix skewY([Default=Undefined] optional double angle);
/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_arg_list.h
14
#include "sync/internal_api/public/util/
immutable
.h"
18
// A thin wrapper around
Immutable
<ListValue>. Used for passing
37
typedef
Immutable
<base::ListValue, HasSwapMemFnByPtr<base::ListValue> >
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
{
/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
28
// A collection of rendered pages. The settings are
immutable
. If the print
91
// Getters. All these items are
immutable
hence thread-safe.
137
// Contains all the
immutable
stuff. All this stuff can be accessed without
140
struct
Immutable
{
141
Immutable
(const PrintSettings& settings, PrintedPagesSource* source,
143
~
Immutable
();
145
// Print settings used to generate this document.
Immutable
.
151
// Document name.
Immutable
.
172
// All the
immutable
members.
173
const
Immutable
immutable_
[
all
...]
printed_document.cc
218
PrintedDocument::
Immutable
::
Immutable
(const PrintSettings& settings,
227
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/third_party/WebKit/Source/bindings/tests/idls/
TestTypedefs.idl
39
[
Immutable
] attribute SCRIPT_VALUE immutableSerializedScriptValue;
51
[
Immutable
] SVGPOINT immutablePointFunction();
/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/third_party/WebKit/Source/bindings/
IDLExtendedAttributes.txt
62
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/chromium_org/sync/api/
sync_data.h
16
#include "sync/internal_api/public/util/
immutable
.h"
25
// A light-weight container for
immutable
sync data. Pass-by-value and storage
94
// comments in
immutable
.h.
109
typedef
Immutable
<sync_pb::SyncEntity, ImmutableSyncEntityTraits>
/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
/prebuilts/tools/common/m2/internal/com/google/code/findbugs/jsr305/2.0.1/
jsr305-2.0.1.jar
/external/chromium_org/third_party/mesa/src/src/mesa/main/
texstorage.c
197
texObj->
Immutable
= GL_TRUE;
341
/* Check if texObj->
Immutable
is set */
342
if (texObj->
Immutable
) {
343
_mesa_error(ctx, GL_INVALID_OPERATION, "glTexStorage%uD(
immutable
)",
Completed in 345 milliseconds
1
2
3