HomeSort by relevance Sort by last modified time
    Searched refs:common (Results 2601 - 2625 of 5211) sorted by null

<<101102103104105106107108109110>>

  /external/chromium_org/webkit/common/gpu/
webkit_gpu.target.linux-arm.mk 29 webkit/common/gpu/context_provider_in_process.cc \
30 webkit/common/gpu/grcontext_for_webgraphicscontext3d.cc \
31 webkit/common/gpu/test_context_provider_factory.cc \
32 webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc \
33 webkit/common/gpu/webgraphicscontext3d_provider_impl.cc
121 $(PWD)/external/icu4c/common \
226 $(PWD)/external/icu4c/common \
webkit_gpu.target.linux-mips.mk 29 webkit/common/gpu/context_provider_in_process.cc \
30 webkit/common/gpu/grcontext_for_webgraphicscontext3d.cc \
31 webkit/common/gpu/test_context_provider_factory.cc \
32 webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc \
33 webkit/common/gpu/webgraphicscontext3d_provider_impl.cc
121 $(PWD)/external/icu4c/common \
226 $(PWD)/external/icu4c/common \
webkit_gpu.target.linux-x86.mk 29 webkit/common/gpu/context_provider_in_process.cc \
30 webkit/common/gpu/grcontext_for_webgraphicscontext3d.cc \
31 webkit/common/gpu/test_context_provider_factory.cc \
32 webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc \
33 webkit/common/gpu/webgraphicscontext3d_provider_impl.cc
123 $(PWD)/external/icu4c/common \
231 $(PWD)/external/icu4c/common \
  /external/guava/guava/src/com/google/common/util/concurrent/
