OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:common
(Results
351 - 375
of
25957
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListLastIndexOfTester.java
17
package com.google.
common
.collect.testing.testers;
19
import static com.google.
common
.collect.testing.features.CollectionFeature.REJECTS_DUPLICATES_AT_CREATION;
20
import static com.google.
common
.collect.testing.features.CollectionSize.ONE;
21
import static com.google.
common
.collect.testing.features.CollectionSize.ZERO;
23
import com.google.
common
.collect.testing.features.CollectionFeature;
24
import com.google.
common
.collect.testing.features.CollectionSize;
29
* {@link com.google.
common
.collect.testing.ListTestSuiteBuilder}.
MapClearTester.java
17
package com.google.
common
.collect.testing.testers;
19
import static com.google.
common
.collect.testing.features.CollectionSize.ZERO;
20
import static com.google.
common
.collect.testing.features.MapFeature.SUPPORTS_CLEAR;
22
import com.google.
common
.collect.testing.AbstractMapTester;
23
import com.google.
common
.collect.testing.features.CollectionSize;
24
import com.google.
common
.collect.testing.features.MapFeature;
29
* {@link com.google.
common
.collect.testing.MapTestSuiteBuilder}.
ListListIteratorTester.java
17
package com.google.
common
.collect.testing.testers;
19
import static com.google.
common
.collect.testing.IteratorFeature.MODIFIABLE;
20
import static com.google.
common
.collect.testing.IteratorFeature.UNMODIFIABLE;
21
import static com.google.
common
.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE;
22
import static com.google.
common
.collect.testing.features.ListFeature.SUPPORTS_ADD_WITH_INDEX;
23
import static com.google.
common
.collect.testing.features.ListFeature.SUPPORTS_SET;
24
import static com.google.
common
.collect.testing.testers.Platform.listListIteratorTesterNumIterations;
27
import com.google.
common
.collect.testing.Helpers;
28
import com.google.
common
.collect.testing.IteratorFeature;
29
import com.google.
common
.collect.testing.ListIteratorTester
[
all
...]
CollectionContainsTester.java
17
package com.google.
common
.collect.testing.testers;
19
import static com.google.
common
.collect.testing.features.CollectionFeature.ALLOWS_NULL_QUERIES;
20
import static com.google.
common
.collect.testing.features.CollectionFeature.ALLOWS_NULL_VALUES;
21
import static com.google.
common
.collect.testing.features.CollectionSize.ZERO;
23
import com.google.
common
.collect.testing.AbstractCollectionTester;
24
import com.google.
common
.collect.testing.WrongType;
25
import com.google.
common
.collect.testing.features.CollectionFeature;
26
import com.google.
common
.collect.testing.features.CollectionSize;
31
* {@link com.google.
common
.collect.testing.CollectionTestSuiteBuilder}.
ListRetainAllTester.java
17
package com.google.
common
.collect.testing.testers;
19
import static com.google.
common
.collect.testing.features.CollectionFeature.SUPPORTS_RETAIN_ALL;
20
import static com.google.
common
.collect.testing.features.CollectionSize.ONE;
21
import static com.google.
common
.collect.testing.features.CollectionSize.SEVERAL;
22
import static com.google.
common
.collect.testing.features.CollectionSize.ZERO;
24
import com.google.
common
.collect.testing.MinimalCollection;
25
import com.google.
common
.collect.testing.features.CollectionFeature;
26
import com.google.
common
.collect.testing.features.CollectionSize;
31
* {@link com.google.
common
.collect.testing.ListTestSuiteBuilder}.
MapContainsKeyTester.java
17
package com.google.
common
.collect.testing.testers;
19
import static com.google.
common
.collect.testing.features.CollectionSize.ZERO;
20
import static com.google.
common
.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
21
import static com.google.
common
.collect.testing.features.MapFeature.ALLOWS_NULL_QUERIES;
23
import com.google.
common
.collect.testing.AbstractMapTester;
24
import com.google.
common
.collect.testing.WrongType;
25
import com.google.
common
.collect.testing.features.CollectionSize;
26
import com.google.
common
.collect.testing.features.MapFeature;
31
* {@link com.google.
common
.collect.testing.MapTestSuiteBuilder}.
QueuePollTester.java
17
package com.google.
common
.collect.testing.testers;
19
import static com.google.
common
.collect.testing.features.CollectionFeature.KNOWN_ORDER;
20
import static com.google.
common
.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE;
21
import static com.google.
common
.collect.testing.features.CollectionSize.ONE;
22
import static com.google.
common
.collect.testing.features.CollectionSize.SEVERAL;
23
import static com.google.
common
.collect.testing.features.CollectionSize.ZERO;
25
import com.google.
common
.collect.testing.features.CollectionFeature;
26
import com.google.
common
.collect.testing.features.CollectionSize;
31
* {@link com.google.
common
.collect.testing.CollectionTestSuiteBuilder}.
QueueRemoveTester.java
17
package com.google.
common
.collect.testing.testers;
19
import static com.google.
common
.collect.testing.features.CollectionFeature.KNOWN_ORDER;
20
import static com.google.
common
.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE;
21
import static com.google.
common
.collect.testing.features.CollectionSize.ONE;
22
import static com.google.
common
.collect.testing.features.CollectionSize.SEVERAL;
23
import static com.google.
common
.collect.testing.features.CollectionSize.ZERO;
25
import com.google.
common
.collect.testing.features.CollectionFeature;
26
import com.google.
common
.collect.testing.features.CollectionSize;
33
* {@link com.google.
common
.collect.testing.CollectionTestSuiteBuilder}.
CollectionIsEmptyTester.java
17
package com.google.
common
.collect.testing.testers;
19
import static com.google.
common
.collect.testing.features.CollectionSize.ZERO;
21
import com.google.
common
.collect.testing.AbstractCollectionTester;
22
import com.google.
common
.collect.testing.features.CollectionSize;
27
* {@link com.google.
common
.collect.testing.CollectionTestSuiteBuilder}.
MapIsEmptyTester.java
17
package com.google.
common
.collect.testing.testers;
19
import static com.google.
common
.collect.testing.features.CollectionSize.ZERO;
21
import com.google.
common
.collect.testing.AbstractMapTester;
22
import com.google.
common
.collect.testing.features.CollectionSize;
27
* {@link com.google.
common
.collect.testing.MapTestSuiteBuilder}.
/external/guava/guava-tests/test/com/google/common/collect/
TransformedImmutableListTest.java
17
package com.google.
common
.collect;
19
import com.google.
common
.annotations.GwtCompatible;
20
import com.google.
common
.annotations.GwtIncompatible;
21
import com.google.
common
.collect.testing.ListTestSuiteBuilder;
22
import com.google.
common
.collect.testing.TestStringListGenerator;
23
import com.google.
common
.collect.testing.features.CollectionFeature;
24
import com.google.
common
.collect.testing.features.CollectionSize;
/external/libvpx/libvpx/vp8/decoder/
onyxd_if.c
12
#include "vp8/
common
/onyxc_int.h"
14
#include "vp8/
common
/postproc.h"
16
#include "vp8/
common
/onyxd.h"
19
#include "vp8/
common
/alloccommon.h"
20
#include "vp8/
common
/loopfilter.h"
21
#include "vp8/
common
/swapyv12buffer.h"
22
#include "vp8/
common
/threading.h"
27
#include "vp8/
common
/quant_common.h"
30
#include "vp8/
common
/systemdependent.h"
50
vp8_remove_common(&pbi->
common
);
[
all
...]
/prebuilts/devtools/tools/lib/
layoutlib-api.jar
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
AdapterViewRule.java
16
package com.android.ide.
common
.layout;
20
import com.android.ide.
common
.api.DrawingStyle;
21
import com.android.ide.
common
.api.DropFeedback;
22
import com.android.ide.
common
.api.IDragElement;
23
import com.android.ide.
common
.api.IFeedbackPainter;
24
import com.android.ide.
common
.api.IGraphics;
25
import com.android.ide.
common
.api.INode;
26
import com.android.ide.
common
.api.Point;
27
import com.android.ide.
common
.api.Rect;
/external/chromium/chrome/common/extensions/
PRESUBMIT.py
10
os.path.normpath("chrome/
common
/extensions/api"),
11
os.path.normpath("chrome/
common
/extensions/docs")
16
os.path.normpath("chrome/
common
/extensions/docs/server")
23
Build by running the build.py script in chrome/
common
/extensions/docs/build/.
26
(/
common
/extension/docs/*.html) in your final changelist.
/external/chromium_org/chrome/common/
DEPS
5
"+components/autofill/core/
common
",
6
"+components/nacl/
common
",
10
"+extensions/
common
",
19
"+webkit/
common
/user_agent",
35
# can't be moved to chrome/
common
/ because it has so many dependencies in
/external/chromium_org/chrome/common/extensions/
manifest_handler_helpers.cc
5
#include "chrome/
common
/extensions/manifest_handler_helpers.h"
11
#include "chrome/
common
/extensions/extension.h"
12
#include "chrome/
common
/extensions/extension_icon_set.h"
13
#include "chrome/
common
/extensions/extension_manifest_constants.h"
14
#include "extensions/
common
/error_utils.h"
/external/chromium_org/chrome/common/extensions/manifest_handlers/
minimum_chrome_version_checker.cc
5
#include "chrome/
common
/extensions/manifest_handlers/minimum_chrome_version_checker.h"
9
#include "chrome/
common
/chrome_version_info.h"
10
#include "chrome/
common
/extensions/extension.h"
11
#include "chrome/
common
/extensions/extension_manifest_constants.h"
12
#include "extensions/
common
/error_utils.h"
/external/chromium_org/components/
visitedlink.gypi
17
'visitedlink/
common
/visitedlink_common.cc',
18
'visitedlink/
common
/visitedlink_common.h',
19
'visitedlink/
common
/visitedlink_message_generator.cc',
20
'visitedlink/
common
/visitedlink_message_generator.h',
21
'visitedlink/
common
/visitedlink_messages.h',
/external/chromium_org/native_client_sdk/src/examples/api/file_io/
example.js
6
common
.hideModule();
9
// Called by the
common
.js module.
13
common
.updateStatus(
15
common
.createNaClModule(name, tc, config, width, height);
16
common
.attachDefaultListeners();
21
// Called by the
common
.js module.
68
if (
common
.naclModule) {
71
common
.naclModule.postMessage(makeMessage('sv', fileName, fileText));
78
if (
common
.naclModule) {
83
common
.naclModule.postMessage(makeMessage('ld', fileName))
[
all
...]
/external/chromium_org/native_client_sdk/src/examples/api/url_loader/
example.js
5
// Called by the
common
.js module.
9
common
.hideModule();
12
// Called by the
common
.js module.
18
common
.naclModule.postMessage('getUrl:url_loader_success.html');
21
// Called by the
common
.js module.
/external/chromium_org/net/quic/crypto/
common_cert_set.h
16
// CommonCertSets is an interface to an object that contains a number of
common
22
// GetInstanceQUIC returns the standard QUIC
common
certificate sets.
25
// GetCommonHashes returns a StringPiece containing the hashes of
common
sets
30
// GetCert returns a specific certificate (at index |index|) in the
common
35
// MatchCert tries to find |cert| in one of the
common
certificate sets
/external/chromium_org/third_party/mesa/src/src/gallium/targets/
SConscript.dri
12
'#src/mesa/drivers/dri/
common
',
36
source = '#src/mesa/drivers/dri/
common
/utils.c'
41
source = '#src/mesa/drivers/dri/
common
/xmlconfig.c'
46
source = '#src/mesa/drivers/dri/
common
/dri_util.c'
51
source = '#src/mesa/drivers/dri/
common
/drisw_util.c'
/external/clang/test/CodeGen/
tentative-decls.c
3
// RUN: grep '@r =
common
global \[1 x .*\] zeroinitializer' %t
10
// RUN: grep '@x =
common
global .struct.s0 zeroinitializer' %t
13
// RUN: grep '@y =
common
global .struct.s0 zeroinitializer' %t
22
// RUN: grep '@b =
common
global \[1 x .*\] zeroinitializer' %t
29
// RUN: grep '@c =
common
global \[4 x .*\] zeroinitializer' %t
/external/guava/guava/src/com/google/common/cache/
package-info.java
20
* <p>The core interface used to represent caches is {@link com.google.
common
.cache.Cache}.
22
* {@link com.google.
common
.cache.CacheBuilder}, with cache entries being loaded by
23
* {@link com.google.
common
.cache.CacheLoader}. Statistics about cache performance are exposed using
24
* {@link com.google.
common
.cache.CacheStats}.
32
package com.google.
common
.cache;
Completed in 466 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>