HomeSort by relevance Sort by last modified time
    Searched refs:base (Results 1451 - 1475 of 5191) sorted by null

<<51525354555657585960>>

  /external/guava/guava/src/com/google/common/cache/
RemovalNotification.java 19 import static com.google.common.base.Preconditions.checkNotNull;
22 import com.google.common.base.Objects;
  /external/guava/guava/src/com/google/common/net/
InternetDomainName.java 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;
25 import com.google.common.base.Ascii;
26 import com.google.common.base.CharMatcher;
27 import com.google.common.base.Joiner;
28 import com.google.common.base.Objects;
29 import com.google.common.base.Splitter;
  /external/guava/guava/src/com/google/common/primitives/
AndroidInteger.java 20 import static com.google.common.base.Preconditions.checkArgument;
21 import static com.google.common.base.Preconditions.checkNotNull;
  /external/harfbuzz/src/
harfbuzz-stream.c 56 free(stream->base);
99 stream->cursor = stream->base + stream->pos;
  /external/icu4c/i18n/unicode/
basictz.h 12 * \brief C++ API: ICU TimeZone base class
43 * Gets the first time zone transition after the base time.
44 * @param base The base time.
45 * @param inclusive Whether the base time is inclusive or not.
46 * @param result Receives the first transition after the base time.
50 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) /*const*/ = 0;
53 * Gets the most recent time zone transition before the base time.
54 * @param base The base time
    [all...]