Futures.java 17 package com.google.common.util.concurrent;
19 import static com.google.common.base.Preconditions.checkArgument;
20 import static com.google.common.base.Preconditions.checkNotNull;
21 import static com.google.common.base.Preconditions.checkState;
22 import static com.google.common.util.concurrent.MoreExecutors.sameThreadExecutor;
23 import static com.google.common.util.concurrent.Uninterruptibles.getUninterruptibly;
24 import static com.google.common.util.concurrent.Uninterruptibles.putUninterruptibly;
25 import static com.google.common.util.concurrent.Uninterruptibles.takeUninterruptibly;
30 import com.google.common.annotations.Beta;
31 import com.google.common.base.Function
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
threading.c 19 #include "vp8/common/threading.h"
21 #include "vp8/common/loopfilter.h"
22 #include "vp8/common/extend.h"
25 #include "vp8/common/reconintra4x4.h"
26 #include "vp8/common/reconinter.h"
27 #include "vp8/common/setupintrarecon.h"
43 VP8_COMMON *const pc = & pbi->common;
196 if (i < 4 && pbi->common.filter_level)
201 if (i%4==0 && pbi->common.filter_level)
212 if ((i==4 || i==8 || i==12) && pbi->common.filter_level
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyFactory.java 23 import com.android.ide.common.api.IAttributeInfo;
24 import com.android.ide.common.api.IAttributeInfo.Format;
35 import com.google.common.collect.ArrayListMultimap;
36 import com.google.common.collect.Lists;
37 import com.google.common.collect.Maps;
38 import com.google.common.collect.Multimap;
325 // view type it's a common attribute and replicated up at the top.
554 int common = firstNameIndex; local
557 common = k;
561 if (common > firstNameIndex)
    [all...]
  /device/generic/goldfish/sensors/
sensors_qemu.c 604 dev->device.common.tag = HARDWARE_DEVICE_TAG;
605 dev->device.common.version = 0;
606 dev->device.common.module = (struct hw_module_t*) module;
607 dev->device.common.close = poll__close;
614 *device = &dev->device.common;
626 .common = {
  /device/lge/hammerhead/libsensors/
sensors.cpp 93 common: {
448 dev->device.common.tag = HARDWARE_DEVICE_TAG;
449 dev->device.common.version = SENSORS_DEVICE_API_VERSION_1_0;
450 dev->device.common.module = const_cast<hw_module_t*>(module);
451 dev->device.common.close = poll__close;
460 *device = &dev->device.common;
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
_stream_hybi.py 45 from mod_pywebsocket import common namespace
150 message, opcode=common.OPCODE_BINARY, fin=1, mask=False, frame_filters=[]):
158 message, opcode=common.OPCODE_TEXT, fin=1, mask=False, frame_filters=[]):
167 ws_version=common.VERSION_HYBI_LATEST,
190 logger.log(common.LOGLEVEL_FINE, 'Receive the first 2 octets of a frame')
205 logger.log(common.LOGLEVEL_FINE,
221 logger.log(common.LOGLEVEL_FINE,
234 logger.log(common.LOGLEVEL_FINE,
237 logger.log(common.LOGLEVEL_FINE,
247 logger.log(common.LOGLEVEL_FINE
    [all...]
  /external/chromium_org/chrome/browser/ui/android/autofill/
autofill_dialog_controller_android.cc 24 #include "chrome/common/pref_names.h"
25 #include "chrome/common/url_constants.h"
32 #include "components/autofill/core/common/form_data.h"
95 common::BuildInputsForSection(section, &inputs);
99 base::Bind(common::DetailInputMatchesField, section),
119 if (field && common::DetailInputMatchesField(section, input, *field))
260 common::BuildInputsForSection(SECTION_SHIPPING, &inputs);
264 base::Bind(common::DetailInputMatchesField, SECTION_SHIPPING),
421 if (common::IsCreditCardType(type.GetStorableType()))
  /external/guava/guava/src/com/google/common/collect/
AbstractBiMap.java 17 package com.google.common.collect;
19 import static com.google.common.base.Preconditions.checkArgument;
20 import static com.google.common.base.Preconditions.checkState;
22 import com.google.common.annotations.GwtCompatible;
23 import com.google.common.annotations.GwtIncompatible;
24 import com.google.common.base.Objects;
  /external/guava/guava/src/com/google/common/io/
Files.java 17 package com.google.common.io;
19 import static com.google.common.base.Preconditions.checkNotNull;
21 import com.google.common.annotations.Beta;
22 import com.google.common.base.Joiner;
23 import com.google.common.base.Preconditions;
24 import com.google.common.base.Splitter;
405 * when you wish to create a directory, not a regular file. A common pitfall
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 17 package com.google.common.base;
19 import static com.google.common.testing.SerializableTester.reserialize;
21 import com.google.common.annotations.GwtCompatible;
22 import com.google.common.annotations.GwtIncompatible;
23 import com.google.common.collect.Lists;
24 import com.google.common.testing.NullPointerTester;
37 * Tests com.google.common.base.Suppliers.
  /external/guava/guava-tests/test/com/google/common/collect/
ArrayTableTest.java 17 package com.google.common.collect;
22 import com.google.common.base.Objects;
23 import com.google.common.collect.Table.Cell;
24 import com.google.common.testing.EqualsTester;
25 import com.google.common.testing.NullPointerTester;
26 import com.google.common.testing.SerializableTester;
  /external/guava/guava-tests/test/com/google/common/primitives/
CharsTest.java 17 package com.google.common.primitives;
19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.GwtIncompatible;
21 import com.google.common.collect.testing.Helpers;
22 import com.google.common.testing.NullPointerTester;
23 import com.google.common.testing.SerializableTester;
DoublesTest.java 17 package com.google.common.primitives;
22 import com.google.common.annotations.GwtCompatible;
23 import com.google.common.annotations.GwtIncompatible;
24 import com.google.common.collect.testing.Helpers;
25 import com.google.common.testing.NullPointerTester;
26 import com.google.common.testing.SerializableTester;
FloatsTest.java 17 package com.google.common.primitives;
22 import com.google.common.annotations.GwtCompatible;
23 import com.google.common.annotations.GwtIncompatible;
24 import com.google.common.collect.testing.Helpers;
25 import com.google.common.testing.NullPointerTester;
26 import com.google.common.testing.SerializableTester;
IntsTest.java 17 package com.google.common.primitives;
19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.GwtIncompatible;
21 import com.google.common.collect.testing.Helpers;
22 import com.google.common.testing.NullPointerTester;
23 import com.google.common.testing.SerializableTester;
LongsTest.java 17 package com.google.common.primitives;
19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.GwtIncompatible;
21 import com.google.common.collect.testing.Helpers;
22 import com.google.common.testing.NullPointerTester;
23 import com.google.common.testing.SerializableTester;
ShortsTest.java 17 package com.google.common.primitives;
19 import com.google.common.annotations.GwtCompatible;
20 import com.google.common.annotations.GwtIncompatible;
21 import com.google.common.collect.testing.Helpers;
22 import com.google.common.testing.NullPointerTester;
23 import com.google.common.testing.SerializableTester;
  /external/icu4c/extra/uconv/
Makefile.in 10 ## Set the following to dll or static or common..
45 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil
52 ## generic settings for data - common.
53 PKGMODE=common
117 ifneq (,$(filter $(PKGDATA_MODE),files common))
  /external/libsepol/tests/policies/test-expander/
alias-base.conf 55 # Define common prefixes for access vectors
57 # common common_name { permission_name ... }
61 # Define a common prefix for file access vectors.
64 common file
87 # Define a common prefix for socket access vectors.
90 common socket
119 # Define a common prefix for ipc access vectors.
122 common ipc
role-base.conf 55 # Define common prefixes for access vectors
57 # common common_name { permission_name ... }
61 # Define a common prefix for file access vectors.
64 common file
87 # Define a common prefix for socket access vectors.
90 common socket
119 # Define a common prefix for ipc access vectors.
122 common ipc
user-base.conf 55 # Define common prefixes for access vectors
57 # common common_name { permission_name ... }
61 # Define a common prefix for file access vectors.
64 common file
87 # Define a common prefix for socket access vectors.
90 common socket
119 # Define a common prefix for ipc access vectors.
122 common ipc
  /external/libsepol/tests/policies/test-hooks/
cmp_policy.conf 55 # Define common prefixes for access vectors
57 # common common_name { permission_name ... }
61 # Define a common prefix for file access vectors.
64 common file
87 # Define a common prefix for socket access vectors.
90 common socket
119 # Define a common prefix for ipc access vectors.
122 common ipc

Completed in 1240 milliseconds

<<101102103104105106107108109110>>