/external/clang/unittests/Tooling/ |
CommentHandlerTest.cpp | 91 CommentList::const_iterator Current; 97 : Current(Comments.begin()), End(Comments.end()), PP(PP) 101 if (Current != End) { 102 EXPECT_TRUE(Current == End) << "Unexpected comment \"" 103 << Current->Message << "\" at line " << Current->Line << ", column " 104 << Current->Col; 109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found"; 110 if (Current == End) return; 112 const Comment &C = *Current; [all...] |
/external/llvm/include/llvm/ADT/ |
edit_distance.h | 66 unsigned *Current = Previous + (n + 1); 72 Current[0] = y; 73 unsigned BestThisRow = Current[0]; 77 Current[x] = std::min( 79 std::min(Current[x-1], Previous[x])+1); 82 if (FromArray[y-1] == ToArray[x-1]) Current[x] = Previous[x-1]; 83 else Current[x] = std::min(Current[x-1], Previous[x]) + 1; 85 BestThisRow = std::min(BestThisRow, Current[x]); 91 unsigned *tmp = Current; [all...] |
/external/llvm/include/llvm/CodeGen/ |
DFAPacketizer.h | 22 // indicate that the instruction cannot be added to the current packet. 61 // Reset the current state to make all resources available. 67 // are available in the current state. 71 // change the current state to reflect that change. 75 // instruction are available in the current state. 79 // instruction and change the current state to reflect that change. 89 // the current packet. If no dependency is found, I is added to current packet 101 // Vector of instructions assigned to the current packet. 124 // addToPacket - Add MI to the current packet [all...] |
/external/llvm/include/llvm/MC/MCParser/ |
MCAsmLexer.h | 80 /// getIdentifier - Get the identifier string for the current token, which 90 /// getString - Get the string for the current token, this includes all 109 /// The current token, stored in the base class for faster access. 112 /// The location and description of the current error 144 /// getLoc - Get the current source location. 147 /// getTok - Get the current (last) lexed token. 152 /// getErrLoc - Get the current error location 157 /// getErr - Get the current error string 162 /// getKind - Get the kind of current token. 165 /// is - Check if the current token has kind \p K [all...] |
/external/qemu/android/ |
snaphost-android.c | 29 * current - Ini file containing the current configuration. 36 _cmp_hw_config(IniFile* current, IniFile* saved) 39 const int num_pairs = iniFile_getPairCount(current); 43 D("Different numbers of entries in the HW config files. Current contans %d, while saved contains %d entries.", 48 /* Iterate through the entries in the current file, comparing them to entries 53 if (iniFile_getEntry(current, n, &key, &value1)) { 54 D("Unable to obtain entry %d from the current HW config file", n); 60 D("Saved HW config file is missing entry ('%s', '%s') found in the current HW config.", 69 D("HW config value mismatch for a key '%s': current is '%s' while saved was '%s'" [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/extensions/ |
ObjectFactory.java | 84 // (cl == null) iff current ClassLoader == null 86 // Thus Class.forName(String) will use the current 94 // Fall back to current classloader 95 ClassLoader current = ObjectFactory.class.getClassLoader(); local 96 if (current == null) { 98 } else if (cl != current) { 99 cl = current;
|
/external/chromium/base/test/ |
test_file_util_posix.cc | 59 FilePath current = source_dir; local 66 while (success && !current.empty()) { 67 // |current| is the source path, including source_dir, so paste 69 std::string suffix(¤t.value().c_str()[source_dir.value().size()]); 85 if (CopyFile(current, target_path)) { 95 current.value(); 98 current = traversal.Next();
|
/external/chromium/base/threading/ |
thread_restrictions.h | 27 // current thread is allowed: 41 // Constructing a ScopedAllowIO temporarily allows IO for the current 55 // current thread. Doing this is almost always incorrect. 69 // Set whether the current thread to make IO calls. 74 // Check whether the current thread is allowed to make IO calls, 79 // Set whether the current thread can use singletons. Returns the previous 83 // Check whether the current thread is allowed to use singletons (Singleton /
|
/external/chromium/chrome/common/extensions/docs/static/ |
windows.html | 32 <h2 id="current-window">The current window</h2> 36 which defaults to the current window. 39 <p>The <em>current window</em> is the window that 50 The current window is the window that contains the page that made 55 the value of the current window falls back to the last active window. Under some 56 circumstances, there may be no current window for background pages.
|
/external/chromium_org/chrome/common/extensions/docs/templates/intros/ |
windows.html | 24 <h2 id="current-window">The current window</h2> 28 which defaults to the current window. 31 <p>The <em>current window</em> is the window that 42 The current window is the window that contains the page that made 47 the value of the current window falls back to the last active window. Under some 48 circumstances, there may be no current window for background pages.
|
/external/chromium_org/media/mp4/ |
track_run_iterator.h | 36 // Sets up the iterator to handle all the runs from the current fragment. 39 // Returns true if the properties of the current run or sample are valid. 44 // the current sample be valid. 58 // will be required in order to read the current or any subsequent sample. You 59 // may clear all data up to this offset before reading the current sample 64 // Property of the current run. Only valid if IsRunValid(). 74 // Properties of the current sample. Only valid if IsSampleValid().
|
/external/chromium_org/net/base/ |
priority_queue_unittest.cc | 93 PriorityQueue<int>::Pointer current = queue_.FirstMax(); local 95 EXPECT_FALSE(current.is_null()); 96 EXPECT_EQ(kFirstMaxOrder[i], current.value()); 97 PriorityQueue<int>::Pointer next = queue_.GetNextTowardsLastMin(current); 98 queue_.Erase(current); 99 current = next; 101 EXPECT_TRUE(current.is_null());
|
/external/chromium_org/sandbox/linux/services/ |
credentials.h | 21 // This class should be used to manipulate the current process' credentials. 29 // Checks whether the current process has any directory file descriptor open. 44 // the current process. 47 // of the current process. 49 // Returns the capabilities of the current process in textual form, as 54 // Move the current process to a new "user namespace" as supported by Linux 58 // If this call succeeds, the current process will be granted a full set of
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8RecursionScope.h | 56 // http://www.whatwg.org/specs/web-apps/current-work/#perform-a-microtask-checkpoint 63 V8PerIsolateData::current()->incrementRecursionLevel(); 68 if (!V8PerIsolateData::current()->decrementRecursionLevel()) 74 return V8PerIsolateData::current()->recursionLevel(); 80 return recursionLevel() > 0 || V8PerIsolateData::current()->internalScriptRecursionLevel() > 0; 89 V8PerIsolateData::current()->incrementInternalScriptRecursionLevel(); 96 V8PerIsolateData::current()->decrementInternalScriptRecursionLevel();
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLLIElement.cpp | 90 Element* current = this; local 92 current = current->parentElement(); 93 if (!current) 95 if (current->hasTagName(ulTag) || current->hasTagName(olTag)) 96 listNode = current;
|
/external/chromium_org/ui/app_list/ |
pagination_model.h | 46 // A [0, 1] progress indicates how much of the current page is being 74 // Finishes the current scroll transition if |cancel| is false. Otherwise, 78 // Returns true if current transition is being reverted. 105 // Calculates a target page number by combining current page and |delta|. 106 // When there is no transition, current page is the currently selected page. 107 // If there is a transition, current page is the transition target page or the 108 // pending transition target page. When current page + |delta| goes beyond
|
/external/chromium_org/v8/src/ |
hydrogen-mark-deoptimize.cc | 71 for (HInstruction* current = block->first(); current != NULL; ) { 72 HInstruction* next = current->next(); 73 if (current->IsChange()) { 74 if (HChange::cast(current)->can_convert_undefined_to_nan()) { 75 current->SetFlag(HValue::kAllowUndefinedAsNaN); 78 current = next;
|
/external/guava/guava/src/com/google/common/collect/ |
BstInOrderPath.java | 77 BstInOrderPath<N> current = this; 78 while (current.sideExtension == side) { 79 current = current.getPrefix(); 81 current = current.prefixOrNull(); 82 return Optional.fromNullable(current);
|
/frameworks/base/core/java/android/os/ |
BatteryManager.java | 26 * integer containing the current status constant. 32 * integer containing the current health constant. 44 * integer field containing the current battery level, from 0 to 58 * indicating the current battery state. 72 * integer containing the current battery voltage level. 78 * integer containing the current battery temperature. 84 * String describing the technology of the current battery.
|
/frameworks/base/libs/hwui/ |
Extensions.cpp | 114 const char* current = extensions; local 115 const char* head = current; 118 head = strchr(current, ' '); 119 String8 s(current, head ? head - current : strlen(current)); 124 current = head + 1;
|
/libcore/crypto/src/main/java/org/conscrypt/ |
ProtocolVersion.java | 96 ProtocolVersion current; local 98 current = getByName(protocols[i]); 99 if (current == null) { 103 || (latest.version[0] < current.version[0]) 104 || (latest.version[0] == current.version[0] && latest.version[1] < current.version[1])) { 105 latest = current;
|
/packages/apps/Camera/jni/feature_stab/src/dbreg/ |
dbstabsmooth.h | 59 * Smooth-motion is to do a weight-average between the current affine and 101 * Returns the current smoothing factor. 105 * Returns the current zoom factor. 109 * Returns the current minimum damping factor. 113 * Returns the current state of the smoothing reset flag. 117 * Returns the current low frequency motion parameters. 121 * Returns the inverse of the current low frequency motion parameters.
|
/packages/apps/Camera2/jni/feature_stab/src/dbreg/ |
dbstabsmooth.h | 59 * Smooth-motion is to do a weight-average between the current affine and 101 * Returns the current smoothing factor. 105 * Returns the current zoom factor. 109 * Returns the current minimum damping factor. 113 * Returns the current state of the smoothing reset flag. 117 * Returns the current low frequency motion parameters. 121 * Returns the inverse of the current low frequency motion parameters.
|
/packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/ |
dbstabsmooth.h | 59 * Smooth-motion is to do a weight-average between the current affine and 101 * Returns the current smoothing factor. 105 * Returns the current zoom factor. 109 * Returns the current minimum damping factor. 113 * Returns the current state of the smoothing reset flag. 117 * Returns the current low frequency motion parameters. 121 * Returns the inverse of the current low frequency motion parameters.
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
AccountController.java | 35 * Registers to receive changes to the current account, and obtain the current account. 40 * Removes a listener from receiving current account changes. 45 * Returns the current account in use by the controller. Instead of calling this method, 47 * {@link AccountObserver#initialize(AccountController)}, which not only provides the current 54 * Registers to receive changes to the list of accounts, and obtain the current list. 91 * Removes a listener from receiving current account changes.
|