tzrule.h 127 * @param base The first start time after this base time will be returned.
132 * @param inclusive Whether the base time is inclusive or not.
134 * the specified base time.
139 virtual UBool getNextStart(UDate base, int32_t prevRawOffset, int32_t prevDSTSavings,
144 * @param base The most recent time before this base time will be returned.
149 * @param inclusive Whether the base time is inclusive or not.
151 * the specified base time.
156 virtual UBool getPreviousStart(UDate base, int32_t prevRawOffset, int32_t prevDSTSavings
    [all...]
  /external/icu4c/layout/
ValueRecords.h 31 void adjustPosition(ValueFormat valueFormat, const char *base, GlyphIterator &glyphIterator,
33 void adjustPosition(le_int16 index, ValueFormat valueFormat, const char *base, GlyphIterator &glyphIterator,
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/basis/
Noise.java 41 * Utility base class for Noise implementations
58 public FloatBuffer getBuffer(float sx, float sy, float base, int size) {
62 retval.put(this.modulate((sx + x) / size, (sy + y) / size, base));
  /external/kernel-headers/original/linux/
timer.h 17 struct tvec_t_base_s *base; member in struct:timer_list
26 .base = &boot_tvec_bases, \
  /external/libxml2/include/libxml/
uri.h 56 const xmlChar *base);
59 const xmlChar *base);
  /external/openssh/
groupaccess.c 45 * Initialize group access list for user with primary (base) and
49 ga_init(const char *user, gid_t base)
69 if (getgrouplist(user, base, groups_bygid, &ngroups) == -1)
  /external/skia/emoji/
GmojiMaker.cpp 97 const int base = unichars[0]; local
108 printf("0x%03X", unichars[i] - base);
  /external/srec/portable/include/
LCHAR.h 71 * @param base Number base to use
74 PORTABLE_API ESR_ReturnCode lstrtoi(const LCHAR* text, int* result, int base);
81 * @param base Number base to use
84 PORTABLE_API ESR_ReturnCode lstrtoui(const LCHAR* text, unsigned int* result, int base);
150 * @param radix Base of value; must be in the range 2 - 36
161 * @param radix Base of value; must be in the range 2 - 36
  /external/srec/srec/Semproc/include/
SR_SemanticGraphImpl.h 116 arc_token* arc_tokens_find_ilabel(arc_token* base, arc_token* arc_token_list, wordID wdid);
117 arc_token* arc_tokens_get_free(arc_token* base, arc_token** arc_token_freelist);
  /external/webkit/LayoutTests/fast/url/resources/
utilities.js 18 // Remove any existing base elements.
19 var existingBase = document.getElementsByTagName('base');
25 // Add a new base element.
26 document.write('<base href="' + url + '">');
  /external/webkit/Source/JavaScriptCore/dfg/
DFGAliasTracker.h 51 NodeIndex lookupGetByVal(NodeIndex base, NodeIndex property)
63 if (possibleAlias.child1 == base && equalIgnoringLaterNumericConversion(possibleAlias.child2, property))
  /external/webkit/Source/JavaScriptCore/parser/
NodeConstructors.h 184 inline BracketAccessorNode::BracketAccessorNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, bool subscriptHasAssignments)
186 , m_base(base)
192 inline DotAccessorNode::DotAccessorNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident)
194 , m_base(base)
261 inline FunctionCallBracketNode::FunctionCallBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
264 , m_base(base)
270 inline FunctionCallDotNode::FunctionCallDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
273 , m_base(base)
279 inline CallFunctionCallDotNode::CallFunctionCallDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
280 : FunctionCallDotNode(globalData, base, ident, args, divot, startOffset, endOffset
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.cpp 463 int String::toIntStrict(bool* ok, int base) const
470 return m_impl->toIntStrict(ok, base);
473 unsigned String::toUIntStrict(bool* ok, int base) const
480 return m_impl->toUIntStrict(ok, base);
483 int64_t String::toInt64Strict(bool* ok, int base) const
490 return m_impl->toInt64Strict(ok, base);
493 uint64_t String::toUInt64Strict(bool* ok, int base) const
500 return m_impl->toUInt64Strict(ok, base);
503 intptr_t String::toIntPtrStrict(bool* ok, int base) const
510 return m_impl->toIntPtrStrict(ok, base);
    [all...]
  /external/zlib/contrib/iostream/
zfstream.cpp 142 if ( !base() ) {
178 if ( !base() ) {
193 setp( base(), base() + bl);
240 p = base();
248 setg( base(), base(), base()+t);
  /frameworks/av/libvideoeditor/osal/inc/
M4OSA_CharStar.h 63 M4OSA_chrNumBase base);
67 M4OSA_chrNumBase base);
  /frameworks/base/core/java/android/app/backup/
FileBackupHelper.java 77 File base = mContext.getFilesDir(); local
81 fullPaths[i] = (new File(base, files[i])).getAbsolutePath();
  /hardware/ti/omap4xxx/camera/
Android.mk 64 frameworks/base/include/media/stagefright \
115 frameworks/base/include/ui \
116 frameworks/base/include/utils \
117 frameworks/base/include/media/stagefright/openmax
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
omp_loop.h 40 #include <parallel/base.h>
55 * @param base Base value for reduction.
69 Op o, Fu& f, Red r, Result base,
  /sdk/emulator/qtools/
q2dm.cpp 27 void push(int stackLevel, uint64_t time, CallStackBase *base);
28 void pop(int stackLevel, uint64_t time, CallStackBase *base);
71 void MyFrame::push(int stackLevel, uint64_t time, CallStackBase *base)
73 int pid = base->getId();
74 CallStackType *stack = (CallStackType *) base;
93 void MyFrame::pop(int stackLevel, uint64_t time, CallStackBase *base)
95 int pid = base->getId();
96 CallStackType *stack = (CallStackType *) base;
  /external/chromium/chrome/browser/
browsing_data_remover.cc 10 #include "base/callback.h"
33 #include "net/base/cookie_monster.h"
34 #include "net/base/net_errors.h"
35 #include "net/base/transport_security_state.h"
50 base::Time delete_begin,
51 base::Time delete_end)
79 base::Time delete_end)
261 base::WaitableEvent* event =
282 base::Time BrowsingDataRemover::CalculateBeginDeleteTime(
284 base::TimeDelta diff
    [all...]

Completed in 2044 milliseconds

<<51525354555657585960>>