HomeSort by relevance Sort by last modified time
    Searched full:known (Results 176 - 200 of 6634) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/icu/source/test/cintltst/
cg7coll.h 22 * known as contraction), you can also add characters that act like a sequence of
23 * characters (this is known as expansion).
  /external/chromium_org/third_party/leveldatabase/src/util/
arena_test.cc 44 // Fill the "i"th allocation with a known bit pattern
58 // Check the "i"th allocation for the known bit pattern
  /external/chromium_org/tools/grit/grit/extern/
FP.py 54 Returns the function object previously known as
65 Returns the function object previously known as
  /external/chromium_org/v8/test/mjsunit/
short-circuit-boolean.js 33 // Left subexpression is known false at compile time.
42 // Left subexpression is known true at compile time.
  /external/clang/include/clang/Analysis/DomainSpecific/
ObjCNoReturn.h 1 //= ObjCNoReturn.h - Handling of Cocoa APIs known not to return --*- C++ -*---//
40 /// Return true if the given message expression is known to never
  /external/clang/utils/
CaptureCmd 8 1. Move the original tool to a safe known location.
12 3. Define CAPTURE_CMD_PROGRAM to the known location of the original
  /external/icu4c/test/cintltst/
cg7coll.h 22 * known as contraction), you can also add characters that act like a sequence of
23 * characters (this is known as expansion).
  /external/v8/test/mjsunit/
short-circuit-boolean.js 33 // Left subexpression is known false at compile time.
42 // Left subexpression is known true at compile time.
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
psy_configuration.h 53 Word16 sfbMinSnr[MAX_SFB_LONG]; /* minimum snr (formerly known as bmax) */
83 Word16 sfbMinSnr[MAX_SFB_SHORT]; /* minimum snr (formerly known as bmax) */
  /external/chromium_org/chrome/browser/extensions/api/web_navigation/
frame_navigation_state.h 20 // Tracks the navigation state of all frames in a given tab currently known to
42 // Use these to iterate over all frame IDs known by this object.
71 // Returns true if |frame_id| is a known frame.
82 // ID is not known.
143 // Tracks the state of known frames.
146 // Set of all known frames.
  /external/elfutils/tests/
allregs.c 43 static const char *known[] = local
63 if (code < sizeof (known) / sizeof (known[0]))
64 return known[code];
194 result ? dwfl_errmsg (-1) : "no backend registers known");
222 result ? dwfl_errmsg (-1) : "no backend registers known");
  /external/skia/tests/
GpuColorFilterTest.cpp 84 // An unknown color with known alpha filtered with SrcOver produces an unknown color with known alpha.
91 // An unknown color with known alpha filtered with DstOver produces an unknown color with known alpha.
96 // An unknown color with known alpha and red component filtered with Multiply produces an unknown color with known red and alpha.
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
OffsettedItem.java 31 * {@code -1} if not yet known */
68 * in bytes, or {@code -1} if not immediately known
151 * is not yet known
186 * @throws RuntimeException thrown if the offset is not yet known
190 throw new RuntimeException("offset not yet known");
201 * @throws RuntimeException thrown if the offset is not yet known
205 throw new RuntimeException("offset not yet known");
StringIdItem.java 34 /** {@code null-ok;} associated string data object, if known */
120 * Gets the associated data object for this instance, if known.
123 * if not yet known
  /dalvik/dx/src/com/android/dx/dex/file/
OffsettedItem.java 31 * {@code -1} if not yet known */
68 * in bytes, or {@code -1} if not immediately known
151 * is not yet known
186 * @throws RuntimeException thrown if the offset is not yet known
190 throw new RuntimeException("offset not yet known");
201 * @throws RuntimeException thrown if the offset is not yet known
205 throw new RuntimeException("offset not yet known");
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 167 llvm::StringMap<Layout>::iterator Known = Layouts.find(Record->getName());
168 if (Known == Layouts.end())
176 if (NumFields >= Known->second.FieldOffsets.size())
179 FieldOffsets[*F] = Known->second.FieldOffsets[NumFields];
183 if (NumFields != Known->second.FieldOffsets.size())
186 Size = Known->second.Size;
187 Alignment = Known->second.Align;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
OffsettedItem.java 31 * {@code -1} if not yet known */
68 * in bytes, or {@code -1} if not immediately known
151 * is not yet known
186 * @throws RuntimeException thrown if the offset is not yet known
190 throw new RuntimeException("offset not yet known");
201 * @throws RuntimeException thrown if the offset is not yet known
205 throw new RuntimeException("offset not yet known");
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsort.h 34 // Properties(uint64) that specifies the known properties of the
35 // sorted FST; it takes as argument the input FST's known properties
174 // also have a member Properties(uint64) that specifies the known
176 // known properties.
223 uint64 known, test = TestProperties(*this, mask, &known); local
224 impl_->SetProperties(test, known);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test__locale.py 35 # List known locale values to test against when available.
37 # value is not known, use '' .
54 """Compare calculation against known value, if available"""
70 # Test nl_langinfo against known values
81 # Test localeconv against known values
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test__locale.py 35 # List known locale values to test against when available.
37 # value is not known, use '' .
54 """Compare calculation against known value, if available"""
70 # Test nl_langinfo against known values
81 # Test localeconv against known values
  /external/llvm/lib/Analysis/
ValueTracking.cpp 62 // If all of the MaskV bits are known to be zero, then we know the
67 // Top bits known zero.
79 // this only works if the known zeros are in the right operand.
83 "Bits known to be one AND zero?");
87 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
98 // If the known zeros are in the left operand for a subtract,
99 // fall back to the minimum known zeros in both operands.
139 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
140 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
144 // If the multiplication is known not to overflow, compute the sign bit
    [all...]
  /bionic/libc/kernel/tools/
defaults.py 25 # a special value that is used to indicate that a given macro is known to be
29 # this is the set of known macros we want to totally optimize out from the
62 # this is the set of known static inline functions that we want to keep
  /external/chromium_org/chrome/browser/chromeos/login/
supervised_user_manager.h 63 // Returns the display name for manager of user |user_id| if it is known
69 // Returns the user id for manager of user |user_id| if it is known (user is
74 // Returns the display email for manager of user |user_id| if it is known
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service_unittest.cc 45 // Adds a known URL with the associated thumbnail score.
100 // Add a known URL. This makes the top sites data full.
107 // not known.
  /external/chromium_org/components/policy/core/common/
schema.h 63 // Used to iterate over the known properties of TYPE_DICTIONARY schemas.
98 // Returns the Schema for the property named |key|. If |key| is not a known
106 // Returns the Schema for |key| if it is a known property, otherwise returns

Completed in 703 milliseconds

1 2 3 4 5 6 78 91011>>